/* =========================================================
   LA2BR Layout — base do mockup (Devil-style)
   Troque só as imagens em /images e os href="#" no HTML
   Fonte própria: salve em /fonts/custom.ttf (ou .otf / .woff / .woff2)
   ========================================================= */

@font-face {
	font-family: "LA2BR Font";
	src: url("../fonts/starcraft.ttf") format("truetype");
	font-weight: 400 700;
	font-style: normal;
	font-display: block;
}

:root {
	--bg: #0a0612;
	--bg-deep: #140a1f;
	--purple: #1a0b2e;
	--gold: #e8c36a;
	--gold-soft: #c9a24a;
	--orange: #ff8a1a;
	--orange-hot: #ffb347;
	--text: #f2efe8;
	--muted: #b7b0a4;
	--line: rgba(232, 195, 106, 0.28);
	--shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
	--wrap: 1180px;
	--radius: 2px;
	/* Títulos / menu / botões usam sua fonte; texto corrido fica Inter */
	--font-display: "LA2BR Font", "Cinzel", "Times New Roman", serif;
	--font-body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
	touch-action: manipulation;
	cursor: url("../images/cursors/cursor.png") 0 0, url("../images/cursors/cursor.cur") 0 0, auto;
}

a,
button,
.btn,
.nav-link,
.topbar-link,
.news-card,
.feature-box,
.vote-banner,
.social {
	cursor: url("../images/cursors/cursor-click.png") 2 0, url("../images/cursors/cursor-click.cur") 2 0, pointer;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 0;
}

a { color: inherit; text-decoration: none; }

.wrap {
	width: min(100% - 32px, var(--wrap));
	margin-inline: auto;
}

/* ---------- Buttons (ver css/buttons.css) ---------- */

/* ---------- Header (trilho imperial) ---------- */
.site-header {
	position: relative;
	z-index: 40;
	isolation: isolate;
	overflow: visible;
	background:
		linear-gradient(180deg, rgba(255, 220, 160, 0.1) 0%, transparent 22%),
		repeating-linear-gradient(
			-18deg,
			transparent 0 10px,
			rgba(232, 195, 106, 0.028) 10px 11px
		),
		linear-gradient(180deg, #1c122c 0%, #100818 38%, #0a0610 72%, #07040c 100%);
	box-shadow:
		0 1px 0 rgba(255, 230, 180, 0.2) inset,
		0 22px 48px rgba(0, 0, 0, 0.5);
}
.site-header::before,
.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: 5;
	pointer-events: none;
}
.site-header::before {
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 2%, #8a6220 12%, #ffe29a 50%, #8a6220 88%, transparent 98%);
	box-shadow: 0 0 16px rgba(255, 190, 80, 0.55);
}
.site-header::after {
	bottom: 0;
	height: 3px;
	background:
		linear-gradient(180deg, #ffe29a 0%, #c9a24a 45%, #7a4a12 100%);
	box-shadow:
		0 0 18px rgba(255, 150, 40, 0.5),
		0 -1px 0 rgba(255, 230, 180, 0.35);
}
.header-aura {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.header-aura::before {
	content: "";
	position: absolute;
	top: -40%;
	left: -30%;
	width: 40%;
	height: 180%;
	background: linear-gradient(
		105deg,
		transparent 30%,
		rgba(255, 220, 160, 0.05) 46%,
		rgba(255, 245, 220, 0.16) 50%,
		rgba(255, 180, 80, 0.06) 54%,
		transparent 70%
	);
	animation: header-gold-sweep 7.5s ease-in-out infinite;
}
.header-corner {
	position: absolute;
	bottom: 10px;
	z-index: 4;
	width: 18px;
	height: 18px;
	pointer-events: none;
	border: 1px solid rgba(232, 195, 106, 0.7);
	transform: rotate(45deg);
	box-shadow:
		0 0 10px rgba(255, 170, 50, 0.45),
		0 0 0 3px rgba(8, 4, 12, 0.85);
	background: linear-gradient(135deg, #ffe29a, #c9a24a 40%, #6a3c0c);
}
.header-corner--l { left: 18px; }
.header-corner--r { right: 18px; }

@keyframes header-gold-sweep {
	0% { transform: translateX(0); opacity: 0; }
	12% { opacity: 1; }
	55% { transform: translateX(280%); opacity: 0.85; }
	100% { transform: translateX(320%); opacity: 0; }
}

/* Barra superior fina */
.topbar {
	position: relative;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(18, 8, 28, 0.18));
	border-bottom: 1px solid rgba(232, 195, 106, 0.16);
	font-size: 12px;
	color: var(--muted);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 16px;
}

.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.topbar-sep { opacity: 0.35; }

.topbar-meta {
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 11px;
}

.topbar-chronicle {
	font-family: var(--font-display);
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	text-shadow: 0 0 10px rgba(255, 180, 60, 0.35);
}

.server-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 3px 10px 3px 8px;
	border: 1px solid rgba(232, 195, 106, 0.22);
	background: rgba(0, 0, 0, 0.28);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--font-display);
	font-size: 10px;
}

