/**
 * Home — one-page fullscreen scroll
 */

html.page-home-scroll {
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
	scroll-padding-top: var(--home-chrome-height, 118px);
}

body.page-home-scroll {
	overflow-x: hidden;
}

body.page-home-scroll main {
	padding: 0;
}

.home-site-chrome {
	position: sticky;
	top: 0;
	z-index: 1050;
	background: #000;
}

.home-scroll-viewport {
	display: block;
	width: 100%;
}

/* —— Panels base —— */
.home-scroll-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: calc(100dvh - var(--home-chrome-height, 118px));
	min-height: calc(100dvh - var(--home-chrome-height, 118px));
	max-height: calc(100dvh - var(--home-chrome-height, 118px));
	overflow: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	isolation: isolate;
	background: #060608;
	box-sizing: border-box;
	flex-shrink: 0;
}

/* Fondo temático + overlay oscuro */
.home-scroll-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: #060608 center/cover no-repeat;
}

.home-scroll-panel--hero::after {
	display: none;
}

.home-scroll-panel--noticias::after {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(6, 6, 10, 0.88) 100%),
		url(../img/texture.jpg) center/cover no-repeat;
}

.home-scroll-panel--rankings::after {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(4, 4, 8, 0.9) 100%),
		url(../img/texture.jpg) center/cover no-repeat;
	box-shadow: inset 0 6px 10px 0 #000, inset 0 -8px 12px rgba(0, 0, 0, 0.35);
}

.home-scroll-panel--streamers::after {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.94) 100%),
		url(../img/bg.png) center top/cover no-repeat;
}

.home-scroll-panel-inner {
	position: relative;
	z-index: 4;
	width: 100%;
	height: 100%;
	min-height: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

.home-scroll-panel--hero .hero {
	position: relative;
	z-index: 4;
	width: 100%;
	height: 100%;
	min-height: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

/* —— Reveal por elemento —— */
.home-scroll-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

.home-scroll-panel.is-active .home-scroll-reveal {
	opacity: 1;
	transform: translateY(0);
}

/* Página 1 — Hero */
.home-scroll-panel--hero {
	padding: 0;
}

.home-scroll-panel--hero .hero {
	margin: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	display: flex;
	flex-direction: column;
	background: url(../img/bg.png) no-repeat center/cover;
	box-shadow: inset 0 -20px 14px 10px #000;
	position: relative;
	overflow: hidden;
}

.page-home-scroll .home-scroll-panel--hero .hero-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.38) 26%,
		transparent 48%,
		transparent 68%,
		rgba(0, 0, 0, 0.5) 100%
	);
	position: relative;
	z-index: 2;
	overflow: visible;
	pointer-events: none;
}

.page-home-scroll .home-scroll-panel--hero .hero-content .container {
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	justify-content: center;
	position: relative;
	z-index: 4;
	pointer-events: auto;
}

/* Joyas — rodean título + stats + botones */
.page-home-scroll .hero-content-orbit {
	position: relative;
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	padding: 52px 76px 44px;
	isolation: isolate;
}

.page-home-scroll .hero-content-orbit > :not(.hero-parallax-wrap) {
	position: relative;
	z-index: 2;
}

.page-home-scroll .hero-parallax-wrap {
	position: absolute;
	inset: -10px -28px -16px -28px;
	z-index: 1;
	pointer-events: none;
	overflow: visible;
}

.page-home-scroll .hero-parallax-wrap .parallax-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-home-scroll .hero-parallax-wrap .floating-item {
	filter:
		drop-shadow(0 0 10px rgba(74, 154, 216, 0.65))
		drop-shadow(0 0 18px rgba(255, 170, 60, 0.3))
		brightness(1.28);
	will-change: transform;
}

/* Arriba del bloque */
.page-home-scroll .hero-parallax-wrap .floating-item.chaos {
	top: 2%;
	left: -2%;
	width: 72px;
}

.page-home-scroll .hero-parallax-wrap .floating-item.eye {
	top: 0;
	left: 50%;
	width: 44px;
	margin-left: -22px;
	opacity: 0.92;
}

