:root {
	--bg-1: #0d0f14;
	--bg-2: #151922;
	--bg-card: #1d2230;
	--bg-footer: #080a10;
	--gold: #00e676;
	--gold-lt: #39ff9a;
	--gold-dk: #00a854;
	--orange: #8b5cf6;
	--orange-dk: #6d28d9;
	--red: #e11d2e;
	--text: #fff;
	--muted: #9a9a9a;
	--line: #2a2f3d;
	--radius: 12px;
	--radius-sm: 8px;
	--radius-pill: 999px;
	--maxw: 1280px;
	--gap: 24px;
	--font-h: "Bebas Neue", Impact, sans-serif;
	--font-b: "Inter", system-ui, sans-serif;
	--font-n: "Montserrat", "Inter", sans-serif;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	max-width: 100vw;
	overflow-x: clip;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	background: var(--bg-1);
	color: var(--text);
	font: 16px / 1.6 var(--font-b);
}
img {
	max-width: 100%;
	display: block;
	height: auto;
}
a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.2s;
}
a:hover {
	color: var(--gold-lt);
}
h1,
h2,
h3,
h4 {
	font-family: var(--font-h);
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0 0 0.5em;
}
h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
h3 {
	font-size: clamp(1.15rem, 2vw, 1.4rem);
}
p {
	margin: 0 0 1em;
}
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
.hidden {
	display: none;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 11, 11, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.header__row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
	max-width: var(--maxw);
	margin: 0 auto;
	flex-wrap: wrap;
}
@media (min-width: 640px) {
	.header__row {
		gap: 24px;
		padding: 14px 20px;
		flex-wrap: nowrap;
	}
}
.logo {
	font-family: var(--font-h);
	font-size: 28px;
	letter-spacing: 0.04em;
	background: linear-gradient(180deg, #ffe27a 0%, #f5c842 45%, #c79a20 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 18px rgba(0, 230, 118, 0.25);
	white-space: nowrap;
}
.nav {
	display: flex;
	flex: 1 1 auto;
	gap: 28px;
	align-items: center;
	font-size: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.nav::-webkit-scrollbar {
	display: none;
}
.nav__link {
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.nav {
		flex: 1;
		gap: 22px;
		font-size: 16px;
		letter-spacing: 0.08em;
		overflow: visible;
		padding-bottom: 0;
		order: 0;
	}
}
.nav__link {
	color: #e8e8e8;
}
.nav__link:hover {
	color: var(--gold);
}
.nav__link--hot {
	position: relative;
}
.nav__link--hot::after {
	content: "HOT";
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--red);
	color: #fff;
	font: 800 8px / 1 var(--font-b);
	letter-spacing: 0.04em;
	padding: 2px 4px;
	border-radius: 3px;
	z-index: 2;
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}
.header__cta {
	margin-left: auto;
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 16px;
}
.lang {
	color: var(--muted);
	font-size: 13px;
	padding-left: 12px;
	border-left: 1px solid var(--line);
}
/* BTN */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font: 700 16px / 1 var(--font-b);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 12px 22px;
	border-radius: var(--radius-pill);
	border: 0;
	cursor: pointer;
	transition:
		transform 0.15s,
		box-shadow 0.2s;
	white-space: nowrap;
}
.btn--cta {
	background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
	animation: cta-glow 2.88s ease-in-out infinite;
}
@keyframes cta-glow {
	0%,
	100% {
		box-shadow:
			0 6px 20px rgba(139, 92, 246, 0.35),
			0 0 0 0 rgba(0, 230, 118, 0.25);
	}
	50% {
		box-shadow:
			0 6px 24px rgba(139, 92, 246, 0.42),
			0 0 22px 6px rgba(0, 230, 118, 0.22);
	}
}
.btn--cta:hover {
	animation-play-state: paused;
}
.btn--cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(139, 92, 246, 0.55);
	color: #fff;
}
.btn--ghost {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}
.btn--ghost:hover {
	background: rgba(0, 230, 118, 0.1);
}
.btn--lg {
	padding: 16px 36px;
	font-size: 16px;
}
.btn--sm {
	padding: 9px 16px;
	font-size: 16px;
}