.server-status strong { color: #e8e0d4; font-weight: 600; }

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #666;
	box-shadow: 0 0 0 2px rgba(0,0,0,0.35);
}

.server-status.is-online .status-dot {
	background: #3dce6a;
	box-shadow: 0 0 8px rgba(61, 206, 106, 0.7);
}

.server-status.is-offline .status-dot {
	background: #e04545;
	box-shadow: 0 0 8px rgba(224, 69, 69, 0.6);
}

.topbar-link {
	color: var(--gold-soft);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color .2s ease;
}

.topbar-link:hover { color: #ffe29a; }

.topbar-panel {
	padding: 4px 12px;
	border: 1px solid rgba(201, 162, 74, 0.45);
	background: linear-gradient(180deg, rgba(255,180,60,0.12), rgba(0,0,0,0.25));
	color: #ffe29a;
}

.topbar-panel:hover {
	border-color: #ffd27a;
	color: #fff2c8;
}

.nav-bar {
	position: relative;
	z-index: 2;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.nav-bar .header-inner {
	position: relative;
	z-index: 2;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 96px;
	gap: 16px;
	padding: 10px 0 12px;
}

.nav {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	justify-content: center;
}

.nav-main {
	flex: 0 1 auto;
	min-width: 0;
	margin: 0 auto;
	padding: 4px 8px;
	gap: 4px;
	border: 1px solid rgba(232, 195, 106, 0.16);
	background: linear-gradient(180deg, rgba(255, 200, 120, 0.06), rgba(0, 0, 0, 0.22));
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.35) inset,
		0 8px 22px rgba(0, 0, 0, 0.25);
}

.nav-link {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--gold);
	position: relative;
	padding: 10px 12px;
	text-shadow: 0 0 12px rgba(232, 195, 106, 0.2);
	z-index: 1;
	transition:
		color .2s ease,
		text-shadow .2s ease,
		letter-spacing .2s ease,
		background .2s ease;
}

.nav-link:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -2px;
	width: 5px;
	height: 5px;
	transform: translateY(-50%) rotate(45deg);
	background: linear-gradient(135deg, #ffe29a, #c9a24a);
	opacity: 0.4;
	box-shadow: 0 0 8px rgba(255, 180, 60, 0.4);
	pointer-events: none;
}

.nav-link:hover,
.nav-link.is-active {
	color: #ffe29a;
	letter-spacing: 0.18em;
	transform: none;
	text-shadow:
		0 0 8px rgba(255, 180, 60, 0.55),
		0 0 18px rgba(255, 140, 30, 0.35),
		0 1px 0 rgba(0, 0, 0, 0.6);
}

/* Barrinha colada no texto da opção */
.nav-indicator {
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 0;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--orange), #ffd27a, var(--orange), transparent);
	box-shadow: 0 0 10px rgba(255, 140, 30, 0.7);
	pointer-events: none;
	opacity: 0;
	transition:
		left .28s cubic-bezier(.22, 1, .36, 1),
		top .28s cubic-bezier(.22, 1, .36, 1),
		width .28s cubic-bezier(.22, 1, .36, 1),
		opacity .2s ease;
	z-index: 0;
}

.nav-indicator.is-visible {
	opacity: 1;
}

