:root {
	--color-bg: #f6f8fc;
	--color-bg-soft: #eaf0f8;
	--color-surface: #ffffff;
	--color-surface-2: #edf3fb;
	--color-card: #ffffff;
	--color-text: #111827;
	--color-muted: #475569;
	--color-subtle: #64748b;
	--color-border: rgba(15, 23, 42, .12);
	--color-accent: #19c37d;
	--color-accent-2: #39a7ff;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--shadow-card: 0 18px 45px rgba(15, 23, 42, .12);
	--header-h: 72px;
	--sidebar-w: 250px;
	--sidebar-collapsed-w: 78px;
	--content-max: 1480px;
	--transition-fast: 160ms ease;
	--font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
	background: var(--color-bg);
	scroll-behavior: smooth;
	scrollbar-color: #94a3b8 #f1f5f9;
	scrollbar-width: thin;
}
::-webkit-scrollbar {
	width: 9px;
	height: 9px;
}
::-webkit-scrollbar-track {
	background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
	background: #94a3b8;
	border: 2px solid #f1f5f9;
	border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
	background: #64748b;
}
body.platform-body {
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	letter-spacing: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
textarea {
	scrollbar-color: #7b88a0 #eef2f7;
	scrollbar-width: thin;
}
:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--color-accent) 72%, white);
	outline-offset: 3px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	left: 12px;
	top: 12px;
	z-index: 1000;
	transform: translateY(-140%);
	background: var(--color-accent);
	color: #04110c;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.platform-shell { min-height: 100vh; }
.platform-header {
	position: sticky;
	top: 0;
	z-index: 80;
	height: var(--header-h);
	display: grid;
	grid-template-columns: auto auto minmax(220px, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 10px 18px;
	background: color-mix(in srgb, var(--color-bg) 90%, transparent);
	border-bottom: 1px solid var(--color-border);
	backdrop-filter: blur(18px);
}
.platform-logo { display: inline-flex; align-items: center; min-width: 0; }
.platform-logo img { max-height: 42px; width: auto; object-fit: contain; }
.platform-header .platform-logo img { max-height: 30px; }
.platform-logo--footer img { max-height: 48px; }
.platform-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}
.platform-menu a {
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	padding: 0 12px;
	border-radius: 999px;
	color: var(--color-muted);
	text-decoration: none;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
	transition: background var(--transition-fast), color var(--transition-fast);
}
.platform-menu a:hover,
.platform-menu a:focus-visible {
	background: var(--color-surface);
	color: var(--color-text);
}
.icon-button {
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	color: var(--color-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}
.icon-button:hover { transform: translateY(-1px); border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border)); }
.mobile-drawer-toggle { display: none; }
.platform-search {
	position: relative;
	max-width: 580px;
	width: 100%;
	justify-self: center;
}
.platform-search input[type="search"] {
	width: 100%;
	height: 42px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-text);
	padding: 0 82px 0 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.platform-search input::placeholder { color: var(--color-subtle); }