/* HERO */
.hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse at 70% 40%,
			rgba(0, 230, 118, 0.22) 0%,
			transparent 55%
		),
		linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
}
.hero__bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 45%;
	background-image: url(../img/hero-vault.webp);
	background-size: cover;
	background-position: center right;
	opacity: 1;
	filter: brightness(1.4) saturate(1.15);
	z-index: 0;
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.4) 25%,
		#000 60%
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 0, 0, 0.4) 25%,
		#000 60%
	);
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 60% 80% at 80% 50%,
			rgba(0, 230, 118, 0.18) 0%,
			transparent 70%
		),
		linear-gradient(
			90deg,
			#0b0b0b 0%,
			rgba(11, 11, 11, 0.5) 35%,
			rgba(11, 11, 11, 0) 70%,
			transparent 100%
		);
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding: 80px 20px;
	max-width: var(--maxw);
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}
.hero__text {
	min-width: 0;
}
@media (min-width: 900px) {
	.hero__inner {
		grid-template-columns: 1.2fr minmax(280px, 360px);
		gap: 48px;
	}
}
.hero__kicker {
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.hero h1 {
	max-width: 640px;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.hero__sub {
	font-size: 16px;
	color: rgba(216, 216, 216, 0.85);
	max-width: 560px;
	margin-bottom: 28px;
}
.hero__usp {
	display: inline-block;
	color: var(--gold-lt);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 72px;
}
.hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* QUICK NAV */
.qnav {
	background: #0a0a0a;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.qnav__row {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	gap: 4px;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 4px 8px;
}
.qnav__row::-webkit-scrollbar {
	display: none;
}
.qnav__item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 18px;
	color: #cfcfcf;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	min-width: 110px;
	border-right: 1px solid var(--line);
	position: relative;
	transition: color 0.2s;
}
.qnav__item:hover {
	color: var(--gold);
}
.qnav__item svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.qnav__badge {
	position: absolute;
	top: 4px;
	right: 6px;
	background: var(--red);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 3px 6px;
	border-radius: 10px;
	box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7);
	animation: qnav-pulse 1.8s ease-out infinite;
}
@keyframes qnav-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.55);
		transform: scale(1);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(255, 59, 92, 0);
		transform: scale(1.06);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 59, 92, 0);
		transform: scale(1);
	}
}

/* SECTION */
.section {
	padding: 56px 0;
}
.section__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px 48px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.section__head h2 {
	margin: 0;
	line-height: 1.1;
}
.section__head p {
	color: var(--muted);
	margin: 0;
	padding-top: 4px;
	max-width: 640px;
}

/* BIG WINS */
.bigwins {
	background: var(--bg-2);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 14px 0;
	overflow: hidden;
}
.bigwins__track {
	display: flex;
	gap: 40px;
	animation: slide 40s linear infinite;
	white-space: nowrap;
}
.bigwins__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 16px;
}
.bigwins__item b {
	color: var(--gold);
	font-family: var(--font-n);
	font-weight: 800;
}
.bigwins__sep {
	display: none;
}
@keyframes slide {
	to {
		transform: translateX(-50%);
	}
}

/* CAROUSEL */
.carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 8px;
}
.carousel::-webkit-scrollbar {
	display: none;
}
.card-game {
	display: block;
	color: inherit;
	text-decoration: none;
	flex: 0 0 160px;
	scroll-snap-align: start;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}
.card-game:hover {
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px var(--gold),
		0 12px 30px rgba(0, 230, 118, 0.2);
}
.card-game__img {
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, #222, #444);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.card-game__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card-game__body {
	padding: 10px 12px;
}
.card-game__title {
	font: 700 13px / 1.3 var(--font-b);
	margin: 0 0 4px;
	color: #fff;
}
.card-game__meta {
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--muted);
	margin: 0;
}
.card-game__play {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s;
}
.card-game:hover .card-game__play {
	opacity: 1;
}

/* PROVIDERS */
.providers-carousel {
	overflow: hidden;
	display: flex;
	gap: 28px;
	mask-image: linear-gradient(
		90deg,
		transparent 0,
		#000 60px,
		#000 calc(100% - 60px),
		transparent 100%
	);
}
.providers-carousel:hover .providers {
	animation-play-state: paused;
}
.providers {
	list-style: none;
	padding: 8px 4px;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 28px;
	align-items: center;
	flex: 0 0 auto;
	animation: providers-scroll 40s linear infinite;
}
@keyframes providers-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - 28px));
	}
}
.providers__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--radius-sm);
	transition:
		transform 0.2s,
		background 0.2s;
}
.providers__item img {
	max-height: 36px;
	width: auto;
	height: auto;
	filter: brightness(0.95) contrast(1.05);
	opacity: 0.9;
	transition:
		opacity 0.2s,
		filter 0.2s;
}
.providers__item:hover {
	background: rgba(0, 230, 118, 0.08);
	transform: translateY(-2px);
}
.providers__item:hover img {
	opacity: 1;
	filter: none;
}

/* EXPLORE */
.explore {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.explore__card {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	display: block;
	transition: all 0.25s;
	color: inherit;
}
.explore__card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
	color: inherit;
}
.explore__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	border-radius: 10px;
	background: rgba(0, 230, 118, 0.1);
	color: var(--gold);
}
.explore__icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.explore__card h3 {
	color: var(--gold);
	margin-bottom: 8px;
	font-size: 1.05rem;
}
.explore__card p {
	color: var(--muted);
	font-size: 14px;
	margin: 0 0 14px;
}
.explore__card .arrow {
	color: var(--gold);
	font-weight: 700;
	font-size: 14px;
}