.nav-lang {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 4px;
	isolation: isolate;
	overflow: hidden;
	border: 1px solid rgba(232, 195, 106, 0.52);
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.16) 0%, transparent 42%, rgba(255, 140, 40, 0.12) 100%),
		linear-gradient(180deg, #241038, #120a1c);
	box-shadow:
		0 0 0 1px rgba(255, 220, 150, 0.12) inset,
		0 8px 18px rgba(0, 0, 0, 0.35),
		0 0 18px rgba(255, 140, 40, 0.22);
	z-index: 3;
}
.nav-lang::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		180deg,
		transparent 15%,
		rgba(255, 220, 160, 0.08) 45%,
		rgba(255, 245, 210, 0.2) 50%,
		rgba(255, 220, 160, 0.08) 55%,
		transparent 85%
	);
	background-size: 100% 220%;
	animation: music-tab-shine 2.8s ease-in-out infinite;
}
.nav-lang-btn {
	position: relative;
	z-index: 2;
	min-width: 38px;
	padding: 8px 11px;
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-align: center;
	color: rgba(232, 195, 106, 0.55);
	text-shadow: 0 0 10px rgba(232, 195, 106, 0.12);
	transition:
		color .2s ease,
		background .2s ease,
		text-shadow .2s ease,
		box-shadow .2s ease;
}
.nav-lang-btn:hover {
	color: #ffe29a;
	text-shadow:
		0 0 8px rgba(255, 180, 60, 0.55),
		0 0 18px rgba(255, 140, 30, 0.35);
}
.nav-lang-btn.is-active {
	color: #1a0a00;
	background:
		linear-gradient(180deg, #ffe7a8 0%, #ffd27a 28%, #ff9a1f 100%);
	box-shadow:
		0 0 0 1px rgba(255, 230, 160, 0.45) inset,
		0 0 14px rgba(255, 150, 40, 0.4);
	text-shadow: 0 1px 0 rgba(255, 245, 210, 0.35);
}
.nav-lang-sep {
	position: relative;
	z-index: 2;
	width: 5px;
	height: 5px;
	margin: 0 3px;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background: linear-gradient(135deg, #ffe29a, #c9a24a);
	transform: rotate(45deg);
	opacity: 0.5;
	box-shadow: 0 0 8px rgba(255, 180, 60, 0.4);
	pointer-events: none;
	flex: 0 0 5px;
}

.nav-link--panel {
	margin-left: 8px;
	border: 1px solid rgba(232, 195, 106, 0.5);
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.18) 0%, transparent 40%, rgba(255, 140, 40, 0.12) 100%),
		linear-gradient(180deg, #241038, #120a1c);
	box-shadow:
		0 0 0 1px rgba(255, 220, 150, 0.12) inset,
		0 0 16px rgba(255, 140, 40, 0.2);
	overflow: hidden;
}
.nav-link--panel:hover,
.nav-link--panel.is-active {
	border-color: rgba(255, 210, 120, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 230, 170, 0.2) inset,
		0 0 22px rgba(255, 140, 40, 0.38);
}
.nav-link--panel::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 15%,
		rgba(255, 220, 160, 0.1) 45%,
		rgba(255, 245, 210, 0.22) 50%,
		rgba(255, 220, 160, 0.1) 55%,
		transparent 85%
	);
	background-size: 100% 220%;
	animation: music-tab-shine 2.8s ease-in-out infinite;
}