.search-clear, .search-submit {
	position: absolute;
	top: 5px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.search-clear { right: 43px; background: transparent; color: var(--color-muted); }
.search-submit { right: 6px; background: var(--color-accent); color: #04110c; font-weight: 900; }
.search-suggestions {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	display: none;
	max-height: 360px;
	overflow: auto;
	padding: 8px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}
.search-suggestions.is-open { display: block; }
.search-suggestions a, .search-suggestions button {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 0;
	border-radius: var(--radius-sm);
	background: transparent;
	color: var(--color-text);
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}
.search-suggestions a:hover, .search-suggestions button:hover,
.search-suggestions [aria-selected="true"] { background: var(--color-surface-2); }
.platform-actions { display: flex; align-items: center; gap: 8px; }
.platform-actions .relative > div[x-show] {
	background: #ffffff !important;
	color: #111827 !important;
	border: 1px solid rgba(15, 23, 42, .12) !important;
	box-shadow: 0 18px 40px rgba(15, 23, 42, .14) !important;
}
.platform-actions .relative > div[x-show] p:first-child {
	color: #111827 !important;
}
.platform-actions .relative > div[x-show] a {
	color: #334155 !important;
}
.platform-actions .relative > div[x-show] a:hover {
	background: #f1f5f9 !important;
	color: #0f172a !important;
}
.platform-actions .relative > div[x-show] .border-t {
	border-color: #e2e8f0 !important;
}
.login-button {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--color-accent);
	color: #04110c;
	font-weight: 800;
	text-decoration: none;
}

.platform-sidebar {
	position: fixed;
	z-index: 70;
	top: var(--header-h);
	left: 0;
	bottom: 0;
	width: var(--sidebar-w);
	overflow-y: auto;
	padding: 16px 12px 90px;
	background: var(--color-bg-soft);
	border-right: 1px solid var(--color-border);
	transition: width var(--transition-fast), transform var(--transition-fast);
}
.sidebar-nav { display: grid; gap: 18px; }
.sidebar-group { display: grid; gap: 4px; }
.sidebar-title {
	padding: 0 12px;
	color: var(--color-subtle);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.sidebar-link {
	min-height: 42px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: var(--radius-md);
	color: var(--color-muted);
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
}
.sidebar-link__icon {
	width: 10px;
	height: 10px;
	border-radius: 99px;
	background: var(--color-subtle);
	flex: 0 0 auto;
}
.sidebar-link:hover, .sidebar-link.is-active {
	background: var(--color-surface);
	color: var(--color-text);
}
.sidebar-link.is-active .sidebar-link__icon { background: var(--color-accent); }
.platform-main-wrap {
	min-height: calc(100vh - var(--header-h));
	margin-left: 0;
	transition: margin-left var(--transition-fast);
}
body.sidebar-collapsed .platform-sidebar { width: var(--sidebar-collapsed-w); }
body.sidebar-collapsed .platform-main-wrap { margin-left: 0; }
body.sidebar-collapsed .sidebar-title,
body.sidebar-collapsed .sidebar-link__label { display: none; }
body.sidebar-collapsed .sidebar-link { justify-content: center; }

main { background: var(--color-bg) !important; color: var(--color-text); }
.page-container {
	width: min(var(--content-max), calc(100vw - 32px));
	margin: 0 auto;
	padding: 30px 0 56px;
}
.page-hero {
	padding: 28px 0 20px;
	display: grid;
	gap: 14px;
}
.page-eyebrow { color: var(--color-accent); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.page-hero h1, .game-section h2 {
	margin: 0;
	font-family: var(--font-heading);
	letter-spacing: 0;
	color: var(--color-text);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1; max-width: 900px; }
.page-hero p { max-width: 760px; color: var(--color-muted); font-size: 17px; line-height: 1.65; }
.category-chip-row {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 4px 0 10px;
	scrollbar-width: thin;
}
.category-chip {
	flex: 0 0 auto;
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-text);
	text-decoration: none;
	font-weight: 800;
}

.game-section { padding: 20px 0; }
.game-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}
.game-section h2 { font-size: clamp(20px, 2.2vw, 28px); }
.game-section p { margin: 6px 0 0; color: var(--color-muted); }
.game-section__link {
	flex: 0 0 auto;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-accent);
	text-decoration: none;
	font-weight: 900;
}
.game-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
	gap: 12px;
}
.game-mosaic {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}
.game-card {
	position: relative;
	min-width: 0;
	border-radius: var(--radius-md);
	background: var(--color-card);
	box-shadow: 0 0 0 1px var(--color-border);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
	overflow: hidden;
}
.game-card:hover, .game-card:focus-within { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.game-card--large { grid-column: span 2; grid-row: span 2; }
.game-card__link { display: block; color: inherit; text-decoration: none; }
.game-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
	overflow: hidden;
}
.game-card--large .game-card__media { aspect-ratio: 1 / 1; }
.game-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}
.game-card:hover .game-card__media img { transform: scale(1.04); }
.game-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 8px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-accent) 88%, black);
	color: #04110c;
	font-size: 11px;
	font-weight: 900;
}
.game-card__body {
	display: grid;
	gap: 3px;
	padding: 8px 10px 10px;
}
.game-card__title {
	color: var(--color-text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.game-card__meta { color: var(--color-muted); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-card__favorite {
	position: absolute;
	top: 9px;
	right: 9px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	background: rgba(4, 10, 24, .74);
	color: white;
	cursor: pointer;
}
.game-card__favorite.is-active { background: var(--color-accent); color: #04110c; }
.empty-state {
	padding: 28px;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	color: var(--color-muted);
	text-align: center;
}
.ad-slot {
	min-height: 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-md);
	background: color-mix(in srgb, var(--color-surface) 76%, transparent);
	color: var(--color-subtle);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
	overflow: hidden;
}
.ad-slot__label {
	display: block;
	color: var(--color-subtle);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}
.ad-slot .adsbygoogle {
	width: 100%;
	min-height: 90px;
}

.home-redesign-shell {
	background: #f5f7fb !important;
	color: #172033;
}
.home-redesign {
	width: min(1320px, calc(100vw - 24px));
	padding: 12px 0 38px;
	color: #172033;
}
.home-showcase {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
	gap: 10px;
	min-height: 258px;
	margin-bottom: 12px;
	border-radius: 14px;
	overflow: hidden;
	background: #111827;
	box-shadow: 0 16px 38px rgba(23, 32, 51, .16);
}
.home-showcase__feature {
	position: relative;
	display: flex;
	align-items: end;
	min-height: 258px;
	padding: 24px;
	color: white;
	text-decoration: none;
	background-image: linear-gradient(90deg, rgba(5, 10, 21, .86) 0%, rgba(5, 10, 21, .58) 45%, rgba(5, 10, 21, .14) 100%), var(--hero-thumb);
	background-size: cover;
	background-position: center;
}
.home-showcase__content {
	display: grid;
	gap: 8px;
	max-width: 540px;
}
.home-pill {
	width: max-content;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(25, 195, 125, .18);
	color: #9dffd1;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(157, 255, 209, .28);
}
.home-showcase__title {
	margin: 0;
	max-width: 640px;
	color: white;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
	text-wrap: balance;
}
.home-showcase__featured-name {
	width: max-content;
	max-width: 100%;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .13);
	color: rgba(255, 255, 255, .95);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}
.home-showcase__copy {
	max-width: 520px;
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.home-showcase__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	font-weight: 800;
}
.home-showcase__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2px;
}
.home-primary-action,
.home-secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
}
.home-primary-action {
	background: #246bff;
	color: white;
	box-shadow: 0 10px 24px rgba(36, 107, 255, .32);
}
.home-secondary-action {
	background: rgba(255, 255, 255, .14);
	color: white;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.home-showcase__rail {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 12px 12px 12px 0;
}
.home-showcase__mini {
	position: relative;
	display: block;
	min-height: 70px;
	border-radius: 10px;
	overflow: hidden;
	color: #ffffff;
	text-decoration: none;
	background: #e9eef7;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
}
.home-showcase__mini img {
	width: 100%;
	height: 100%;
	min-height: 70px;
	object-fit: cover;
	transition: transform var(--transition-fast);
}
.home-showcase__mini:hover img { transform: scale(1.04); }
.home-showcase__mini span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 8px 8px;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
}
.home-row-section,
.home-category-section {
	padding: 11px 0 14px;
}
.home-section-header {
	align-items: center;
	margin-bottom: 8px;
}
.home-section-header h2 {
	margin: 0;
	color: #172033;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.1;
}
.home-redesign .game-section__link {
	padding: 0;
	background: transparent;
	color: #246bff;
	font-size: 12px;
	font-weight: 900;
}
.home-redesign .game-section__link::after { content: " ->"; }
.home-quick-links {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 2px 0 12px;
	margin-bottom: 4px;
	scrollbar-width: thin;
}
.home-quick-links a {
	flex: 0 0 auto;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 999px;
	background: #ffffff;
	color: #27344d;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 1px 2px rgba(23, 32, 51, .08);
	transition: transform var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.home-quick-links a:hover,
.home-quick-links a:focus-visible {
	transform: translateY(-1px);
	color: #246bff;
	box-shadow: 0 8px 18px rgba(23, 32, 51, .12);
}
.home-compact-grid {
	grid-template-columns: repeat(9, minmax(0, 1fr));
	gap: 9px;
}
.home-redesign .game-card {
	border-radius: 9px;
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(23, 32, 51, .08);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.home-redesign .game-card:hover,
.home-redesign .game-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(23, 32, 51, .14);
}
.home-redesign .game-card__media {
	aspect-ratio: 1 / 1;
	background: #e9eef7;
}
.home-redesign .game-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 22px 7px 6px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.82) 74%);
}
.home-redesign .game-card__title {
	color: white;
	font-size: 10.5px;
	font-weight: 900;
	line-height: 1.18;
	text-shadow: 0 1px 2px rgba(0,0,0,.45);
}
.home-redesign .game-card__meta { display: none; }
.home-redesign .game-card__badge {
	top: 5px;
	left: 5px;
	padding: 3px 5px;
	background: #ff4757;
	color: white;
	font-size: 8px;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.home-redesign .game-card__favorite {
	top: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	border: 0;
	background: rgba(15, 23, 42, .72);
	color: white;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}
.home-redesign .game-card:hover .game-card__favorite,
.home-redesign .game-card:focus-within .game-card__favorite {
	opacity: 1;
	transform: translateY(0);
}
.home-redesign .game-card__favorite.is-active {
	opacity: 1;
	background: #19c37d;
	color: #07120d;
}
.home-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 9px;
}
.home-category-tile {
	min-height: 42px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 11px;
	border-radius: 8px;
	background: white;
	color: #27344d;
	text-decoration: none;
	font-weight: 900;
	font-size: 12px;
	box-shadow: 0 1px 2px rgba(23, 32, 51, .07);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}