/* FEATURES */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 20px;
}
.feature {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	text-align: left;
}
.feature svg {
	width: 36px;
	height: 36px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.6;
	margin-bottom: 12px;
}
.feature h3 {
	margin-bottom: 6px;
	color: #fff;
}
.feature p {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

/* SEO BLOCK */
.seo {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}
.seo h2 {
	text-align: center;
	margin-bottom: 32px;
}
.seo h3 {
	color: var(--gold);
	margin-top: 32px;
	margin-bottom: 10px;
	text-transform: none;
	font-family: var(--font-h);
	letter-spacing: 0.02em;
}
.seo p {
	color: #d8d8d8;
	font-size: 16px;
	line-height: 1.75;
	max-width: 72ch;
}

/* FOOTER */
.footer {
	background: var(--bg-footer);
	border-top: 1px solid var(--line);
	padding: 48px 0 24px;
	margin-top: 40px;
}
.footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
	.footer__top {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px;
		align-items: start;
	}
}
.footer__brand .logo {
	display: block;
	height: 28px;
	line-height: 28px;
	margin: 0 0 16px;
	font-size: 26px;
}
.footer__desc {
	color: var(--muted);
	font-size: 16px;
	max-width: 280px;
}
.footer__nav h4 {
	font-family: var(--font-h);
	color: var(--gold);
	height: 28px;
	line-height: 28px;
	margin: 0 0 16px;
	font-size: 1.05rem;
	letter-spacing: 0.06em;
}
.footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__nav a {
	color: #cfcfcf;
	font-size: 16px;
}
.footer__nav a:hover {
	color: var(--gold);
}
.footer__providers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	justify-content: center;
}
.footer__providers img {
	width: 96px;
	height: 54px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	border-radius: 8px;
	object-fit: contain;
	filter: brightness(1.6);
	transition:
		border-color 0.2s,
		background 0.2s;
}
.footer__providers img:hover {
	border-color: var(--gold);
	background: rgba(255, 255, 255, 0.08);
	justify-content: center;
}
.footer__pays {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
	justify-content: center;
}
.pay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 54px;
	padding: 12px 18px;
	background: #fff;
	border-radius: 8px;
	color: var(--muted);
	font: 700 12px / 1 var(--font-b);
	letter-spacing: 0.04em;
}
.pay img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.pay--text {
	background: #121212;
	border: 1px solid var(--line);
	width: auto;
	height: auto;
	padding: 6px 12px;
}
.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
	padding-top: 18px;
}
.footer__badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.badge-18 {
	width: 34px;
	height: 34px;
	border: 2px solid var(--red);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font: 800 13px / 1 var(--font-b);
}
.badge {
	padding: 6px 12px;
	background: #121212;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.footer__disc {
	color: #777;
	font-size: 16px;
	line-height: 1.6;
	margin: 14px 0 4px;
}
.footer__copy {
	color: #555;
	font-size: 12px;
	letter-spacing: 0.04em;
	margin: 0;
}
/* UTILS */
.gold {
	color: var(--gold);
}
@media (max-width: 600px) {
	.hero {
		min-height: 480px;
	}
	.hero__inner {
		padding: 60px 20px;
	}
	.hero__bg {
		left: 0;
		opacity: 0.55;
	}
	.hero__bg::after {
		background: linear-gradient(
			180deg,
			rgba(11, 11, 11, 0.6) 0%,
			rgba(11, 11, 11, 0.85) 70%,
			#0b0b0b 100%
		);
	}
	.section {
		padding: 40px 0;
	}
}

/* PAGE HEAD (hero for inner pages) */
.phead {
	position: relative;
	padding: 80px 0 40px;
	background: linear-gradient(180deg, #141414 0%, var(--bg-1) 100%);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}
.phead__img {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.35;
}
.phead__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.phead__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 11, 11, 0.3) 0%, #0b0b0b 95%);
}
.phead__inner {
	position: relative;
	z-index: 1;
}
.phead h1 {
	font: 800 36px / 1 var(--font-h);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 14px;
}
.crumbs {
	font-size: 12px;
	color: #777;
	margin: 0 0 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.crumbs a {
	color: var(--muted);
	text-decoration: none;
}
.crumbs a:hover {
	color: var(--gold);
}

/* BONUS TABLE — cards on mobile, table on desktop */
.btable {
	margin: 0 0 36px;
}
.btable__cards {
	display: grid;
	gap: 14px;
}
.bcard {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 18px 20px;
	position: relative;
}
.btable__table {
	display: none;
}
.btable__table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.btable__table thead th {
	background: #0e0e0e;
	color: var(--gold);
	font: 800 12px / 1 var(--font-b);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--line);
}
.btable__table tbody td {
	padding: 16px;
	border-top: 1px solid var(--line);
	font-size: 14px;
	vertical-align: middle;
}
.btable__table tbody tr:hover {
	background: #181818;
}
.btable__table .code {
	font: 800 13px / 1 var(--font-n);
	letter-spacing: 0.1em;
	color: var(--gold);
	padding: 4px 10px;
	border: 1px dashed var(--gold);
	border-radius: var(--radius-sm);
	display: inline-block;
}
.btable__table .amt {
	color: var(--gold);
	font: 700 13px / 1.3 var(--font-n);
}
@media (min-width: 900px) {
	.btable__cards {
		display: none;
	}
	.btable__table {
		display: block;
	}
}