.logo {
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	z-index: 8;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.logo-img {
	/* canto esquerdo — mais larga que alta */
	display: block;
	width: auto;
	height: auto;
	max-width: min(560px, 38vw);
	max-height: 130px;
	object-fit: contain;
	filter: drop-shadow(0 10px 24px rgba(0,0,0,0.65));
}

/* Placeholder se a logo ainda não existir */
.logo-img:not([src]),
.logo-img[src=""] {
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 48vh;
	height: 480px;
	max-height: 540px;
	display: grid;
	place-items: end center;
	padding: 0 0 56px;
	background: #07040c;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* sobe os personagens — corta o céu vazio do topo */
	object-position: center 28%;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(8,4,14,0.35) 0%, rgba(8,4,14,0.05) 35%, rgba(8,4,14,0.88) 100%),
		radial-gradient(ellipse at 50% 80%, rgba(255,120,20,0.12), transparent 55%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-bottom: 10px;
	width: 100%;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

/* ---------- Hero slider ---------- */
.hero-slider {
	position: relative;
	width: min(720px, 100%);
	margin: 0 auto;
	padding: 8px 12px 0;
}

.hero-slides {
	position: relative;
	min-height: 132px;
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(0.985);
	pointer-events: none;
	transition:
		opacity .7s cubic-bezier(.22, 1, .36, 1),
		transform .7s cubic-bezier(.22, 1, .36, 1),
		visibility .7s;
}

.hero-slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.hero-kicker {
	margin: 0;
	font-family: var(--font-body, Inter, sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 210, 150, 0.72);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.hero-title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(22px, 3.2vw, 34px);
	letter-spacing: 0.12em;
	color: var(--gold);
	text-shadow:
		0 2px 0 rgba(0,0,0,0.55),
		0 0 24px rgba(232, 195, 106, 0.25),
		0 0 48px rgba(255, 140, 40, 0.18);
}

.hero-slide.is-active .hero-title {
	animation: hero-title-glow 2.8s ease-in-out infinite;
}

@keyframes hero-title-glow {
	0%, 100% {
		text-shadow:
			0 2px 0 rgba(0,0,0,0.55),
			0 0 24px rgba(232, 195, 106, 0.25),
			0 0 48px rgba(255, 140, 40, 0.18);
	}
	50% {
		text-shadow:
			0 2px 0 rgba(0,0,0,0.55),
			0 0 28px rgba(255, 210, 140, 0.45),
			0 0 60px rgba(255, 140, 40, 0.32);
	}
}

.hero-sub {
	margin: 0;
	max-width: 34em;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 240, 220, 0.78);
	letter-spacing: 0.04em;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

/* linha dourada + progresso (estilo cards / nav) */
.hero-slider-ui {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.hero-progress {
	position: relative;
	width: min(220px, 55%);
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 180, 80, 0.22), transparent);
	overflow: hidden;
}

.hero-progress-bar {
	display: block;
	height: 100%;
	width: 0%;
	border-radius: inherit;
	background: linear-gradient(90deg, transparent, var(--orange), #ffd27a, var(--orange), transparent);
	box-shadow: 0 0 10px rgba(255, 140, 30, 0.7);
	transform-origin: left center;
}

@keyframes hero-progress {
	from { width: 0%; }
	to { width: 100%; }
}

.hero-slider.is-paused .hero-progress-bar {
	animation-play-state: paused;
}

.hero-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 1px solid rgba(255, 180, 80, 0.35);
	border-radius: 50%;
	background: rgba(20, 10, 5, 0.55);
	box-shadow: 0 0 0 0 rgba(255, 140, 40, 0);
	transition:
		transform .25s ease,
		background .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.hero-dot:hover {
	border-color: rgba(255, 210, 120, 0.7);
	transform: scale(1.15);
}

.hero-dot.is-active {
	background: linear-gradient(180deg, #ffe29a, var(--orange));
	border-color: rgba(255, 220, 150, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 0 14px rgba(255, 140, 40, 0.55);
	transform: scale(1.2);
}

/* ---------- Hall of Fame ---------- */
.fame {
	position: relative;
	z-index: 2;
	padding: 8px 0 36px;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(255, 120, 30, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(8, 4, 14, 0.2) 0%, transparent 40%);
}

.fame-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

.fame-head {
	text-align: center;
	max-width: 560px;
}

.fame-kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 210, 150, 0.72);
}

.fame-title {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--gold);
	text-shadow:
		0 2px 0 rgba(0, 0, 0, 0.55),
		0 0 24px rgba(232, 195, 106, 0.28);
}

.fame-lead {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
	letter-spacing: 0.02em;
}

.fame-carousel {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	gap: 8px;
}

.fame-viewport {
	position: relative;
	overflow: hidden;
	padding: 18px 0 8px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.fame-track {
	position: relative;
	left: 0;
	display: flex;
	align-items: stretch;
	gap: 18px;
	transition: left .55s cubic-bezier(.22, 1, .36, 1);
}

.fame-card {
	position: relative;
	flex: 0 0 min(520px, 72%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	opacity: 0.48;
	/* sem scale/filter — preserva nitidez das fotos */
	transition: opacity .45s ease;
	padding-top: 12px;
	margin-top: -12px;
}

.fame-card.is-active {
	opacity: 1;
	z-index: 2;
}

.fame-card.is-side {
	opacity: 0.7;
}

.fame-card:hover {
	opacity: 1;
	z-index: 3;
}

.fame-frame {
	position: relative;
	top: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgba(255, 180, 80, 0.18);
	background: #120a1c;
	box-shadow: var(--shadow);
	transition:
		top .35s cubic-bezier(.22, 1, .36, 1),
		border-color .35s ease,
		box-shadow .35s ease;
}

.fame-card:hover .fame-frame {
	top: -10px;
}

.fame-card.is-active .fame-frame,
.fame-card:hover .fame-frame {
	border-color: rgba(255, 180, 80, 0.45);
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 14px 32px rgba(0, 0, 0, 0.55),
		0 0 28px rgba(255, 140, 40, 0.28),
		0 0 60px rgba(255, 120, 20, 0.12);
}

.fame-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.fame-card.is-active .fame-frame::after,
.fame-card:hover .fame-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 200, 120, 0.08) 48%,
		rgba(255, 220, 160, 0.14) 50%,
		rgba(255, 200, 120, 0.08) 52%,
		transparent 70%
	);
	background-size: 220% 100%;
	animation: card-shine 2.2s ease-in-out infinite;
}

.fame-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	padding: 0 8px;
	position: relative;
}

.fame-card:not(.is-active) .fame-meta {
	opacity: 0.55;
}

.fame-card:hover .fame-meta {
	opacity: 1;
}

.fame-player {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--gold);
}

.fame-caption {
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.04em;
}

.fame-arrow {
	width: 42px;
	height: 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(232, 195, 106, 0.72);
	box-shadow: none;
	transition:
		color .25s ease,
		transform .25s ease,
		filter .25s ease,
		opacity .25s ease;
	opacity: 0.85;
}

.fame-arrow-ico {
	width: 18px;
	height: 34px;
	display: block;
	overflow: visible;
	filter: drop-shadow(0 0 6px rgba(255, 140, 40, 0.15));
	transition: filter .25s ease, transform .25s ease;
}

.fame-arrow-glow {
	opacity: 0.22;
	color: var(--orange-hot);
}