.home-category-tile:hover,
.home-category-tile:focus-visible {
	transform: translateY(-2px);
	color: #246bff;
	box-shadow: 0 10px 24px rgba(23, 32, 51, .12);
}
.home-category-tile__mark {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: linear-gradient(135deg, #246bff, #19c37d);
	box-shadow: 0 5px 12px rgba(36, 107, 255, .22);
	flex: 0 0 auto;
}
.home-load-more {
	display: flex;
	justify-content: center;
	padding: 18px 0 2px;
}
.home-load-more a {
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border-radius: 999px;
	background: white;
	color: #27344d;
	text-decoration: none;
	font-weight: 900;
	font-size: 13px;
	box-shadow: 0 2px 10px rgba(23, 32, 51, .1);
}
.home-load-more a::after {
	content: " ->";
	color: #246bff;
}
.home-seo-panel {
	display: grid;
	gap: 18px;
	margin-top: 28px;
	padding: 24px;
	border: 1px solid rgba(15, 23, 42, .09);
	border-radius: 14px;
	background: #ffffff;
	color: #172033;
	box-shadow: 0 8px 24px rgba(23, 32, 51, .07);
}
.home-seo-panel h2,
.home-seo-panel h3 {
	margin: 0;
	color: #111827;
	letter-spacing: 0;
}
.home-seo-panel h2 {
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.08;
}
.home-seo-panel h3 {
	font-size: 17px;
	line-height: 1.2;
}
.home-seo-panel p,
.home-seo-panel li {
	color: #4b5b73;
	line-height: 1.7;
}
.home-seo-panel a {
	color: #246bff;
	font-weight: 900;
	text-decoration: none;
}
.home-seo-panel a:hover,
.home-seo-panel a:focus-visible {
	text-decoration: underline;
}
.home-seo-panel__intro {
	max-width: 860px;
	display: grid;
	gap: 10px;
}
.home-seo-panel__intro .page-eyebrow {
	margin: 0;
}
.home-seo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.home-seo-grid > div {
	padding: 16px;
	border-radius: 12px;
	background: #f7f9fd;
}
.home-seo-grid ul {
	margin: 10px 0 0;
	padding-left: 18px;
}
.home-seo-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 0;
}
.home-seo-links a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
}
.home-faq {
	display: grid;
	gap: 8px;
}
.home-faq h2 {
	margin-bottom: 4px;
	font-size: 22px;
}
.home-faq details {
	border: 1px solid rgba(15, 23, 42, .09);
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
}
.home-faq summary {
	cursor: pointer;
	padding: 13px 14px;
	color: #172033;
	font-weight: 950;
}
.home-faq details p {
	margin: 0;
	padding: 0 14px 14px;
}
.static-content, .contact-form {
	max-width: 900px;
	padding: 24px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	box-shadow: 0 0 0 1px rgba(255,255,255,.02);
}
.static-content h2 { margin: 26px 0 10px; font-size: 22px; color: var(--color-text); }
.static-content h2:first-child { margin-top: 0; }
.static-content p, .static-content li { color: var(--color-muted); line-height: 1.7; }
.static-content a { color: var(--color-accent); }
.static-highlight-list {
	display: grid;
	gap: 8px;
	padding-left: 20px;
}
.static-action-row {
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
}
.static-button-link {
	border: 1px solid var(--color-border);
	cursor: pointer;
}
.static-note {
	margin-top: 28px;
	padding: 18px;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-bg-soft);
}
.contact-support-grid {
	max-width: 900px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 18px;
}
.contact-support-card {
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}
.contact-support-card h2 {
	margin: 0 0 8px;
	color: var(--color-text);
	font-size: 16px;
}
.contact-support-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.55;
}
.contact-form {
	display: grid;
	gap: 16px;
}
.contact-form label {
	display: grid;
	gap: 7px;
	color: var(--color-text);
	font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-bg-soft);
	color: var(--color-text);
	padding: 12px 14px;
}
.contact-form textarea { resize: vertical; }
.checkbox-row {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: flex-start;
	gap: 10px !important;
	color: var(--color-muted) !important;
}
.checkbox-row input { width: auto; margin-top: 5px; }
.form-submit {
	min-height: 46px;
	width: fit-content;
	border: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #04110c;
	padding: 0 18px;
	font-weight: 900;
	cursor: pointer;
}
.honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px 0 22px;
	color: var(--color-muted);
	font-size: 14px;
}
.breadcrumb a { color: var(--color-accent); text-decoration: none; }
.game-detail-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 18px;
}
.game-detail-header h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.05;
}
.game-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
	color: var(--color-muted);
}
.game-detail-meta span {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--color-surface);
}
.game-action-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}
.game-action-button {
	min-height: 44px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-text);
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-weight: 900;
	cursor: pointer;
}
.game-action-button svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.game-action-button svg path:first-child:last-child {
	fill: currentColor;
	stroke: none;
}
.game-player-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.game-launcher {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #020617;
}
.game-poster {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	text-align: center;
	overflow: hidden;
}
.game-poster img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .42;
	filter: saturate(1.1);
}
.play-now-button {
	position: relative;
	z-index: 3;
	min-height: 56px;
	border: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #04110c;
	padding: 0 28px;
	font-size: 18px;
	font-weight: 950;
	cursor: pointer;
	box-shadow: var(--shadow-card);
}
.game-poster p {
	position: relative;
	z-index: 3;
	align-self: start;
	margin-top: -32px;
	color: white;
	font-weight: 800;
}
.game-launcher iframe {
	width: 100%;
	height: 100%;
	border: 0;
	background: #020617;
}
.game-launcher:not(.is-playing) iframe { display: none; }
.game-launcher.is-playing .game-poster { display: none; }
.game-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 18px;
	margin-top: 22px;
}
.game-detail-main, .game-detail-side { display: grid; gap: 18px; align-content: start; }
.info-panel {
	padding: 22px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
}
.info-panel h2 { margin: 0 0 12px; font-size: 22px; }
.info-panel p, .info-panel li, .info-panel div { color: var(--color-muted); line-height: 1.65; }
.game-guide {
	display: grid;
	gap: 14px;
}
.game-guide__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 16px;
	align-items: stretch;
	padding: 14px;
	border: 1px solid rgba(15, 23, 42, .1);
	border-radius: 14px;
	background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.game-guide__hero img {
	width: 100%;
	height: 100%;
	min-height: 126px;
	max-height: 158px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}