/* VERDICT BOX */
.verdict {
	background: linear-gradient(140deg, #1a1a1a 0%, #111 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	margin: 0 0 40px;
	display: grid;
	gap: 24px;
}
.verdict__rating {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 0 24px;
	border-bottom: 1px solid var(--line);
}
.verdict__score {
	font: 800 56px / 1 var(--font-n);
	color: var(--gold);
	letter-spacing: -0.02em;
}
.verdict__score small {
	font-size: 24px;
	color: var(--muted);
	font-weight: 700;
}
.verdict__label b {
	display: block;
	font: 800 14px / 1.2 var(--font-b);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text);
	margin: 0 0 4px;
}
.verdict__label span {
	font-size: 13px;
	color: var(--muted);
}
.verdict__cols {
	display: grid;
	gap: 20px;
}
.verdict__col h3 {
	font: 800 15px / 1 var(--font-b);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 12px;
	padding: 0 0 8px;
	border-bottom: 2px solid;
}
.verdict__col--pros h3 {
	color: #2fd665;
	border-color: #2fd665;
}
.verdict__col--cons h3 {
	color: #ff5c5c;
	border-color: #ff5c5c;
}
.verdict__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}
.verdict__col li {
	padding-left: 24px;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: #ddd;
}
.verdict__col--pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #2fd665;
	font-weight: 800;
}
.verdict__col--cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	top: 0;
	color: #ff5c5c;
	font-weight: 800;
}
@media (min-width: 720px) {
	.verdict__cols {
		grid-template-columns: 1fr 1fr;
	}
	.verdict {
		padding: 32px;
	}
}

/* FACT LIST (payments etc) */
.facts {
	display: grid;
	gap: 10px;
	margin: 0 0 24px;
}
.facts__item {
	background: var(--bg-card);
	border-left: 3px solid var(--gold);
	padding: 12px 16px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 14px;
	line-height: 1.5;
}
.facts__item b {
	color: var(--gold);
	display: inline-block;
	min-width: 160px;
}

/* RELATED GUIDES */
.rguides {
	display: grid;
	gap: 14px;
	margin-top: 40px;
}
.rguides > h3 {
	grid-column: 1 / -1;
	margin: 0 0 4px;
	font-family: var(--font-h);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	letter-spacing: 0.04em;
	color: var(--gold);
}
.rguides__card {
	display: block;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	text-decoration: none;
	color: var(--text);
	transition: all 0.2s;
}
.rguides__card:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}
.rguides__card h3 {
	font: 800 15px / 1.2 var(--font-b);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 8px;
}
.rguides__card p {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}
@media (min-width: 720px) {
	.rguides {
		grid-template-columns: repeat(3, 1fr);
	}
	.phead {
		padding: 110px 0 60px;
	}
	.phead h1 {
		font-size: 52px;
	}
}

/* SEO body: tighten for article pages */
.seo .callout {
	background: #1a1a1a;
	border-left: 3px solid var(--gold);
	padding: 14px 18px;
	margin: 18px 0;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 14px;
}
.seo ul {
	padding-left: 22px;
	margin: 12px 0 18px;
}
.seo li {
	margin: 0 0 8px;
	line-height: 1.6;
}
.page-hero {
	background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
	padding: 48px 0 32px;
	border-bottom: 1px solid var(--line);
}
.page-hero__kicker {
	color: var(--gold);
	font-size: 12px;
	letter-spacing: 0.04em;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.page-hero h1 {
	max-width: 820px;
}
.page-hero__sub {
	color: #d8d8d8;
	font-size: 1.1rem;
	max-width: 720px;
	margin-bottom: 16px;
}
.byline {
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}
.crumbs {
	color: var(--muted);
	font-size: 13px;
	margin-bottom: 16px;
}
.crumbs a {
	color: var(--muted);
}
.crumbs a:hover {
	color: var(--gold);
}
.crumbs span {
	margin: 0 6px;
	color: #555;
}

/* ARTICLE */
.article {
	padding: 48px 0 64px;
}
.article .container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (max-width: 767px) {
	.article .toc {
		display: none;
	}
}
.article .verdict,
.article .promo-now {
	grid-column: 1 / -1;
}
@media (min-width: 768px) {
	.article .container {
		grid-template-columns: 220px minmax(0, 1fr);
		align-items: start;
	}
}
@media (min-width: 1024px) {
	.article .container {
		grid-template-columns: 260px minmax(0, 1fr);
	}
}
.article__body {
	max-width: min(72ch, 100%);
	line-height: 1.75;
	color: #d8d8d8;
	overflow-wrap: break-word;
}
.article__body h2 {
	margin-top: 40px;
	color: #fff;
	font-family: var(--font-h);
	letter-spacing: 0.02em;
}
.article__body h3 {
	color: var(--gold);
	margin-top: 28px;
}
.article__body ul,
.article__body ol {
	padding-left: 22px;
}
.article__body li {
	margin-bottom: 8px;
}
.article__body a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.article__body a:hover {
	color: var(--gold-lt);
}

.toc {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	position: sticky;
	top: 80px;
	align-self: start;
}
.toc h4 {
	margin: 0 0 12px;
	font-family: var(--font-h);
	color: var(--gold);
	letter-spacing: 0.06em;
}
.toc ol,
.toc ul {
	padding-left: 18px;
	margin: 0;
	color: #cfcfcf;
	font-size: 14px;
	list-style: none;
}
.toc li {
	margin-bottom: 6px;
}
.toc a {
	color: #cfcfcf;
	text-decoration: none;
}
.toc a:hover {
	color: var(--gold);
}

.steps {
	counter-reset: step;
	list-style: none;
	padding: 0;
}
.steps li {
	counter-increment: step;
	position: relative;
	padding: 14px 16px 14px 56px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	margin-bottom: 10px;
}
.steps li::before {
	content: counter(step);
	position: absolute;
	left: 14px;
	top: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
	color: #111;
	font-family: var(--font-h);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.related {
	margin-top: 40px;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.related h3 {
	color: var(--gold);
	margin: 0 0 12px;
	font-family: var(--font-h);
	letter-spacing: 0.04em;
}
.related ul {
	padding-left: 20px;
	margin: 0;
}
.related li {
	margin-bottom: 6px;
	color: #cfcfcf;
}

/* TABLE */
.tbl {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	background: var(--bg-card);
	border-radius: var(--radius);
	overflow: hidden;
	display: block;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
	.tbl {
		display: table;
		white-space: normal;
	}
}
.tbl th,
.tbl td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}
.tbl th {
	background: #161616;
	color: var(--gold);
	font-family: var(--font-h);
	letter-spacing: 0.06em;
	font-weight: 400;
	font-size: 13px;
}
.tbl tr:hover td {
	background: rgba(0, 230, 118, 0.04);
}
.tbl code {
	background: rgba(0, 230, 118, 0.1);
	color: var(--gold);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: var(--font-n);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
}

/* PROMO NOW — live promotion banner */
.promo-now {
	background: linear-gradient(
		135deg,
		rgba(139, 92, 246, 0.12) 0%,
		rgba(0, 230, 118, 0.08) 100%
	);
	border: 1px solid var(--orange);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
}
.promo-now::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 90% 20%,
		rgba(139, 92, 246, 0.18),
		transparent 60%
	);
	pointer-events: none;
}
.promo-now__flag {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	font: 700 12px / 1 var(--font-b);
	letter-spacing: 0.04em;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	margin-bottom: 12px;
	animation: pulse 2s ease-in-out infinite;
}
.promo-now h2 {
	margin: 0 0 8px;
	color: var(--gold);
	font-family: var(--font-h);
	letter-spacing: 0.02em;
}
.promo-now__meta {
	color: var(--muted);
	font-size: 14px;
	margin: 0 0 12px;
}
.promo-now__meta code {
	background: rgba(0, 230, 118, 0.15);
	color: var(--gold);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: var(--font-n);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
}
.promo-now__cta {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
	margin: 16px 0 0;
}
.promo-now__expires {
	color: var(--orange);
	font-size: 13px;
	font-weight: 600;
}