.page-home-scroll .hero-parallax-wrap .floating-item.feather {
	top: 1%;
	left: auto;
	right: -1%;
	width: 54px;
	transform: rotate(15deg);
}

/* Abajo, junto a los botones */
.page-home-scroll .hero-parallax-wrap .floating-item.life {
	top: auto;
	bottom: 10%;
	left: -4%;
	width: 68px;
}

.page-home-scroll .hero-parallax-wrap .floating-item.soul {
	top: auto;
	bottom: 8%;
	left: auto;
	right: -2%;
	width: 60px;
}

@media (max-width: 575.98px) {
	.page-home-scroll .hero-content-orbit {
		padding: 40px 52px 36px;
	}

	.page-home-scroll .hero-parallax-wrap {
		inset: -8px -18px -12px -18px;
	}

	.page-home-scroll .hero-parallax-wrap .floating-item.chaos {
		width: 56px;
		left: 0;
	}

	.page-home-scroll .hero-parallax-wrap .floating-item.life {
		width: 54px;
		bottom: 12%;
	}
}

.page-home-scroll .hero .hero-content .container .hero-kicker {
	font-family: "Metropolis-bold-italic", "Metropolis-bold", sans-serif;
	font-size: clamp(1.15rem, 2.4vw, 1.7rem);
	font-style: italic;
	font-weight: 700;
	color: #f4f8fc;
	margin-bottom: 0.2rem;
	letter-spacing: 0.28em;
	text-shadow:
		0 1px 0 #000,
		0 2px 4px rgba(0, 0, 0, 0.95),
		0 0 14px rgba(0, 0, 0, 0.8);
}

.page-home-scroll .home-scroll-panel--hero .hero-content .container .hero-season-title {
	font-size: clamp(1.45rem, 3.2vw, 2.1rem);
	font-weight: 900;
	line-height: 1.05;
	color: #6BB4EA;
	text-shadow:
		0 1px 0 #000,
		0 2px 6px rgba(0, 0, 0, 0.95),
		0 0 16px rgba(74, 154, 216, 0.45);
	margin-bottom: 0;
}

.page-home-scroll .hero-content-orbit .hero-stats-wrap {
	width: 100%;
	max-width: 680px;
	margin: 12px 0 14px;
}

.page-home-scroll .hero-stats-wrap {
	width: 100%;
	max-width: 680px;
	margin: 14px 0 18px;
}

