/* ==========================================================================
   Template 33 — dark igaming affiliate theme (original, analyze mode).
   Near-black surface, glass topbar, mint primary + magenta secondary accent,
   1200px container, 22px card radii. Blocks: topbar/drawer, bonus hero with
   offer cards, three-up promos, game tile grid, crash band, prose content,
   toplist, review info card, landing, footer, sticky mobile CTA.
   ========================================================================== */

:root {
	--ink:        #0b0d14; /* page background */
	--ink-2:      #0e1017; /* deep surfaces: footer, tiles */
	--glass-a:    rgba(255, 255, 255, .06);
	--glass-b:    rgba(255, 255, 255, .03);
	--line:       rgba(255, 255, 255, .08);
	--line-2:     rgba(255, 255, 255, .14);
	--mint:       #29d99c; /* primary accent / CTA */
	--mint-h:     #37efb0;
	--mint-ink:   #07120d; /* text on mint */
	--magenta:    #f21fa4; /* secondary accent */
	--gold:       #ffd83d;
	--text:       #e6e6e7;
	--text-2:     #a7adbb;
	--dim:        #7c8496;
	--radius:     22px;
	--radius-md:  14px;
	--radius-sm:  10px;
	--topbar-h:   76px;
	--maxw:       1200px;
	--shadow:     0 12px 40px rgba(0, 0, 0, .35);
	--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.bl {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--text); margin: 0; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-bottom: 14px;
}