/* Footer socials */
.footer__socials {
	display: flex;
	gap: 14px;
	justify-content: center;
	padding: 18px 0;
	border-top: 1px solid var(--line);
}
.footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--muted);
	transition:
		color 0.2s,
		border-color 0.2s,
		background 0.2s,
		transform 0.2s;
}
.footer__social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
.footer__social:hover {
	color: var(--accent);
	border-color: var(--accent);
	background: rgba(45, 212, 191, 0.08);
	transform: translateY(-2px);
}

/* ───── OFFER LOADER — purple/green MyStake theme ───── */
.offer-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 40px 20px;
	background:
		radial-gradient(
			circle at 20% 12%,
			rgba(139, 92, 246, 0.35),
			transparent 55%
		),
		radial-gradient(circle at 80% 88%, rgba(0, 230, 118, 0.22), transparent 55%),
		radial-gradient(ellipse at center, #0d0f14 0%, #05070a 75%);
	backdrop-filter: blur(14px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease;
}
.offer-loader.is-active {
	opacity: 1;
	pointer-events: auto;
}
.offer-loader__stage {
	position: relative;
	width: 200px;
	height: 200px;
	display: grid;
	place-items: center;
}
.offer-loader__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(0, 230, 118, 0.3);
	border-top-color: var(--gold);
	animation: ol-spin 1.3s linear infinite;
}
.offer-loader__ring--inner {
	inset: 22px;
	border-color: rgba(139, 92, 246, 0.3);
	border-bottom-color: #8b5cf6;
	animation: ol-spin 2s linear reverse infinite;
}
@keyframes ol-spin {
	to {
		transform: rotate(360deg);
	}
}
.offer-loader__icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(139, 92, 246, 0.6) 0%,
		rgba(13, 15, 20, 0.9) 75%
	);
	border: 2px solid var(--gold);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
	animation: ol-pulse 1.5s ease-out infinite;
}
@keyframes ol-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.04);
		box-shadow: 0 14px 40px rgba(0, 230, 118, 0.6);
	}
}
.offer-loader__icon svg {
	width: 48px;
	height: 48px;
	fill: var(--gold);
}
.offer-loader__banner {
	font: 700 24px / 1 var(--font-h);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: center;
}
.offer-loader__text {
	color: #fff;
	font: 500 15px / 1.45 var(--font-b);
	text-align: center;
	max-width: 400px;
}
.offer-loader__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: min(420px, 90vw);
}
.offer-loader__dest {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font: 700 11px / 1 var(--font-b);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.offer-loader__dest-label {
	color: var(--gold);
}
.offer-loader__dest-host {
	color: #fff;
}
.offer-loader__dest-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	animation: plinko-pulse 1.4s ease-out infinite;
}
.offer-loader__progress {
	position: relative;
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	overflow: hidden;
}
.offer-loader__progress::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 0;
	background: linear-gradient(90deg, #8b5cf6 0%, var(--gold) 100%);
	border-radius: inherit;
	animation: ol-fill 2.2s ease-out forwards;
}
@keyframes ol-fill {
	0% {
		width: 0;
	}
	30% {
		width: 35%;
	}
	60% {
		width: 65%;
	}
	90% {
		width: 92%;
	}
	100% {
		width: 100%;
	}
}
@media (max-width: 600px) {
	.offer-loader__stage {
		width: 160px;
		height: 160px;
	}
	.offer-loader__icon {
		width: 80px;
		height: 80px;
	}
	.offer-loader__icon svg {
		width: 38px;
		height: 38px;
	}
	.offer-loader__banner {
		font-size: 20px;
	}
	.offer-loader__text {
		font-size: 14px;
	}
}