.game-guide__kicker {
	display: inline-flex;
	margin-bottom: 8px;
	color: #13a66c;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}
.game-guide h3 {
	margin: 0 0 8px;
	color: #111827;
	font-size: 18px;
	line-height: 1.2;
}
.game-guide__summary {
	color: #334155 !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.55 !important;
}
.game-guide__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}
.game-guide__facts div {
	padding: 12px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 12px;
	background: #f8fafc;
	line-height: 1.2 !important;
}
.game-guide__facts span {
	display: block;
	margin-bottom: 6px;
	color: #64748b;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}
.game-guide__facts strong {
	display: block;
	color: #111827;
	font-size: 14px;
	line-height: 1.25;
}
.game-guide__section {
	padding: 14px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 14px;
	background: #ffffff;
}
.game-guide__section--split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.game-guide__checklist,
.game-guide__mini-list,
.game-guide__chips {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.game-guide__checklist li,
.game-guide__mini-list li {
	position: relative;
	padding-left: 26px;
	color: #334155 !important;
	font-weight: 700;
	line-height: 1.5 !important;
}
.game-guide__checklist li::before,
.game-guide__mini-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #19c37d;
	box-shadow: inset 0 0 0 4px #dcfce7;
}
.game-guide__chips {
	display: flex;
	flex-wrap: wrap;
}
.game-guide__chips li {
	padding: 8px 10px;
	border-radius: 999px;
	background: #eef4ff;
	color: #1d4ed8 !important;
	font-size: 12px;
	font-weight: 900;
	line-height: 1 !important;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a {
	padding: 8px 10px;
	border-radius: 999px;
	background: var(--color-surface-2);
	color: var(--color-text);
	text-decoration: none;
	font-weight: 800;
}
.faq-panel details {
	border-top: 1px solid var(--color-border);
	padding: 12px 0;
}
.faq-panel summary {
	color: var(--color-text);
	font-weight: 900;
	cursor: pointer;
}
.compact-report-form {
	display: grid;
	gap: 10px;
}
.compact-report-form select,
.compact-report-form textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-bg-soft);
	color: var(--color-text);
	padding: 10px;
}
.compact-report-form button {
	min-height: 42px;
	border: 0;
	border-radius: 999px;
	background: var(--color-accent);
	color: #04110c;
	font-weight: 900;
	cursor: pointer;
}

.game-play-shell {
	background: #f5f7fb !important;
	color: #172033;
}
.game-play-container {
	width: min(1420px, calc(100vw - 28px));
	padding-top: 14px;
	color: #172033;
}
.game-breadcrumb {
	margin: 0 0 10px;
	color: #64748b;
	font-size: 12px;
}
.game-breadcrumb a {
	color: #246bff;
	font-weight: 800;
}
.game-play-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 14px;
	align-items: start;
}
.game-stage-card,
.game-play-next,
.game-play-shell .info-panel {
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, .09);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}
.game-stage-card {
	overflow: hidden;
}
.game-stage-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
}
.game-title-block {
	min-width: 0;
	display: grid;
	gap: 6px;
}
.game-stage-header .page-eyebrow {
	color: #19a66f;
	font-size: 10px;
	letter-spacing: .08em;
}
.game-stage-header h1 {
	margin: 0;
	color: #111827;
	font-size: clamp(24px, 2.8vw, 38px);
	line-height: 1.05;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}