.grad {
	/* Violet midpoint keeps the sweep saturated — a plain magenta→mint blend
	   greys out through the middle of a long word. */
	background: linear-gradient(95deg, #f21fa4 8%, #a855f7 46%, #29d99c 92%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* --------------------------------------------------------- buttons ------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .18s, border-color .18s, color .18s, transform .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--mint); color: var(--mint-ink); }
.btn-primary:hover { background: var(--mint-h); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn-outline { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-outline:hover { border-color: var(--mint); color: var(--mint); }
.btn-light { background: #f4f5f7; color: #10131c; }
.btn-light:hover { background: #fff; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------- topbar ------- */

.topbar {
	position: sticky;
	top: 0;
	z-index: 100; /* above the drawer, so the burger stays tappable as the X */
	height: var(--topbar-h);
	display: flex;
	align-items: center;
	background: rgba(12, 14, 21, .9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.topbar__row { display: flex; align-items: center; gap: 22px; }
/* Mark only — no wordmark anywhere in the header. */
.brand { display: inline-flex; align-items: center; }
.brand img { width: 40px; height: 40px; transition: transform .2s; }
.brand:hover img { transform: scale(1.05); }

.mainnav { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.mainnav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-2);
	transition: background-color .18s, color .18s;
}
.mainnav__link svg { opacity: .75; }
.mainnav__link:hover { background: var(--glass-a); color: var(--text); }
.mainnav__link:hover svg { opacity: 1; color: var(--mint); }

.topbar__actions { display: flex; align-items: center; gap: 10px; }

/* Burger — gradient ring on hover/open, bars morph into an X and the middle
   bar collapses into the crossing point. */
.burger {
	position: relative;
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--glass-b);
	cursor: pointer;
	overflow: hidden;
	transition: border-color .25s, background-color .25s;
}
.burger::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, var(--magenta), var(--mint));
	opacity: 0;
	transition: opacity .25s;
}
.burger:hover { border-color: var(--line-2); }
.burger[aria-expanded="true"]::before { opacity: .18; }
.burger[aria-expanded="true"] { border-color: rgba(41, 217, 156, .5); }
.burger span {
	position: absolute;
	left: 13px;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform .32s cubic-bezier(.6, -.28, .3, 1.4), opacity .18s, width .32s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; width: 14px; }
.burger span:nth-child(3) { top: 28px; }
.burger:hover span:nth-child(2) { width: 20px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------- drawer ------- */

/* Slides in below the sticky topbar — the burger stays visible as the X. */
.drawer { position: fixed; inset: var(--topbar-h) 0 0 0; z-index: 90; }
.drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 6, 11, .7);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	animation: bl-fade .25s ease both;
}
.drawer__panel {
	position: absolute;
	inset: 0 auto 0 0;
	width: min(320px, 86vw);
	animation: bl-slide .32s cubic-bezier(.22, .8, .28, 1) both;
	padding: 22px 18px 26px;
	background: var(--ink-2);
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 18px;
	overflow-y: auto;
}
.drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.drawer__nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	font-weight: 600;
	color: var(--text-2);
}
.drawer__nav a:hover { background: var(--glass-a); color: var(--text); }
.drawer__nav a svg { color: var(--mint); opacity: .85; }
/* Links cascade in behind the sliding panel. */
.drawer__nav a { animation: bl-rise .34s cubic-bezier(.22, .8, .28, 1) both; }
.drawer__nav a:nth-child(1) { animation-delay: .06s; }
.drawer__nav a:nth-child(2) { animation-delay: .10s; }
.drawer__nav a:nth-child(3) { animation-delay: .14s; }
.drawer__nav a:nth-child(4) { animation-delay: .18s; }
.drawer__nav a:nth-child(5) { animation-delay: .22s; }
.drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

@keyframes bl-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bl-slide { from { transform: translateX(-100%); } to { transform: none; } }
@keyframes bl-rise { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	.drawer__backdrop, .drawer__panel, .drawer__nav a,
	.hero__aurora, .livebadge i, .offer { animation: none; }
	.ticker__track { animation-play-state: paused; }
	.burger span, .btn, .tile, .seg__thumb, .seg__btn { transition: none; }
}

/* --------------------------------------------------------- hero --------- */

.hero { position: relative; overflow: hidden; padding: 56px 0 0; }

/* Layered aurora backdrop — three drifting colour fields. */
.hero__aurora {
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 150%;
	pointer-events: none;
	background:
		radial-gradient(46% 40% at 18% 22%, rgba(242, 31, 164, .30), transparent 68%),
		radial-gradient(40% 38% at 82% 12%, rgba(41, 217, 156, .22), transparent 66%),
		radial-gradient(34% 34% at 62% 58%, rgba(124, 92, 255, .18), transparent 70%);
	filter: blur(24px);
	animation: bl-drift 22s ease-in-out infinite alternate;
}
/* Faint technical grid, faded out towards the edges. */
.hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(70% 62% at 50% 34%, #000 35%, transparent 100%);
	mask-image: radial-gradient(70% 62% at 50% 34%, #000 35%, transparent 100%);
}
@keyframes bl-drift {
	from { transform: translate3d(-2%, -1%, 0) scale(1); }
	to   { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

.hero__wrap {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
	align-items: center;
	gap: 48px;
	padding-bottom: 46px;
}

.livebadge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 15px 7px 11px;
	margin-bottom: 20px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: var(--glass-b);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
}
.livebadge i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mint);
	box-shadow: 0 0 0 0 rgba(41, 217, 156, .55);
	animation: bl-pulse 2s ease-out infinite;
}
@keyframes bl-pulse {
	70%  { box-shadow: 0 0 0 9px rgba(41, 217, 156, 0); }
	100% { box-shadow: 0 0 0 0 rgba(41, 217, 156, 0); }
}

.hero__title {
	font-size: clamp(34px, 4.6vw, 54px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.06;
	margin: 0 0 16px;
}
.hero__lead { max-width: 520px; color: var(--text-2); font-size: 17px; margin-bottom: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 26px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.hero__stats span { font-size: 13px; color: var(--dim); }
.hero__note { margin: 18px 0 0; max-width: 560px; font-size: 13px; line-height: 1.55; color: var(--dim); }

/* ------------------------------------------- switchable offer card ------ */

.switchcard {
	position: relative;
	padding: 18px;
	border: 1px solid var(--line-2);
	border-radius: var(--radius);
	background:
		linear-gradient(var(--glass-a), var(--glass-b)),
		rgba(12, 15, 23, .72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
}
.seg {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 4px;
	margin-bottom: 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(0, 0, 0, .3);
}
.seg__btn {
	position: relative;
	z-index: 1;
	padding: 9px 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--text-2);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: color .22s;
}
.seg__btn.is-active { color: var(--mint-ink); }
/* Sliding pill that trails the active tab. */
.seg__thumb {
	position: absolute;
	z-index: 0;
	top: 4px;
	left: 4px;
	width: calc(50% - 4px);
	height: calc(100% - 8px);
	border-radius: 999px;
	background: var(--mint);
	transition: transform .3s cubic-bezier(.4, 1.3, .5, 1);
}
.seg[data-active="1"] .seg__thumb { transform: translateX(100%); }

.offer { animation: bl-offer .3s ease both; }
.offer[hidden] { display: none; }
@keyframes bl-offer { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.offer__tag {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--dim);
	margin-bottom: 6px;
}
.offer__sum { display: block; font-size: 30px; font-weight: 900; letter-spacing: -.02em; line-height: 1.1; }
.offer__pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.pill {
	padding: 6px 13px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: var(--glass-b);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
}
.pill--mint { border-color: rgba(41, 217, 156, .38); background: rgba(41, 217, 156, .12); color: var(--mint); font-weight: 700; }

/* Five-deposit ladder — connected chips. */
.stepper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	counter-reset: step;
}
.stepper li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 10px 2px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--glass-b);
}
.stepper b {
	display: grid;
	place-items: center;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(41, 217, 156, .14);
	color: var(--mint);
	font-size: 12px;
	font-weight: 800;
}
.stepper span { font-size: 12px; font-weight: 700; color: var(--text-2); }
.stepper li:first-child { border-color: rgba(41, 217, 156, .4); background: rgba(41, 217, 156, .08); }

/* ------------------------------------------------------- live ticker ---- */

.ticker {
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(8, 10, 16, .6);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track {
	display: flex;
	width: max-content;
	animation: bl-marquee 34s linear infinite;
}
/* Two identical groups; the 21px side padding makes the seam gap match the
   42px gap between items, so the loop point is invisible. */
.ticker__group {
	display: flex;
	align-items: center;
	gap: 42px;
	padding: 12px 21px;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
}
.ticker__item b { color: var(--text); font-weight: 800; }
.ticker__item .dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--magenta);
}
/* One group out of four — see the note in article.php. */
@keyframes bl-marquee { from { transform: none; } to { transform: translateX(-25%); } }