.page-home-scroll .server-stats-bar--hero-panel {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stats-bar-inner {
	max-width: none;
	padding: 0;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stats-bar-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-item {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 8px;
	background: rgba(6, 12, 22, 0.22);
	border: 1px solid rgba(126, 200, 255, 0.38);
	border-radius: 8px;
	box-shadow: none;
	backdrop-filter: blur(5px);
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-emoji {
	display: block;
	font-size: 1.15rem;
	line-height: 1;
	margin-bottom: 3px;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-item::after {
	display: none;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-icon {
	display: none;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-body {
	flex-direction: column;
	align-items: center;
	gap: 3px;
	width: 100%;
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-value {
	font-size: 1.22rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	text-shadow:
		0 0 8px rgba(255, 255, 255, 0.55),
		0 2px 8px rgba(0, 0, 0, 0.95);
}

.page-home-scroll .server-stats-bar--hero-panel .server-stat-label {
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #e8f4ff;
	text-shadow:
		0 1px 3px rgba(0, 0, 0, 1),
		0 0 10px rgba(0, 0, 0, 0.85);
	line-height: 1.2;
}

.page-home-scroll .hero-content-orbit .hero-actions {
	margin-top: 0;
}

.page-home-scroll .hero-actions {
	margin-top: 0;
}

@media (max-width: 991.98px) {
	.page-home-scroll .server-stats-bar--hero-panel .server-stats-bar-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		overflow: visible;
	}

	.page-home-scroll .server-stats-bar--hero-panel .server-stat-item {
		flex: none;
		min-width: 0;
	}
}

@media (max-width: 575.98px) {
	.page-home-scroll .hero-stats-wrap {
		max-width: 100%;
		margin: 10px 0 12px;
	}
}

/* Página 2 — Hub noticias */
.home-scroll-panel--noticias {
	padding: 0;
}

.home-scroll-panel--noticias .home-scroll-panel-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 0 32px;
}

/* Página 3 — Rankings */
.home-scroll-panel--rankings {
	padding: 0;
}

.home-scroll-panel--rankings .home-scroll-panel-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	padding: 12px 0 16px;
}

.page-home-scroll .home-scroll-panel--rankings .home-rankings-wrap {
	margin-top: 0;
	padding-top: 0;
	flex-shrink: 0;
}

.page-home-scroll .home-scroll-panel--rankings .home-rankings-wrap > .position-relative {
	margin-bottom: 1.1rem;
	padding-top: 0.5rem;
}

.page-home-scroll .home-scroll-panel--rankings .best-title {
	top: -0.25rem;
	font-size: 5rem;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.22);
	mix-blend-mode: normal;
	opacity: 0.35;
}

.page-home-scroll .home-scroll-panel--rankings .best-title-1 {
	font-size: 3.15rem;
	line-height: 1;
	margin-bottom: 0.5rem;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rankings-row {
	align-items: stretch;
	gap: 16px;
	margin-bottom: 0;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rankings-row > .imperiox-rank-panel {
	height: 460px;
	min-height: 460px;
	flex: 0 1 300px;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel.blockHome {
	height: 460px;
	min-height: 460px;
	padding: 22px 20px;
	width: 300px;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel .imperiox-rank-title {
	margin-top: 62px;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel .imperiox-rank-title span {
	font-size: 17px;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel .tableBlock-content > div {
	height: 28px;
	font-size: 12px;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel .tableBlock-rows {
	overflow: hidden;
}

.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel .all-button {
	padding-top: 8px;
}

/* Página 4 — Streamers */
.home-scroll-panel--streamers {
	padding: 0;
}

.home-scroll-panel--streamers .home-scroll-panel-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.page-home-scroll .home-scroll-panel--streamers .stream-section {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 36px 0 16px;
	background: transparent;
	-webkit-overflow-scrolling: touch;
}

.page-home-scroll .home-scroll-panel--streamers .stream-boxes {
	margin-bottom: 0;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.page-home-scroll .home-scroll-panel--streamers .stream-section .best-title-1 {
	color: #fff;
}

.page-home-scroll .home-scroll-panel--streamers .stream-box {
	padding: 1rem !important;
}

.page-home-scroll .home-scroll-panel--streamers .stream-box video {
	width: 100px !important;
	height: 100px !important;
}

.page-home-scroll .gallery-frame {
	margin-top: 12px;
	background: transparent;
	border: 1px solid rgba(74, 154, 216, 0.45);
	border-radius: 6px;
	padding: 0;
}

.page-home-scroll .gallery-empty {
	background: #111;
	color: #d7e4f0;
	text-align: center;
	padding: 48px 16px;
	border-radius: 6px;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
}

.page-home-scroll .gallery-coverflow {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #000;
	border-radius: 6px;
	padding: 16px 8px;
}

.page-home-scroll .gallery-stage {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex: 1 1 auto;
	min-width: 0;
}

.page-home-scroll .gallery-card {
	display: none;
	position: relative;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	margin: 0;
	padding: 6px;
	background: #222;
	border: 0;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
}

.page-home-scroll .gallery-card.is-visible {
	display: flex;
}

.page-home-scroll .gallery-card.is-left-2 { order: 1; flex: 0 0 16.5%; height: 220px; }
.page-home-scroll .gallery-card.is-left-1 { order: 2; flex: 0 0 17.5%; height: 236px; }
.page-home-scroll .gallery-card.is-center { order: 3; flex: 0 0 21%; height: 270px; box-shadow: 0 0 0 1px #4A9AD8; z-index: 2; cursor: zoom-in; }
.page-home-scroll .gallery-card.is-right-1 { order: 4; flex: 0 0 17.5%; height: 236px; }
.page-home-scroll .gallery-card.is-right-2 { order: 5; flex: 0 0 16.5%; height: 220px; }

.page-home-scroll .gallery-card img {
	display: block;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
	object-fit: contain;
	object-position: center;
	background: #222;
}

.page-home-scroll .gallery-card figcaption {
	flex: 0 0 auto;
	margin: 8px 0 0;
	padding: 0;
	color: #4A9AD8;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-align: center;
	line-height: 1.2;
}

.page-home-scroll .gallery-arrow {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #4A9AD8;
	color: #111;
	font-size: 1.15rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.page-home-scroll .gallery-arrow:hover {
	background: #6BB4EA;
	color: #fff;
}

.gallery-lightbox[hidden] {
	display: none !important;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 28px 16px;
	background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox-figure {
	margin: 0;
	max-width: min(92vw, 1180px);
	max-height: 86vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gallery-lightbox-figure img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	background: #111;
	border-radius: 6px;
	box-shadow: 0 0 0 1px rgba(74, 154, 216, 0.45);
}

.gallery-lightbox-figure figcaption {
	margin-top: 10px;
	color: #6BB4EA;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
	border: 0;
	background: #4A9AD8;
	color: #111;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 1.4rem;
	line-height: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.15rem;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
	background: #6BB4EA;
	color: #fff;
}

@media (max-width: 767.98px) {
	.page-home-scroll .gallery-card.is-left-2,
	.page-home-scroll .gallery-card.is-right-2 {
		display: none;
	}
	.page-home-scroll .gallery-card.is-left-1,
	.page-home-scroll .gallery-card.is-right-1 {
		height: 180px;
	}
	.page-home-scroll .gallery-card.is-center {
		flex-basis: 40%;
		height: 210px;
	}
	.page-home-scroll .gallery-stage {
		gap: 8px;
	}
}

/* Footer embebido — altura fija, sin solaparse con stream */
.page-home-scroll .home-scroll-panel--streamers .footer-section--home-compact {
	flex: 0 0 auto;
	padding: 20px 0 14px;
}

.page-home-scroll .home-scroll-panel--streamers .footer-section--home-compact .footer-links {
	margin-bottom: 10px !important;
	font-size: 0.72rem;
}

.page-home-scroll .home-scroll-panel--streamers .footer-section--home-compact .footer-title {
	font-size: 1.35rem;
	margin-bottom: 2px;
}

.page-home-scroll .home-scroll-panel--streamers .footer-section--home-compact .footer-desc {
	font-size: 0.72rem;
	line-height: 1.35;
	margin-bottom: 2px;
}

.page-home-scroll .home-scroll-panel--streamers .footer-section--home-compact .text-center.mt-3 {
	margin-top: 8px !important;
	font-size: 0.68rem;
}

body.launch-popup-open {
	overflow: hidden;
}

/* —— Nav lateral —— */
.home-scroll-nav {
	position: fixed;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1040;
}

.home-scroll-nav-inner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 10px;
	border-radius: 16px;
	background: rgba(8, 10, 14, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.home-scroll-nav-btn {
	position: relative;
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #c8d0da;
	font-size: 17px;
	padding: 0;
	cursor: pointer;
	appearance: none;
	transition:
		border-color 0.25s ease,
		color 0.25s ease,
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.home-scroll-nav-btn:hover,
.home-scroll-nav-btn:focus-visible {
	color: #fff;
	border-color: rgba(107, 180, 234, 0.55);
	background: rgba(74, 154, 216, 0.12);
	transform: translateX(3px);
	outline: none;
}

.home-scroll-nav-btn.is-active {
	color: #fff;
	border-color: rgba(212, 175, 55, 0.85);
	background: rgba(212, 175, 55, 0.14);
	box-shadow:
		0 0 0 1px rgba(212, 175, 55, 0.35),
		0 0 18px rgba(212, 175, 55, 0.22);
}

.home-scroll-nav-tip {
	position: absolute;
	left: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%) translateX(-6px);
	padding: 6px 10px;
	border-radius: 6px;
	background: rgba(8, 10, 14, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #f0f3f8;
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.home-scroll-nav-btn:hover .home-scroll-nav-tip,
.home-scroll-nav-btn:focus-visible .home-scroll-nav-tip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

body.launch-popup-open .home-scroll-nav {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 991px) {
	.home-scroll-nav {
		left: 10px;
	}

	.home-scroll-nav-inner {
		padding: 10px 8px;
		gap: 8px;
	}

	.home-scroll-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 15px;
		border-radius: 10px;
	}

	.page-home-scroll .home-scroll-panel-inner {
		padding-left: 58px;
		padding-right: 14px;
	}

	.page-home-scroll .home-scroll-panel--hero .hero-content .container {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.page-home-scroll .home-scroll-panel--hero .hero-content .container {
		justify-content: center;
		padding-top: 8px;
	}

	.page-home-scroll .home-scroll-panel--hero .hero-content {
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.92) 0%,
			rgba(0, 0, 0, 0.72) 42%,
			rgba(0, 0, 0, 0.35) 100%
		);
	}

	.page-home-scroll .home-scroll-panel--rankings .home-scroll-panel-inner {
		justify-content: flex-start;
		padding-top: 14px;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.page-home-scroll .home-scroll-panel--rankings .home-rankings-wrap > .position-relative {
		margin-bottom: 0.75rem;
		padding-top: 0;
	}

	.page-home-scroll .home-scroll-panel--rankings .best-title {
		font-size: 4rem;
	}

	.page-home-scroll .home-scroll-panel--rankings .best-title-1 {
		font-size: 2.4rem;
	}
}

@media (max-width: 575px) {
	.home-scroll-nav {
		left: 50%;
		top: auto;
		bottom: max(14px, env(safe-area-inset-bottom));
		transform: translateX(-50%);
		width: calc(100% - 24px);
		max-width: 360px;
		z-index: 1055;
	}

	.home-scroll-nav-inner {
		flex-direction: row;
		justify-content: center;
		gap: 8px;
		padding: 8px 12px;
		border-radius: 999px;
		width: 100%;
	}

	.home-scroll-nav-btn:hover,
	.home-scroll-nav-btn:focus-visible {
		transform: none;
	}

	.home-scroll-nav-tip {
		left: 50%;
		top: auto;
		bottom: calc(100% + 10px);
		transform: translateX(-50%) translateY(6px);
	}

	.home-scroll-nav-btn:hover .home-scroll-nav-tip,
	.home-scroll-nav-btn:focus-visible .home-scroll-nav-tip {
		transform: translateX(-50%) translateY(0);
	}

	.page-home-scroll .home-scroll-panel-inner {
		padding-left: 12px;
		padding-right: 12px;
		padding-bottom: calc(82px + env(safe-area-inset-bottom));
	}

	.page-home-scroll .home-scroll-panel--hero .hero-content .container {
		padding-bottom: 0;
	}

	.page-home-scroll .hero-content-orbit {
		padding: 36px 12px 32px;
		width: 100%;
	}

	.page-home-scroll .server-stats-bar--hero-panel .server-stats-bar-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		overflow: visible;
	}

	.page-home-scroll .server-stats-bar--hero-panel .server-stat-item {
		flex: none;
		min-width: 0;
	}

	.page-home-scroll .home-scroll-panel--rankings .home-rankings-wrap {
		margin-top: 0;
		width: 100%;
	}

	.page-home-scroll .home-scroll-panel--rankings .imperiox-rankings-row {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.page-home-scroll .home-scroll-panel--rankings .imperiox-rankings-row > .imperiox-rank-panel {
		height: auto;
		min-height: 380px;
		flex: 0 1 100%;
		max-width: 100%;
		width: 100%;
	}

	.page-home-scroll .home-scroll-panel--rankings .imperiox-rank-panel.blockHome {
		height: auto;
		min-height: 380px;
		width: 100%;
		max-width: 100%;
	}

	.page-home-scroll .home-scroll-panel--noticias .home-scroll-panel-inner {
		padding-top: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html.page-home-scroll {
		scroll-behavior: auto;
		scroll-snap-type: none;
	}

	.home-scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
		will-change: auto;
	}
}