.game-play-shell .game-detail-meta {
	gap: 6px;
	margin-top: 0;
}
.game-play-shell .game-detail-meta span {
	padding: 5px 8px;
	border-radius: 999px;
	background: #edf2f8;
	color: #40506a;
	font-size: 12px;
	font-weight: 800;
}
.game-play-shell .game-action-bar {
	gap: 7px;
	justify-content: flex-end;
}
.game-play-shell .game-action-button {
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid rgba(15, 23, 42, .12);
	background: #f8fafc;
	color: #27344d;
	font-size: 12px;
	font-weight: 900;
	transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.game-play-shell .game-action-button svg {
	width: 15px;
	height: 15px;
}
.game-play-shell .game-action-button:hover,
.game-play-shell .game-action-button:focus-visible {
	transform: translateY(-1px);
	background: #eef4ff;
	color: #246bff;
}
.game-action-button--primary {
	background: #246bff !important;
	color: #ffffff !important;
	border-color: #246bff !important;
}
.game-play-shell .game-player-card {
	border: 0;
	border-radius: 0;
	background: #0b1220;
	box-shadow: none;
}
.game-play-shell .game-launcher {
	aspect-ratio: 16 / 9;
	min-height: 430px;
	background: #070b14;
}
.game-poster {
	background: #070b14;
}
.game-poster::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(7, 11, 20, .24), rgba(7, 11, 20, .88));
}
.game-poster img {
	opacity: .58;
	filter: saturate(1.1) contrast(1.04);
}
.game-poster__overlay {
	position: relative;
	z-index: 3;
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 20px;
	text-align: center;
}
.game-play-shell .play-now-button {
	min-height: 50px;
	padding: 0 28px;
	border-radius: 999px;
	background: #246bff;
	color: #ffffff;
	font-size: 16px;
	font-weight: 950;
	box-shadow: 0 14px 32px rgba(36, 107, 255, .34);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.game-play-shell .play-now-button:hover,
.game-play-shell .play-now-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(36, 107, 255, .42);
}
.game-poster__overlay p,
.game-poster p {
	position: static;
	align-self: auto;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 800;
}
.game-stage-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 10px 14px 14px;
	border-top: 1px solid rgba(15, 23, 42, .08);
}
.game-stage-tags a,
.game-play-shell .tag-list a {
	padding: 7px 9px;
	border-radius: 999px;
	background: #edf2f8;
	color: #27344d;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
}
.game-stage-tags a:hover,
.game-play-shell .tag-list a:hover {
	background: #e4eeff;
	color: #246bff;
}
.game-play-next {
	position: sticky;
	top: calc(var(--header-h) + 12px);
	padding: 12px;
}
.game-play-next__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.game-play-next__header h2 {
	margin: 0;
	color: #111827;
	font-size: 16px;
	line-height: 1.1;
}
.game-play-next__header a {
	color: #246bff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
}
.game-play-next__list {
	display: grid;
	gap: 8px;
}
.game-next-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 9px;
	align-items: center;
	color: #172033;
	text-decoration: none;
	font-weight: 900;
	font-size: 12px;
	line-height: 1.2;
}
.game-next-card img {
	width: 54px;
	height: 54px;
	border-radius: 10px;
	object-fit: cover;
	background: #e9eef7;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .12);
}
.game-next-card span {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.game-next-card:hover span {
	color: #246bff;
}
.game-play-shell .ad-slot {
	margin: 14px 0;
	background: #ffffff;
	border-color: rgba(15, 23, 42, .12);
	color: #64748b;
	min-height: 76px;
}
.game-play-shell .ad-slot--below-game-player {
	margin-top: 150px;
	min-height: 110px;
}
.game-play-shell .ad-slot--after-game-description,
.game-play-shell .ad-slot--below-related-games {
	min-height: 110px;
}
.game-play-shell .ad-slot--game-sidebar {
	min-height: 250px;
	align-self: start;
}
.game-play-shell .ad-slot--game-sidebar .adsbygoogle {
	min-height: 220px;
}
.game-play-shell .game-detail-layout {
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 14px;
	margin-top: 14px;
}
.game-play-shell .game-detail-main,
.game-play-shell .game-detail-side {
	gap: 14px;
}
.game-play-shell .info-panel {
	padding: 16px;
	color: #172033;
}
.game-play-shell .info-panel h2 {
	margin: 0 0 10px;
	color: #111827;
	font-size: 18px;
	line-height: 1.2;
}
.game-play-shell .info-panel p,
.game-play-shell .info-panel li,
.game-play-shell .info-panel div {
	color: #4b5b73;
	line-height: 1.65;
}
.game-play-shell .game-guide div,
.game-play-shell .game-guide li {
	line-height: inherit;
}
.game-play-shell .faq-panel summary {
	color: #172033;
}
.game-play-shell .compact-report-form select,
.game-play-shell .compact-report-form textarea {
	background: #f8fafc;
	color: #172033;
	border-color: rgba(15, 23, 42, .12);
}
.game-play-shell .compact-report-form button {
	background: #246bff;
	color: #ffffff;
}

.single-game__comment {
	margin-top: 16px;
	padding: 0 !important;
	overflow: hidden;
	background: #ffffff !important;
	border: 1px solid rgba(15, 23, 42, .1) !important;
	border-radius: 14px !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
}
.single-game__comment > h2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 !important;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(15, 23, 42, .09);
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	color: #111827 !important;
	font-size: 20px !important;
	font-weight: 950 !important;
	line-height: 1.2 !important;
}
#tpl-comment-section {
	display: grid;
	gap: 0;
	color: #172033;
	background: #ffffff;
}
#comment-form,
.comment-require-login-wrapper {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 18px !important;
	background: #ffffff !important;
}
.comment-profile-avatar,
.user-comment-avatar {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
}
.comment-profile-avatar img,
.user-comment-avatar img,
img.tpl-user-comment-avatar {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	object-fit: cover;
	background: #e8eef7;
	box-shadow: 0 0 0 3px #ffffff, 0 2px 10px rgba(15, 23, 42, .14);
}
.comment-form-wrapper {
	min-width: 0;
	display: grid;
	gap: 9px;
	padding: 14px !important;
	border: 1px solid rgba(15, 23, 42, .1) !important;
	border-radius: 16px !important;
	background: #f8fafc !important;
	box-shadow: none !important;
}
.comment-form-wrapper textarea,
.tpl-comment-input,
.tpl-reply-input {
	width: 100%;
	min-height: 92px !important;
	resize: vertical;
	border: 1px solid rgba(15, 23, 42, .13) !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	color: #172033 !important;
	padding: 12px 14px !important;
	line-height: 1.5 !important;
	outline: none;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.comment-form-wrapper textarea:focus,
.tpl-comment-input:focus,
.tpl-reply-input:focus {
	border-color: #246bff;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(36, 107, 255, .12);
}
.post-comment-btn-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-top: 4px;
}
.tpl-post-comment-btn,
.tpl-btn-send-reply,
.tpl-btn-cancel-reply,
#tpl-btn-load-more-comments {
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	padding: 0 14px;
	background: #246bff;
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.tpl-post-comment-btn:hover,
.tpl-btn-send-reply:hover,
#tpl-btn-load-more-comments:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(36, 107, 255, .22);
}
.tpl-btn-cancel-reply {
	background: #edf2f8;
	color: #27344d;
}
.comment-alert {
	padding: 12px 14px;
	border-radius: 14px;
	background: #f8fafc;
	color: #4b5b73;
	font-weight: 800;
}
#tpl-comment-list {
	display: grid;
	gap: 0;
	padding: 0 18px 16px;
}
.tpl-user-comment {
	padding: 14px 0;
	border-top: 1px solid rgba(15, 23, 42, .08);
}
.tpl-user-comment:first-child {
	border-top: 0;
}
.user-comment-wrapper {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}
.comment-content {
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 16px;
	background: #f8fafc;
}
.tpl-comment-author {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	color: #111827;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.tpl-comment-timestamp {
	margin-top: 2px;
	color: #7b8798;
	font-size: 12px;
	font-weight: 800;
}
.tpl-comment-text {
	margin-top: 10px;
	color: #334155;
	font-size: 14px;
	line-height: 1.65;
	overflow-wrap: anywhere;
	white-space: pre-wrap;
}
.comment-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}
.comment-action-left,
.comment-action-right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.comment-actions a,
.tpl-btn-show-replies,
.tpl-btn-hide-replies,
.tpl-comment-reply {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: #ffffff;
	color: #246bff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
}
.comment-actions a:hover,
.tpl-btn-show-replies:hover,
.tpl-btn-hide-replies:hover,
.tpl-comment-reply:hover {
	background: #eaf1ff;
}
.tpl-comment-children {
	display: grid;
	gap: 0;
	margin: 10px 0 0 56px;
	padding-left: 14px;
	border-left: 2px solid #dce5f2;
}
.tpl-comment-children .tpl-user-comment {
	padding: 10px 0;
}
.tpl-comment-children .user-comment-wrapper {
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 10px;
}
.tpl-comment-children .user-comment-avatar,
.tpl-comment-children img.tpl-user-comment-avatar {
	width: 36px;
	height: 36px;
}
.tpl-reply-form-wrapper {
	margin: 10px 0 0 56px;
}
.comment-reply-wrapper,
.tpl-reply-form {
	display: grid;
	gap: 8px;
	padding: 10px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, .08);
}
.comment-reply-wrapper .post-comment-btn-wrapper,
.tpl-reply-form .post-comment-btn-wrapper {
	gap: 8px;
}
#tpl-btn-load-more-comments {
	width: fit-content;
	margin: 0 auto 18px;
	background: #edf2f8;
	color: #27344d;
	box-shadow: none;
}
#tpl-btn-load-more-comments:hover {
	background: #e4eeff;
	color: #246bff;
	box-shadow: none;
}