/* LIVE GRID */
.live-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}
.live-grid__item {
	--tint: #1a1a2a;
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(
		135deg,
		color-mix(in srgb, var(--tint) 85%, #000) 0%,
		color-mix(in srgb, var(--tint) 55%, #000) 100%
	);
	border: 1px solid color-mix(in srgb, var(--tint) 70%, #000);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	transition:
		transform 0.2s,
		box-shadow 0.2s,
		border-color 0.2s;
}
.live-grid__item img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 8px;
	flex: 0 0 48px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.live-grid__item span {
	line-height: 1.25;
}
.live-grid__item:hover {
	transform: translateY(-3px);
	border-color: var(--gold);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--tint) 60%, transparent);
	color: #fff;
}

/* DATA-FADE animation */
[data-fade] {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
[data-fade].is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	[data-fade] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* COUNTER value styling */
.feature__value {
	font-family: var(--font-h);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--gold);
	display: block;
	line-height: 1;
	margin-bottom: 8px;
}

/* FLOATING ACTION BAR — merged pill */
.fab {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 100;
	display: flex;
	align-items: center;
	padding: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
	box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.25s,
		transform 0.25s,
		box-shadow 0.25s;
	pointer-events: none;
}
.fab.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	animation: fabPulse 2s ease-in-out infinite;
}
.fab:hover {
	box-shadow: 0 18px 40px rgba(139, 92, 246, 0.65);
	animation: none;
}
@keyframes fabPulse {
	0%,
	100% {
		box-shadow:
			0 12px 30px rgba(139, 92, 246, 0.5),
			0 0 0 0 rgba(139, 92, 246, 0.55);
		transform: translateY(0) scale(1);
	}
	50% {
		box-shadow:
			0 14px 36px rgba(139, 92, 246, 0.6),
			0 0 0 14px rgba(139, 92, 246, 0);
		transform: translateY(0) scale(1.03);
	}
}
.fab__offer {
	display: inline-flex;
	align-items: center;
	padding: 0 22px 0 20px;
	height: 48px;
	color: #fff !important;
	font: 800 14px / 1 var(--font-b);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	white-space: nowrap;
	transition: transform 0.15s;
}
.fab__offer::before {
	content: "🎁";
	margin-right: 10px;
	font-size: 18px;
}
.fab__offer:hover {
	transform: scale(1.04);
	color: #fff !important;
}
.fab__top {
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--gold-dk);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.2s,
		background 0.2s,
		color 0.2s;
	flex-shrink: 0;
}
.fab__top:hover {
	transform: rotate(-8deg) scale(1.06);
	background: var(--gold);
	color: #fff;
}
.fab__top svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
@media (max-width: 480px) {
	.fab {
		right: 14px;
		bottom: 14px;
	}
	.fab__offer {
		padding: 0 16px 0 14px;
		height: 44px;
		font-size: 13px;
	}
	.fab__top {
		width: 44px;
		height: 44px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.fab,
	.fab__offer,
	.fab__top,
	.fab.is-visible {
		transition: opacity 0.25s;
		animation: none;
	}
}

/* --- MOBILE / TABLET FIXES (casumo patch) --- */
@media (max-width: 1023px) {
	.header__row {
		flex-wrap: wrap;
		gap: 10px 14px;
		padding: 12px 16px;
	}
	.logo {
		flex: 0 0 auto;
		margin-right: auto;
	}
	.header__cta {
		margin-left: 0;
		gap: 8px;
	}
	.nav {
		display: flex;
		order: 3;
		flex: 1 1 100%;
		gap: 6px;
		overflow-x: auto;
		scrollbar-width: none;
		padding: 6px 2px 2px;
		font-size: 11px;
		letter-spacing: 0.06em;
		-webkit-overflow-scrolling: touch;
	}
	.nav::-webkit-scrollbar {
		display: none;
	}
	.nav__link {
		white-space: nowrap;
		flex-shrink: 0;
		padding: 7px 12px;
		min-height: 32px;
		display: inline-flex;
		align-items: center;
		border: 1px solid rgba(245, 200, 66, 0.28);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.04);
		color: #f0f0f0;
	}
	.nav__link:hover,
	.nav__link:active {
		background: rgba(245, 200, 66, 0.12);
		border-color: rgba(245, 200, 66, 0.6);
	}
	.nav__link--hot::after {
		top: -8px;
		right: -4px;
		font-size: 8px;
		padding: 2px 4px;
	}
	.qnav__item[href^="#"] {
		display: none;
	}
}
@media (max-width: 600px) {
	.header__row {
		gap: 8px 10px;
		padding: 10px 14px;
	}
	.logo__img {
		height: 40px;
		width: 40px;
	}
	.logo__text {
		font-size: 22px;
	}
	.lang {
		display: none;
	}
	.header__cta .btn--sm {
		padding: 8px 12px;
		font-size: 12px;
	}
	.header__cta .btn--ghost {
		display: none;
	}
	.nav {
		gap: 14px;
		font-size: 12px;
	}

	.hero__inner {
		padding: 56px 16px;
		gap: 28px;
	}
	.hero__sub {
		margin-bottom: 16px;
	}
	.hero__usp {
		margin-bottom: 24px;
	}
	.hero__ctas .btn {
		flex: 1 1 100%;
		justify-content: center;
	}

	.qnav__item {
		min-width: 84px;
		font-size: 12px;
	}
	.card-game {
		flex: 0 0 140px;
	}
	.footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}
	.footer__brand {
		grid-column: 1 / -1;
	}

	.providers {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		padding: 12px;
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 12px;
	}
	.providers__item {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 6px;
		min-height: 52px;
		width: auto;
		height: auto;
	}
	.providers__item img {
		max-width: 100%;
		height: auto;
		object-fit: contain;
	}
}
@media (max-width: 380px) {
	.header__cta .btn--sm {
		padding: 7px 10px;
		font-size: 11px;
	}
}