/* --------------------------------------------------------- promos ------- */

.promos { padding: 44px 0 8px; }
.promos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo {
	padding: 28px 24px 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(var(--glass-a), var(--glass-b));
	text-align: center;
}
.promo__title { font-size: 26px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 8px; }
.promo__lead { color: var(--text-2); font-size: 15px; margin-bottom: 18px; }

/* --------------------------------------------------------- games -------- */

.games { padding: 36px 0; }
.games__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 24px; align-items: start; }
.games__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.tile {
	position: relative;
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--ink-2);
	transition: border-color .18s, transform .18s;
}
.tile:hover { border-color: rgba(41, 217, 156, .5); transform: translateY(-2px); }
.tile img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform .35s ease;
}
.tile:hover img { transform: scale(1.04); }
/* Caption sits below the artwork — game art already carries its own title,
   so an overlay would double up on it. */
.tile__meta {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 9px 12px 11px;
	border-top: 1px solid var(--line);
	background: rgba(8, 10, 16, .85);
}
.tile__name { font-size: 14px; font-weight: 700; line-height: 1.3; }
.tile__prov { font-size: 12px; line-height: 1.3; color: var(--dim); }

.games__side {
	position: relative;
	overflow: hidden;
	padding: 26px 24px 28px;
	min-height: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(var(--glass-a), var(--glass-b));
}
.games__side .eyebrow { margin-bottom: 8px; }
.games__side-title { font-size: 22px; font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 10px; }
.games__side-lead { color: var(--text-2); font-size: 15px; margin-bottom: 20px; }
.games__side-art {
	position: absolute;
	right: -60px;
	bottom: -70px;
	width: 260px;
	height: 260px;
	border-radius: 46px;
	transform: rotate(18deg);
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .16) 12px, transparent 13px),
		radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .16) 12px, transparent 13px),
		radial-gradient(circle at 30% 70%, rgba(255, 255, 255, .16) 12px, transparent 13px),
		radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .16) 12px, transparent 13px),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .16) 12px, transparent 13px),
		linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
	pointer-events: none;
}