.platform-footer {
	margin-left: 0;
	background: #ffffff;
	border-top: 1px solid rgba(15, 23, 42, .1);
	color: #172033;
	transition: margin-left var(--transition-fast);
}
body.sidebar-collapsed .platform-footer { margin-left: 0; }
.platform-footer__inner {
	width: min(1320px, calc(100vw - 28px));
	margin: 0 auto;
	padding: 18px 0 22px;
}
.footer-brand {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	margin-bottom: 22px;
}
.footer-brand p {
	margin: 0;
	max-width: 820px;
	color: #4b5b73;
	line-height: 1.65;
	font-size: 14px;
}
.footer-tagline {
	margin: 10px 0 0 !important;
	color: #246bff !important;
	font-size: 13px !important;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.footer-category-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 0 18px;
	border-top: 0;
	border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.footer-category-strip a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f3f6fb;
	color: #27344d;
	text-decoration: none;
	font-size: 13px;
	font-weight: 900;
}
.footer-category-strip a:hover,
.footer-category-strip a:focus-visible {
	background: #e4eeff;
	color: #246bff;
}
.footer-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	padding: 24px 0 20px;
}
.footer-links h2 {
	margin: 0 0 10px;
	color: #111827;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .07em;
	font-weight: 950;
}
.footer-links a, .footer-links button {
	display: block;
	width: fit-content;
	margin: 8px 0;
	border: 0;
	background: transparent;
	padding: 0;
	color: #4b5b73;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.25;
}
.footer-links a:hover, .footer-links button:hover,
.footer-links a:focus-visible, .footer-links button:focus-visible {
	color: #246bff;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(15, 23, 42, .08);
	color: #64748b;
	font-size: 13px;
}
.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
}
.footer-bottom nav a {
	color: #4b5b73;
	text-decoration: none;
	font-weight: 850;
}
.footer-bottom nav a:hover,
.footer-bottom nav a:focus-visible {
	color: #246bff;
}
.footer-bottom p { margin: 0; }

.user-page {
	background: #f6f8fc !important;
	color: #172033 !important;
	min-height: calc(100vh - var(--header-h));
}
.user-page .container {
	width: min(1180px, calc(100vw - 28px));
	margin: 0 auto;
}
.user-page .single-title,
.user-page .section-title,
.profile-username {
	color: #111827 !important;
}
.user-page .section {
	background: #ffffff !important;
	color: #172033 !important;
	border: 1px solid rgba(15, 23, 42, .09) !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
}
.user-page input,
.user-page textarea,
.user-page select {
	background: #ffffff !important;
	color: #172033 !important;
	border-color: rgba(15, 23, 42, .14) !important;
}
.user-page .profile-comment-item {
	background: #ffffff !important;
	color: #172033 !important;
	border: 1px solid #e2e8f0 !important;
}
.user-page .comment-text {
	color: #334155 !important;
}
.user-page .text-secondary,
.user-page .comment-date {
	color: #64748b !important;
}
.user-page .progress {
	background: #e2e8f0 !important;
}

.mobile-bottom-nav { display: none; }
.drawer-backdrop { display: none; }
.consent-panel[hidden] { display: none; }
.consent-panel {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	align-items: end;
	justify-content: center;
	padding: 18px;
	background: rgba(0,0,0,.48);
}
.consent-panel__dialog {
	width: min(680px, 100%);
	padding: 22px;
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}
.consent-panel__dialog h2 { margin: 0 0 8px; }
.consent-panel__dialog p { color: var(--color-muted); line-height: 1.6; }
.consent-panel__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-panel__actions button {
	min-height: 44px;
	border: 0;
	border-radius: 999px;
	padding: 0 16px;
	background: var(--color-accent);
	color: #04110c;
	font-weight: 900;
	cursor: pointer;
}
.consent-panel__actions button:nth-child(2) { background: var(--color-surface-2); color: var(--color-text); }