.fame-arrow:hover {
	color: #ffe29a;
	opacity: 1;
	transform: translateY(-1px);
	border-color: transparent;
	box-shadow: none;
}

.fame-arrow:hover .fame-arrow-ico {
	filter:
		drop-shadow(0 0 8px rgba(255, 170, 60, 0.55))
		drop-shadow(0 0 18px rgba(255, 120, 30, 0.28));
	transform: scale(1.06);
}

.fame-arrow:active {
	transform: translateY(0) scale(0.96);
	box-shadow: none;
}

.fame-arrow:active .fame-arrow-ico {
	transform: scale(0.96);
}

.fame-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	min-height: 12px;
}

.fame-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 1px solid rgba(255, 180, 80, 0.35);
	border-radius: 50%;
	background: rgba(20, 10, 5, 0.55);
	transition:
		transform .25s ease,
		background .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.fame-dot:hover {
	border-color: rgba(255, 210, 120, 0.7);
	transform: scale(1.15);
}

.fame-dot.is-active {
	background: linear-gradient(180deg, #ffe29a, var(--orange));
	border-color: rgba(255, 220, 150, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 0 14px rgba(255, 140, 40, 0.55);
	transform: scale(1.2);
}

/* ---------- News ---------- */
.news-row {
	position: relative;
	z-index: 3;
	margin-top: 8px;
	padding-bottom: 28px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.news-card {
	position: relative;
	min-height: 250px;
}

.news-card .card-face {
	min-height: 250px;
}

.news-card-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,6,18,0.25) 0%, rgba(10,6,18,0.82) 55%, rgba(8,4,14,0.95) 100%);
}

.news-card-body {
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 22px 18px 18px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
}

.news-date {
	font-size: 11px;
	color: var(--muted);
}

.news-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--gold);
}

.news-excerpt {
	margin: 0 0 8px;
	font-size: 12px;
	color: #cfc8bc;
	max-width: 28ch;
}

.news-card .btn-more {
	appearance: none;
	font: inherit;
	cursor: pointer;
}

body.info-modal-open {
	overflow: hidden;
}

.info-modal[hidden] {
	display: none !important;
}

.info-modal {
	position: fixed;
	inset: 0;
	z-index: 12000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.info-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 2, 8, 0.82);
}

.info-modal-box {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: 86vh;
	overflow: auto;
	padding: 36px 40px 32px;
	background: linear-gradient(180deg, #1a1024 0%, #0c0712 100%);
	border: 1px solid rgba(232, 195, 106, 0.35);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 140, 40, 0.08);
}

.info-modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--gold);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.info-modal-kicker {
	margin: 0 0 6px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
}

.info-modal-title {
	margin: 0 0 18px;
	font-family: var(--font-display);
	font-size: 28px;
	letter-spacing: 0.06em;
	color: var(--gold);
}

.info-modal-body {
	font-size: 15px;
	line-height: 1.55;
	color: #e8e2d6;
}

.info-modal-body h3 {
	margin: 18px 0 8px;
	font-family: var(--font-display);
	font-size: 16px;
	color: var(--orange-hot);
}

.info-modal-body p { margin: 0 0 12px; }

.info-modal-body ul,
.info-modal-ol {
	margin: 0 0 14px;
	padding-left: 18px;
}

.info-modal-body li { margin: 0 0 8px; }

.info-event {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(232, 195, 106, 0.15);
}

.info-event:last-of-type { border-bottom: 0; }

@media (max-width: 760px) {
	.info-modal-box { padding: 28px 18px 22px; }
	.info-modal-title { font-size: 22px; }
}

/* ---------- Features ---------- */
.features {
	padding: 10px 0 48px;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(80, 30, 120, 0.18), transparent 55%),
		var(--bg);
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: stretch;
}

.features-left {
	display: grid;
	gap: 14px;
}

.feature-box {
	position: relative;
	min-height: 210px;
}

.feature-box .card-face {
	min-height: 210px;
}

.feature-box-lg { min-height: 434px; }

.feature-box-lg .card-face {
	min-height: 434px;
}

.feature-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8,4,14,0.82) 0%, rgba(8,4,14,0.45) 55%, rgba(8,4,14,0.2) 100%);
}

.feature-shade-strong {
	background: linear-gradient(90deg, rgba(8,4,14,0.88) 0%, rgba(8,4,14,0.55) 50%, rgba(8,4,14,0.25) 100%);
}

.feature-body {
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
}

.feature-body-center {
	max-width: 340px;
	padding-left: 36px;
}

.feature-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--gold);
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.feature-title-lg {
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.2;
	max-width: 12ch;
}

.feature-text {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 14px;
}

.feature-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

/* ---------- Footer ---------- */
.site-footer {
	background: #0c0814;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding: 34px 0 42px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: center;
}