/* ───── HERO PLINKO PANEL ───── */
.hero__plinko {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 16px 14px;
	background: linear-gradient(
		165deg,
		rgba(255, 160, 0, 0.28) 0%,
		rgba(20, 14, 5, 0.95) 100%
	);
	border: 1.5px solid rgba(255, 180, 50, 0.55);
	border-radius: 16px;
	color: var(--text);
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(255, 149, 0, 0.12),
		0 4px 20px rgba(255, 149, 0, 0.3),
		0 24px 60px -16px rgba(255, 100, 0, 0.55),
		inset 0 1px 0 rgba(255, 200, 100, 0.1);
	transition:
		transform 0.3s,
		border-color 0.3s,
		box-shadow 0.3s;
	max-width: 380px;
	width: 100%;
}
.hero__plinko::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 17px;
	background: conic-gradient(
		from 90deg,
		transparent 0%,
		rgba(255, 180, 50, 0.65) 30%,
		transparent 55%,
		rgba(255, 100, 0, 0.6) 82%,
		transparent 100%
	);
	z-index: -1;
	filter: blur(14px);
	opacity: 0.7;
	animation: plinko-glow 12s linear infinite;
}
@keyframes plinko-glow {
	to {
		transform: rotate(360deg);
	}
}
.hero__plinko:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 200, 80, 0.85);
	box-shadow:
		0 0 0 1px rgba(255, 149, 0, 0.2),
		0 6px 28px rgba(255, 149, 0, 0.45),
		0 30px 70px -16px rgba(255, 100, 0, 0.7);
	color: #fff;
}
.hero__plinko-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 1px dashed rgba(255, 180, 50, 0.25);
}
.hero__plinko-brand {
	font: 800 20px / 1 var(--font-h);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #c4b5fd;
	text-shadow:
		0 0 12px rgba(139, 92, 246, 0.9),
		0 0 28px rgba(139, 92, 246, 0.5),
		0 2px 4px rgba(0, 0, 0, 0.6);
	-webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.25);
}
.hero__plinko-live {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font: 700 10px / 1 var(--font-b);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffd280;
}
.hero__plinko-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff9500;
	box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.55);
	animation: plinko-pulse 1.5s ease-out infinite;
}
@keyframes plinko-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.55);
	}
	70% {
		box-shadow: 0 0 0 9px rgba(255, 149, 0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
	}
}

/* Plinko board — pins grid + falling ball */
.hero__plinko-board {
	position: relative;
	overflow: hidden;
}
.hero__plinko-pins {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding-bottom: 12px;
}
.hero__plinko-pins .row {
	display: flex;
	justify-content: space-evenly;
}
.hero__plinko-pins .row:nth-child(1) {
	width: 28%;
}
.hero__plinko-pins .row:nth-child(2) {
	width: 37%;
}
.hero__plinko-pins .row:nth-child(3) {
	width: 46%;
}
.hero__plinko-pins .row:nth-child(4) {
	width: 56%;
}
.hero__plinko-pins .row:nth-child(5) {
	width: 66%;
}
.hero__plinko-pins .row:nth-child(6) {
	width: 77%;
}
.hero__plinko-pins .row:nth-child(7) {
	width: 88%;
}
.hero__plinko-pins .row:nth-child(8) {
	width: 100%;
}
.hero__plinko-pins span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 200, 100, 0.55);
	box-shadow: 0 0 6px rgba(255, 160, 0, 0.4);
}
/* Row offset — stagger pins like real plinko */
.hero__plinko-pins span:nth-child(-n + 3) {
	grid-column: span 1;
}
.hero__plinko-field {
	position: relative;
}
.hero__plinko-ball {
	position: absolute;
	top: 0;
	left: 48%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #fff, #a78bfa 40%, #7c3aed);
	box-shadow:
		0 0 22px rgba(124, 58, 237, 1),
		0 0 8px #e0c4ff,
		0 0 40px rgba(139, 92, 246, 0.5);
	animation: plinko-drop 8s ease-in infinite;
	z-index: 4;
	pointer-events: none;
}
@keyframes plinko-drop {
	0% {
		top: 0%;
		left: 48%;
		opacity: 1;
	}
	6% {
		top: 10%;
		left: 43%;
	}
	12% {
		top: 21%;
		left: 54%;
	}
	18% {
		top: 32%;
		left: 42%;
	}
	24% {
		top: 43%;
		left: 56%;
	}
	30% {
		top: 54%;
		left: 44%;
	}
	36% {
		top: 64%;
		left: 52%;
	}
	42% {
		top: 72%;
		left: 46%;
		opacity: 1;
	}
	46%,
	100% {
		top: 74%;
		left: 46%;
		opacity: 0;
	}
}