@media (max-width: 1180px) {
	:root { --sidebar-w: var(--sidebar-collapsed-w); }
	.sidebar-title, .sidebar-link__label { display: none; }
	.sidebar-link { justify-content: center; }
	.game-mosaic { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.home-redesign { width: min(100% - 22px, 1180px); }
	.home-compact-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
	.home-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.game-play-grid { grid-template-columns: 1fr; }
	.game-play-next {
		position: static;
	}
	.game-play-next__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.game-next-card {
		grid-template-columns: 48px minmax(0, 1fr);
	}
	.game-next-card img {
		width: 48px;
		height: 48px;
	}
	.footer-brand {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.home-showcase {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.home-showcase__feature { min-height: 240px; }
	.home-showcase__rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 0 10px 10px;
	}
	.home-compact-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.home-seo-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	:root {
		--header-h: 58px;
	}
	.platform-header {
		grid-template-columns: auto 1fr auto;
		height: var(--header-h);
		padding: 7px 10px;
		gap: 8px;
	}
	.platform-menu { display: none; }
	.desktop-sidebar-toggle { display: none; }
	.mobile-drawer-toggle { display: none; }
	.platform-logo {
		max-width: min(190px, calc(100vw - 116px));
	}
	.platform-header .platform-logo img {
		max-width: 100%;
		max-height: 28px;
	}
	.platform-search {
		order: 5;
		grid-column: 1 / -1;
		max-width: none;
		display: none;
	}
	body.search-open .platform-search { display: block; }
	.platform-actions {
		gap: 4px;
		justify-self: end;
	}
	.platform-actions .relative > button {
		min-width: 40px;
		justify-content: center;
		padding: 4px !important;
	}
	.platform-actions .relative > div[x-show] {
		right: 0 !important;
		width: min(220px, calc(100vw - 20px)) !important;
	}
	.platform-actions .icon-button:nth-child(1),
	.platform-actions .icon-button:nth-child(2),
	.platform-actions .login-button { display: none; }
	.platform-sidebar {
		top: 0;
		width: min(320px, 86vw);
		transform: translateX(-105%);
		z-index: 110;
		padding-top: 22px;
	}
	body.drawer-open .platform-sidebar { transform: translateX(0); }
	body.drawer-open .drawer-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 100;
		background: rgba(0, 0, 0, .55);
	}
	.sidebar-title, .sidebar-link__label { display: inline; }
	.sidebar-link { justify-content: flex-start; }
	.platform-main-wrap, .platform-footer, body.sidebar-collapsed .platform-main-wrap, body.sidebar-collapsed .platform-footer {
		margin-left: 0;
	}
	.page-container {
		width: min(100% - 18px, var(--content-max));
		padding-top: 14px;
		padding-bottom: 88px;
	}
	.contact-support-grid {
		grid-template-columns: 1fr;
	}
	.static-content,
	.contact-form,
	.contact-support-card {
		padding: 18px;
		border-radius: var(--radius-md);
	}
	.game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.game-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.game-card--large { grid-column: span 2; grid-row: span 1; }
	.game-section__header { align-items: flex-start; }
	.home-redesign {
		width: min(100% - 14px, var(--content-max));
		padding-top: 8px;
	}
	.home-showcase {
		grid-template-columns: 1fr;
		min-height: 0;
		border-radius: 12px;
	}
	.home-showcase__feature {
		min-height: 220px;
		padding: 18px;
		background-image: linear-gradient(180deg, rgba(5, 10, 21, .28) 0%, rgba(5, 10, 21, .88) 100%), var(--hero-thumb);
	}
	.home-showcase__title { font-size: clamp(24px, 8vw, 34px); }
	.home-showcase__featured-name {
		font-size: 11px;
	}
	.home-showcase__copy { font-size: 12px; }
	.home-showcase__rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 0 8px 8px;
	}
	.home-showcase__mini { min-height: 64px; }
	.home-showcase__mini img { min-height: 64px; }
	.home-section-header {
		flex-direction: row;
		align-items: center;
	}
	.home-section-header h2 { font-size: 16px; }
	.home-compact-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
	}
	.home-redesign .game-card {
		border-radius: 10px;
	}
	.home-redesign .game-card__title {
		font-size: 9.5px;
	}
	.home-redesign .game-card__body {
		padding: 18px 5px 5px;
	}
	.home-redesign .game-card__favorite {
		opacity: 1;
		transform: none;
		width: 24px;
		height: 24px;
	}
	.home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
	.home-category-tile {
		min-height: 40px;
		padding: 8px;
		font-size: 11.5px;
	}
	.home-quick-links {
		gap: 7px;
		margin-inline: -2px;
		padding-bottom: 10px;
	}
	.home-quick-links a {
		min-height: 32px;
		padding: 0 10px;
		font-size: 11.5px;
	}
	.home-seo-panel {
		margin-top: 20px;
		padding: 18px;
		border-radius: 12px;
	}
	.home-seo-grid {
		gap: 12px;
	}
	.home-seo-grid > div {
		padding: 14px;
	}
	.home-faq summary {
		padding: 12px;
	}
	.home-faq details p {
		padding: 0 12px 12px;
	}
	.platform-footer__inner {
		width: min(100% - 24px, var(--content-max));
		padding-bottom: 96px;
	}
	.footer-brand {
		gap: 14px;
	}
	.footer-category-strip {
		padding: 14px 0;
		gap: 7px;
	}
	.footer-category-strip a {
		min-height: 32px;
		padding: 0 10px;
		font-size: 12px;
	}
	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
	.footer-bottom {
		align-items: flex-start;
	}
	.mobile-bottom-nav {
		position: fixed;
		z-index: 75;
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 2px;
		padding: 6px max(6px, env(safe-area-inset-left)) max(6px, env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-right));
		background: color-mix(in srgb, var(--color-bg) 92%, transparent);
		border-top: 1px solid var(--color-border);
		backdrop-filter: blur(18px);
	}
	.mobile-bottom-nav a {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		padding: 0 3px;
		border-radius: var(--radius-sm);
		color: var(--color-muted);
		text-decoration: none;
		font-size: 11px;
		font-weight: 850;
		line-height: 1.05;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.game-detail-header { display: grid; }
	.game-action-bar { justify-content: flex-start; }
	.game-detail-layout { grid-template-columns: 1fr; }
	.game-launcher { aspect-ratio: 4 / 3; }
	.game-play-container {
		width: min(100% - 12px, var(--content-max));
		padding-top: 7px;
	}
	.game-breadcrumb {
		margin: 0 0 8px;
		padding: 0 2px 2px;
		overflow-x: auto;
		flex-wrap: nowrap;
		white-space: nowrap;
		font-size: 12px;
		scrollbar-width: none;
	}
	.game-breadcrumb::-webkit-scrollbar {
		display: none;
	}
	.game-stage-card {
		border-radius: 14px;
	}
	.game-stage-header {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 11px;
	}
	.game-stage-header .page-eyebrow {
		font-size: 10px;
	}
	.game-stage-header h1 {
		font-size: clamp(21px, 6.8vw, 28px);
		line-height: 1.05;
	}
	.game-play-shell .game-action-bar {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 7px;
		width: 100%;
	}
	.game-play-shell .game-action-button {
		min-width: 0;
		min-height: 34px;
		padding: 0 8px;
		font-size: 10.5px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.game-play-shell .game-action-button {
		gap: 4px;
	}
	.game-play-shell .game-action-button svg {
		width: 14px;
		height: 14px;
	}
	.game-play-shell .game-detail-meta span {
		padding: 6px 8px;
		font-size: 11px;
	}
	.game-play-shell .game-launcher {
		min-height: clamp(220px, 62vw, 280px);
	}
	.game-poster__overlay {
		gap: 9px;
		padding: 14px;
	}
	.game-poster__overlay p,
	.game-poster p {
		max-width: 260px;
		font-size: 12px;
		line-height: 1.4;
	}
	.game-play-next__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.game-play-shell .game-detail-layout {
		grid-template-columns: 1fr;
	}
	.game-play-shell .info-panel {
		padding: 14px;
	}
	.game-guide__hero {
		grid-template-columns: 1fr;
		padding: 12px;
	}
	.game-guide__hero img {
		min-height: 160px;
		max-height: 210px;
	}
	.game-guide__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
	.game-guide__section--split {
		grid-template-columns: 1fr;
	}
	.game-guide__summary {
		font-size: 14px;
	}
	.single-game__comment > h2 {
		padding: 14px;
	}
	#comment-form,
	.comment-require-login-wrapper {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
		padding: 14px;
	}
	.comment-profile-avatar,
	.user-comment-avatar,
	.comment-profile-avatar img,
	.user-comment-avatar img,
	img.tpl-user-comment-avatar {
		width: 38px;
		height: 38px;
	}
	#tpl-comment-list {
		padding: 0 14px 14px;
	}
	.user-comment-wrapper {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
	}
	.comment-content {
		padding: 11px;
		border-radius: 14px;
	}
	.comment-actions {
		align-items: flex-start;
	}
	.tpl-comment-children,
	.tpl-reply-form-wrapper {
		margin-left: 24px;
	}
}