.footer-copy {
	margin: 0 0 8px;
	font-size: 12px;
	color: var(--muted);
}

.footer-legal {
	margin: 0;
	font-size: 12px;
	color: var(--orange);
	display: flex;
	gap: 8px;
	align-items: center;
}

.footer-legal a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
	.topbar-inner {
		flex-direction: column;
		justify-content: center;
		padding: 8px 0;
		min-height: auto;
		gap: 8px;
	}
	.topbar-left,
	.topbar-right { justify-content: center; flex-wrap: wrap; }
	.header-corner { display: none; }
	.nav-main {
		border: 0;
		background: none;
		box-shadow: none;
		padding: 0;
		gap: 2px 6px;
	}
	.nav-link { padding: 8px 10px; font-size: 12px; }
	.nav-link:not(:last-child)::after { display: none; }
	.nav-link--panel { margin-left: 0; }
	.nav-lang {
		position: static;
		transform: none;
		margin-top: 2px;
	}
	.topbar-chronicle { display: none; }
	.header-inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 12px 0 16px;
		min-height: auto;
		gap: 12px;
	}
	.logo {
		position: static;
		transform: none;
	}
	.nav {
		justify-content: center;
		gap: 2px 6px;
	}
	.logo-img {
		max-width: min(420px, 90vw);
		max-height: 100px;
	}
	.hero {
		height: 380px;
		min-height: 380px;
		max-height: none;
		padding-bottom: 40px;
	}
	.hero-bg {
		object-position: center 24%;
	}
	.hero-slides {
		min-height: 120px;
	}
	.fame {
		padding: 4px 0 28px;
	}
	.fame-carousel {
		grid-template-columns: 36px 1fr 36px;
		gap: 4px;
	}
	.fame-card {
		flex-basis: min(420px, 86%);
	}
	.fame-arrow {
		width: 32px;
		height: 56px;
	}
	.fame-arrow-ico {
		width: 14px;
		height: 28px;
	}
	.news-row { margin-top: 4px; }
	.news-grid,
	.features-grid { grid-template-columns: 1fr; }
	.feature-box-lg { min-height: 320px; }
	.feature-box-lg .card-face { min-height: 320px; }
}

/* ---------- Vote popup (L2JBrasil) ---------- */
.vote-popup {
	position: fixed;
	top: 132px;
	right: 0;
	z-index: 9999;
	font-family: var(--font-display);
}
.vote-popup__tab {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	overflow: hidden;
	isolation: isolate;
	min-width: 38px;
	margin: 0;
	padding: 16px 8px 14px;
	border: 1px solid rgba(232, 195, 106, 0.55);
	border-right: 0;
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.16) 0%, transparent 22%, transparent 78%, rgba(255, 140, 40, 0.12) 100%),
		linear-gradient(270deg, #241038 0%, #120a1c 100%);
	color: #e8c36a;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0.06em;
	text-shadow: 0 0 12px rgba(255, 180, 60, 0.45);
	cursor: pointer;
	box-shadow:
		0 0 0 1px rgba(255, 220, 150, 0.14) inset,
		-4px 8px 22px rgba(0, 0, 0, 0.5),
		0 0 18px rgba(255, 140, 40, 0.22);
}
.vote-popup__tab span {
	display: block;
	position: relative;
	z-index: 2;
}
.vote-popup__tab::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0;
	width: 2px;
	z-index: 3;
	background: linear-gradient(180deg, transparent, #ffb347 20%, #ffe29a 50%, #ffb347 80%, transparent);
	box-shadow: 0 0 10px rgba(255, 180, 60, 0.7);
}
.vote-popup__tab::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		180deg,
		transparent 15%,
		rgba(255, 220, 160, 0.1) 45%,
		rgba(255, 245, 210, 0.22) 50%,
		rgba(255, 220, 160, 0.1) 55%,
		transparent 85%
	);
	background-size: 100% 220%;
	animation: music-tab-shine 2.4s ease-in-out infinite;
}
.vote-popup__tab:hover,
.vote-popup.is-open .vote-popup__tab {
	color: #ffe29a;
	border-color: rgba(255, 210, 120, 0.85);
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.28) 0%, transparent 24%, transparent 76%, rgba(255, 150, 40, 0.2) 100%),
		linear-gradient(270deg, #2e1648 0%, #1a0b2e 100%);
	box-shadow:
		0 0 0 1px rgba(255, 230, 170, 0.22) inset,
		-4px 10px 24px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 0 28px rgba(255, 140, 40, 0.4);
}
.vote-popup__panel {
	position: absolute;
	top: 0;
	right: 100%;
	overflow: hidden;
	width: 268px;
	padding: 12px 12px 14px;
	background: rgba(10, 6, 18, 0.96);
	border: 1px solid var(--line);
	border-right: 0;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}