/* Multiplier slots at bottom */
.hero__plinko-mults {
	display: flex;
	gap: 3px;
	justify-content: center;
}
.hero__plinko-mults span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px 0;
	flex: 1;
	font: 700 10px / 1 var(--font-b);
	letter-spacing: 0.04em;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--muted);
	transition:
		background 0.2s,
		color 0.2s;
}
.hero__plinko-mults .is-mid {
	background: rgba(255, 180, 50, 0.15);
	color: #ffb432;
}
.hero__plinko-mults .is-hot {
	background: rgba(255, 100, 0, 0.22);
	color: #ff8c00;
}
.hero__plinko-mults .is-jackpot {
	background: linear-gradient(180deg, #ff9500 0%, #ff6000 100%);
	color: #0d0f14;
	font-weight: 800;
	animation: plinko-jackpot 3.5s ease-in-out infinite;
}
@keyframes plinko-jackpot {
	0%,
	80%,
	100% {
		transform: scale(1);
	}
	88% {
		transform: scale(1.15);
		box-shadow: 0 0 10px rgba(255, 149, 0, 0.7);
	}
	93% {
		transform: scale(1);
	}
}
/* Win banner — absolute center of field, appears for ~3s in 4s cycle */
.hero__plinko-win {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 5;
	white-space: normal;
	text-align: center;
	max-width: calc(100% - 24px);
	padding: 12px 20px;
	background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
	background-size: 200% 200%;
	border: 2px solid rgba(255, 200, 80, 0.7);
	border-radius: var(--radius-pill);
	font: 800 14px / 1 var(--font-b);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	text-shadow:
		0 0 10px rgba(255, 180, 50, 0.6),
		0 2px 4px rgba(0, 0, 0, 0.6);
	box-shadow:
		0 0 30px rgba(147, 51, 234, 0.9),
		0 0 60px rgba(139, 92, 246, 0.4),
		0 8px 28px -6px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	opacity: 0;
	pointer-events: none;
	animation:
		plinko-win 8s ease-in-out infinite,
		plinko-win-glow 8s ease-in-out infinite;
}
@keyframes plinko-win {
	0%,
	46% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0) rotate(-3deg);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.15) rotate(0deg);
	}
	54% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
	}
	62% {
		transform: translate(-50%, -50%) scale(1.04) rotate(0.5deg);
	}
	68% {
		transform: translate(-50%, -50%) scale(1) rotate(-0.5deg);
	}
	74% {
		transform: translate(-50%, -50%) scale(1.04) rotate(0.5deg);
	}
	80% {
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
	}
	90% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1) rotate(0deg);
	}
	96%,
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.85) rotate(2deg);
	}
}
@keyframes plinko-win-glow {
	0%,
	46%,
	96%,
	100% {
		box-shadow:
			0 0 30px rgba(147, 51, 234, 0.9),
			0 0 60px rgba(139, 92, 246, 0.4),
			0 8px 28px -6px rgba(0, 0, 0, 0.6),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
		background-position: 0% 50%;
	}
	60% {
		box-shadow:
			0 0 40px rgba(255, 149, 0, 0.8),
			0 0 80px rgba(147, 51, 234, 0.5),
			0 10px 32px -6px rgba(0, 0, 0, 0.6),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
		background-position: 100% 50%;
	}
	80% {
		box-shadow:
			0 0 35px rgba(147, 51, 234, 0.9),
			0 0 70px rgba(255, 149, 0, 0.35),
			0 8px 28px -6px rgba(0, 0, 0, 0.6),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
		background-position: 0% 50%;
	}
}

.hero__plinko-meta {
	font-size: 11px;
	color: var(--muted);
	text-align: center;
	padding-top: 4px;
}
.hero__plinko-meta b {
	color: #ffb432;
}
.hero__plinko-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 16px;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, #ff9500 0%, #e67700 100%);
	color: #0d0f14;
	font: 700 12px / 1 var(--font-b);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 8px 22px -8px rgba(255, 149, 0, 0.6);
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.hero__plinko:hover .hero__plinko-cta {
	transform: translateY(-1px);
	background: linear-gradient(135deg, #ffb432 0%, #ff9500 100%);
	color: #0d0f14;
	box-shadow: 0 12px 28px -8px rgba(255, 180, 50, 0.75);
}
@media (max-width: 900px) {
	.hero__plinko {
		max-width: 340px;
		margin: 0 auto;
	}
}
@media (max-width: 600px) {
	.hero__plinko {
		max-width: 100%;
		padding: 14px 12px 12px;
	}
	.hero__plinko-board {
		height: 100px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.hero__plinko-ball,
	.hero__plinko::before,
	.hero__plinko-dot {
		animation: none;
	}
}