@media (max-width: 480px) {
	body.platform-body {
		font-size: 14px;
	}
	.platform-header {
		padding-inline: 9px;
	}
	.platform-logo {
		max-width: min(178px, calc(100vw - 106px));
	}
	.home-showcase__rail { display: none; }
	.home-showcase__feature { min-height: 205px; }
	.home-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.home-category-grid { grid-template-columns: 1fr; }
	.home-showcase__actions { gap: 8px; }
	.home-primary-action,
	.home-secondary-action {
		min-height: 36px;
		padding: 0 13px;
		font-size: 12px;
	}
	.home-seo-panel {
		padding: 15px;
	}
	.home-seo-panel h2 {
		font-size: 22px;
	}
	.home-seo-panel h3,
	.home-faq h2 {
		font-size: 17px;
	}
	.home-seo-panel p,
	.home-seo-panel li {
		font-size: 13px;
	}
	.home-seo-links a {
		min-height: 28px;
		padding: 0 9px;
		font-size: 12px;
	}
	.game-play-shell .game-launcher {
		min-height: clamp(210px, 64vw, 245px);
	}
	.game-play-next__list {
		grid-template-columns: 1fr;
	}
	.game-stage-tags {
		padding: 9px 10px 12px;
	}
	.game-play-shell .play-now-button {
		min-height: 42px;
		padding: 0 20px;
		font-size: 13px;
	}
	.game-play-shell .game-detail-meta {
		gap: 6px;
	}
	.game-play-shell .game-detail-meta span {
		font-size: 10.5px;
	}
	.mobile-bottom-nav a {
		min-height: 40px;
		font-size: 10px;
	}
	#comment-form,
	.comment-require-login-wrapper,
	.user-comment-wrapper {
		grid-template-columns: 1fr;
	}
	.comment-profile-avatar,
	.user-comment-avatar {
		display: none;
	}
	.tpl-comment-children,
	.tpl-reply-form-wrapper {
		margin-left: 0;
		padding-left: 10px;
	}
	.footer-links {
		grid-template-columns: 1fr;
	}
	.footer-bottom {
		display: grid;
	}
	.footer-bottom nav {
		display: grid;
		gap: 8px;
	}
	.comment-actions a,
	.tpl-btn-show-replies,
	.tpl-btn-hide-replies,
	.tpl-comment-reply {
		min-height: 28px;
		padding: 0 9px;
	}
}

@media (max-width: 360px) {
	.platform-logo {
		max-width: 158px;
	}
	.platform-header .platform-logo img {
		max-height: 26px;
	}
	.platform-actions .relative > button {
		min-width: 36px;
	}
	.platform-actions .relative > button img {
		width: 30px !important;
		height: 30px !important;
	}
	.game-play-container {
		width: min(100% - 8px, var(--content-max));
	}
	.game-stage-header {
		padding: 10px;
	}
	.game-stage-header h1 {
		font-size: 20px;
	}
	.game-play-shell .game-action-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.game-play-shell .game-action-button {
		font-size: 11px;
	}
	.game-play-shell .game-launcher {
		min-height: 205px;
	}
	.game-poster__overlay p,
	.game-poster p {
		max-width: 230px;
		font-size: 11.5px;
	}
	.mobile-bottom-nav {
		padding-inline: 4px;
	}
	.mobile-bottom-nav a {
		font-size: 9.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}