/* --------------------------------------------------------- crash band --- */

.crashband { padding: 18px 0 26px; }
.crashband__card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 30px 34px;
	min-height: 130px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		radial-gradient(600px 200px at 78% 50%, rgba(242, 31, 164, .18), transparent 70%),
		linear-gradient(var(--glass-a), var(--glass-b));
}
.crashband__logo {
	font-size: 34px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: -.03em;
	color: #fff;
	text-shadow: 0 0 22px rgba(242, 31, 164, .55);
}
.crashband__cta {
	padding: 12px 28px;
	border-radius: 999px;
	background: var(--magenta);
	color: #fff;
	font-weight: 800;
	letter-spacing: .06em;
	box-shadow: 0 10px 30px rgba(242, 31, 164, .35);
}
.crashband__jet {
	position: relative;
	width: 220px;
	height: 44px;
	flex: none;
}
/* Vapour trail — thins out towards the tail. */
.crashband__jet::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 150px;
	height: 6px;
	transform: translateY(-50%);
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(242, 31, 164, .65));
}
/* Swept-wing silhouette pointing right. */
.crashband__jet::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 92px;
	height: 40px;
	transform: translateY(-50%);
	background: var(--magenta);
	clip-path: polygon(100% 50%, 62% 34%, 58% 0, 46% 4%, 40% 36%, 6% 42%, 0 50%, 6% 58%, 40% 64%, 46% 96%, 58% 100%, 62% 66%);
	filter: drop-shadow(0 0 16px rgba(242, 31, 164, .5));
}

/* --------------------------------------------------------- content ------ */

.content { padding: 32px 0 8px; }
.prose { max-width: 100%; }
.page-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 18px; }
.prose h2 { font-size: 32px; letter-spacing: .01em; margin: 34px 0 13px; }
.prose h3 { font-size: 22px; margin: 26px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--text); }
.prose a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
	margin: 20px 0;
	padding: 16px 20px;
	border-left: 3px solid var(--mint);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: var(--glass-b);
	color: var(--text-2);
}
.prose img { border-radius: var(--radius-md); margin: 18px 0; }
.prose strong { color: #fff; }

.table-scroll { overflow-x: auto; margin: 0 0 16px; -webkit-overflow-scrolling: touch; }
.prose table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--glass-b);
	font-size: 15px;
}
.prose th, .prose td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.prose th { background: var(--glass-a); font-weight: 700; white-space: nowrap; }
.prose tr:last-child td { border-bottom: 0; }

.content__legal {
	margin: 26px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	color: var(--dim);
}

/* --------------------------------------------------------- toplist ------ */

.toplist { padding: 30px 0 10px; }
.toplist__head { margin-bottom: 22px; }
.toplist__items { display: flex; flex-direction: column; gap: 14px; }
.trow {
	display: grid;
	grid-template-columns: 56px minmax(0, 1.3fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(var(--glass-a), var(--glass-b));
	transition: border-color .18s;
}
.trow:hover { border-color: rgba(41, 217, 156, .45); }
.trow__rank {
	width: 46px; height: 46px;
	display: grid; place-items: center;
	border-radius: 14px;
	background: rgba(41, 217, 156, .12);
	border: 1px solid rgba(41, 217, 156, .32);
	color: var(--mint);
	font-size: 19px;
	font-weight: 900;
}
.trow--top .trow__rank { background: rgba(255, 216, 61, .14); border-color: rgba(255, 216, 61, .38); color: var(--gold); }
.trow__name { font-size: 19px; font-weight: 800; line-height: 1.25; margin-bottom: 4px; }
.trow__bonus { font-size: 15px; color: var(--text-2); }
.trow__rating { display: flex; align-items: center; gap: 10px; }
.trow__score { font-size: 22px; font-weight: 800; color: var(--mint); }
.trow__stars { color: var(--gold); font-size: 14px; letter-spacing: .12em; }
.trow__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag {
	padding: 4px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--glass-b);
	font-size: 12px;
	font-weight: 600;
	color: var(--text-2);
}