.vote-popup.is-open .vote-popup__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	border-color: rgba(255, 180, 80, 0.45);
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 12px 28px rgba(0, 0, 0, 0.55),
		0 0 28px rgba(255, 140, 40, 0.28),
		0 0 60px rgba(255, 120, 20, 0.12);
}
.vote-popup.is-open .vote-popup__link {
	position: relative;
	overflow: hidden;
}
.vote-popup.is-open .vote-popup__link::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 200, 120, 0.1) 48%,
		rgba(255, 220, 160, 0.16) 50%,
		rgba(255, 200, 120, 0.1) 52%,
		transparent 70%
	);
	background-size: 220% 100%;
	animation: card-shine 1.6s ease-in-out infinite;
}
.vote-popup__title {
	margin: 0 0 8px;
	color: var(--gold);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-align: center;
}
.vote-popup__status {
	margin: 0 0 8px;
	color: #ffe29a;
	font-size: 11px;
	letter-spacing: 0.04em;
	line-height: 1.35;
	text-align: center;
}
.vote-popup.is-voted .vote-popup__status {
	color: #7dffa0;
}
.vote-popup__id {
	margin: 0 0 8px;
	color: var(--gold);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-align: center;
	word-break: break-all;
}
.vote-popup__hint {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 10px;
	line-height: 1.4;
	text-align: center;
}
.vote-popup__link {
	display: block;
	line-height: 0;
}
.vote-popup__link img {
	width: 100%;
	height: auto;
	border: 0;
	display: block;
}

/* ---------- Tips popup (espelho do VOTE, aba com imagem) ---------- */
.tips-popup {
	position: fixed;
	left: auto;
	right: 12px;
	bottom: 18px;
	z-index: 9999;
	font-family: var(--font-display);
}
.tips-popup__tab {
	position: relative;
	z-index: 2;
	display: block;
	width: 228px;
	height: 228px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	overflow: visible;
	appearance: none;
	-webkit-appearance: none;
}
.tips-popup__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: transparent;
	pointer-events: none;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.tips-popup__tab:hover .tips-popup__img,
.tips-popup.is-open .tips-popup__img {
	filter: drop-shadow(0 10px 22px rgba(255, 140, 40, 0.45));
}
.tips-popup__panel {
	position: absolute;
	left: auto;
	right: 18px;
	bottom: calc(100% + 8px);
	width: 240px;
	padding: 12px 14px;
	background: #120a1c;
	border: 1px solid rgba(255, 180, 80, 0.45);
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 12px 28px rgba(0, 0, 0, 0.55),
		0 0 28px rgba(255, 140, 40, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	overflow: hidden;
}
.tips-popup.is-open .tips-popup__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.tips-popup__kicker {
	margin: 0 0 4px;
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}
.tips-popup__hint {
	margin: 0 0 8px;
	color: #ffe29a;
	font-size: 13px;
	letter-spacing: 0.06em;
	line-height: 1.35;
}
.tips-popup__cta {
	margin: 0;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ---------- Music popup (espelho do VOTE) ---------- */
.music-popup {
	position: fixed;
	top: 132px;
	left: 0;
	z-index: 9998;
	font-family: var(--font-display);
}

.music-popup__tab {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	overflow: hidden;
	isolation: isolate;
	min-width: 38px;
	margin: 0;
	padding: 16px 8px 14px;
	border: 1px solid rgba(232, 195, 106, 0.55);
	border-left: 0;
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.16) 0%, transparent 22%, transparent 78%, rgba(255, 140, 40, 0.12) 100%),
		linear-gradient(90deg, #241038 0%, #120a1c 100%);
	color: #e8c36a;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0.06em;
	text-shadow: 0 0 12px rgba(255, 180, 60, 0.45);
	box-shadow:
		0 0 0 1px rgba(255, 220, 150, 0.14) inset,
		4px 8px 22px rgba(0, 0, 0, 0.5),
		0 0 18px rgba(255, 140, 40, 0.22);
	cursor: pointer;
}

.music-popup__icon {
	width: 14px;
	height: 14px;
	margin-bottom: 8px;
	position: relative;
	z-index: 2;
	opacity: 0.95;
	filter: drop-shadow(0 0 6px rgba(255, 180, 60, 0.55));
}

.music-popup__tab span {
	display: block;
	position: relative;
	z-index: 2;
}

.music-popup__tab::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: 0;
	width: 2px;
	z-index: 3;
	background: linear-gradient(180deg, transparent, #ffb347 20%, #ffe29a 50%, #ffb347 80%, transparent);
	box-shadow: 0 0 10px rgba(255, 180, 60, 0.7);
}

.music-popup__tab::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		180deg,
		transparent 15%,
		rgba(255, 220, 160, 0.1) 45%,
		rgba(255, 245, 210, 0.22) 50%,
		rgba(255, 220, 160, 0.1) 55%,
		transparent 85%
	);
	background-size: 100% 220%;
	animation: music-tab-shine 2.4s ease-in-out infinite;
}

.music-popup__tab:hover,
.music-popup.is-open .music-popup__tab,
.music-popup.is-on .music-popup__tab {
	color: #ffe29a;
	border-color: rgba(255, 210, 120, 0.85);
	background:
		linear-gradient(180deg, rgba(255, 210, 130, 0.28) 0%, transparent 24%, transparent 76%, rgba(255, 150, 40, 0.2) 100%),
		linear-gradient(90deg, #2e1648 0%, #1a0b2e 100%);
	box-shadow:
		0 0 0 1px rgba(255, 230, 170, 0.22) inset,
		4px 10px 24px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 0 28px rgba(255, 140, 40, 0.4);
}

.music-popup.is-on .music-popup__tab {
	animation: music-tab-glow 2.2s ease-in-out infinite;
}

@keyframes music-tab-shine {
	0% { background-position: 0 -80%; }
	50% { background-position: 0 180%; }
	100% { background-position: 0 -80%; }
}

@keyframes music-tab-glow {
	0%, 100% { box-shadow: 0 0 0 1px rgba(255, 230, 170, 0.18) inset, 4px 8px 22px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 140, 40, 0.28); }
	50% { box-shadow: 0 0 0 1px rgba(255, 240, 190, 0.28) inset, 4px 10px 24px rgba(0, 0, 0, 0.55), 0 0 32px rgba(255, 170, 60, 0.55); }
}

.music-popup__panel {
	position: absolute;
	top: 0;
	left: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow: hidden;
	width: 340px;
	max-width: calc(100vw - 48px);
	padding: 10px 12px;
	background: #120a1c;
	border: 1px solid rgba(255, 180, 80, 0.45);
	border-left: 0;
	box-shadow:
		0 0 0 1px rgba(255, 170, 60, 0.35),
		0 12px 28px rgba(0, 0, 0, 0.55),
		0 0 28px rgba(255, 140, 40, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease;
}

.music-popup__panel > * {
	position: relative;
	z-index: 2;
}

.music-popup__panel::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 200, 120, 0.1) 48%,
		rgba(255, 220, 160, 0.18) 50%,
		rgba(255, 200, 120, 0.1) 52%,
		transparent 70%
	);
	background-size: 220% 100%;
	animation: card-shine 1.6s ease-in-out infinite;
}

.music-popup.is-open .music-popup__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.music-player-play,
.music-player-skip {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 180, 80, 0.28);
	background: rgba(18, 10, 24, 0.9);
	color: var(--gold);
	line-height: 0;
}

.music-player-play {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.music-player-skip {
	width: 28px;
	height: 28px;
	opacity: 0.82;
}

.music-player-play svg,
.music-player-skip svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	display: block;
}

.music-player-play .icon-pause { display: none; }
.music-popup.is-on .icon-play { display: none; }
.music-popup.is-on .icon-pause { display: block; }

.music-player-play:hover,
.music-player-skip:hover {
	color: #ffe29a;
	border-color: rgba(255, 180, 80, 0.65);
	opacity: 1;
}

.music-player-info {
	display: grid;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
	padding: 0 4px;
}

.music-player-kicker {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.music-player-title {
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--gold);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.music-player-eq {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 14px;
	width: 16px;
	flex: 0 0 16px;
	opacity: 0.35;
}

.music-player-eq span {
	width: 2px;
	height: 4px;
	background: var(--gold);
	transform-origin: bottom;
}

.music-popup.is-on .music-player-eq { opacity: 1; }
.music-popup.is-on .music-player-eq span:nth-child(1) { animation: music-eq 0.7s ease-in-out infinite; }
.music-popup.is-on .music-player-eq span:nth-child(2) { animation: music-eq 0.55s ease-in-out infinite 0.1s; }
.music-popup.is-on .music-player-eq span:nth-child(3) { animation: music-eq 0.8s ease-in-out infinite 0.05s; }
.music-popup.is-on .music-player-eq span:nth-child(4) { animation: music-eq 0.6s ease-in-out infinite 0.18s; }

@keyframes music-eq {
	0%, 100% { height: 4px; }
	50% { height: 14px; }
}

.music-player-vol {
	width: 64px;
	height: 4px;
	margin: 0;
	accent-color: #ff8a1a;
	flex: 0 0 64px;
}

@media (max-width: 760px) {
	.tips-popup { left: auto; right: 6px; bottom: 10px; }
	.tips-popup__tab { width: 140px; height: 140px; }
}

html.site-embed #music-player,
html.site-embed #legal-popup {
	display: none !important;
}