/* --------------------------------------------------------- review ------- */

.review { padding: 30px 0 10px; }
.reviewcard {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
	gap: 26px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(var(--glass-a), var(--glass-b));
	margin-bottom: 26px;
}
.reviewcard__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 10px; }
.reviewcard__lead { color: var(--text-2); margin-bottom: 18px; }
.reviewcard__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.reviewcard__facts li {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--glass-b);
}
.reviewcard__facts b { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.reviewcard__aside { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.scorebox {
	width: 100%;
	padding: 20px;
	border: 1px solid rgba(41, 217, 156, .3);
	border-radius: var(--radius-md);
	background: rgba(41, 217, 156, .1);
	text-align: center;
}
.scorebox strong { display: block; font-size: 42px; font-weight: 900; color: var(--mint); line-height: 1; }
.scorebox span { font-size: 13px; color: var(--text-2); }

/* --------------------------------------------------------- landing ------ */

.landing { position: relative; overflow: hidden; padding: 60px 0; text-align: center; }
.landing__inner { max-width: 780px; margin: 0 auto; }
.landing .prose h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 14px; }
.landing .prose h2 { font-size: clamp(20px, 3vw, 28px); color: var(--mint); margin: 0 0 18px; }
.landing .prose p { color: var(--text-2); font-size: 17px; }
.landing__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.landing__trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* --------------------------------------------------------- plain page --- */

.pagebody { padding: 34px 0 10px; }
.pagebody .prose { max-width: 860px; }

/* --------------------------------------------------------- footer ------- */

.site-footer { margin-top: 46px; background: var(--ink-2); border-top: 1px solid var(--line); }
.footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-top: 46px;
	padding-bottom: 38px;
}
.footer__col { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer__col h4 {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 6px;
}
.footer__col a { font-size: 15px; color: var(--text-2); }
.footer__col a:hover { color: var(--mint); }
.paychips { display: flex; flex-wrap: wrap; gap: 8px; }
.paychip {
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--glass-b);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
}

.footer__legal { border-top: 1px solid var(--line); padding: 20px 0 26px; }
.footer__legal-row { display: flex; align-items: flex-start; gap: 14px; }
.footer__legal-row p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--dim); }
.agemark {
	flex: none;
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border: 1px solid var(--line-2);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	color: var(--text-2);
}

/* --------------------------------------------------------- sticky CTA --- */

.stickycta {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 70;
	display: none;
	gap: 10px;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(10, 12, 18, .94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--line);
}

/* --------------------------------------------------------- responsive --- */

@media (max-width: 1080px) {
	.mainnav { display: none; }
	.burger { display: flex; }
	.brand { margin-right: auto; }
	.games__layout { grid-template-columns: minmax(0, 1fr); }
	.games__side { min-height: 0; }
	.reviewcard { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
	.hero { padding: 36px 0 0; }
	.hero__wrap { grid-template-columns: minmax(0, 1fr); gap: 30px; padding-bottom: 34px; }
	.hero__lead { font-size: 16px; }
	.promos__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
	.footer__grid { grid-template-columns: repeat(2, 1fr); }
	.trow { grid-template-columns: 46px minmax(0, 1fr); gap: 14px; }
	.trow__rating { grid-column: 2; }
	.trow .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 720px) {
	body.bl { font-size: 15px; }
	.topbar__actions .btn-ghost { display: none; }
	.games__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.crashband__card { padding: 22px; min-height: 0; }
	.crashband__jet { display: none; }
	.crashband__logo { font-size: 26px; }
	.prose h2 { font-size: 25px; }
	.reviewcard { padding: 20px; }
	.reviewcard__facts { grid-template-columns: minmax(0, 1fr); }
	.stickycta { display: flex; }
	.site-footer { margin-bottom: 76px; }
}

@media (max-width: 460px) {
	.footer__grid { grid-template-columns: minmax(0, 1fr); }
	.hero__stats { gap: 18px; }
	.hero__actions .btn { width: 100%; }
	.stepper { gap: 4px; }
	.stepper span { font-size: 11px; }
}
