:root {
	--bg-1: #0b0b0b;
	--bg-2: #141414;
	--bg-card: #1c1c1c;
	--bg-footer: #070707;
	--gold: #00e676;
	--gold-lt: #69f0ae;
	--gold-dk: #00c853;
	--orange: #76ff03;
	--orange-dk: #64dd17;
	--red: #ff1744;
	--text: #fff;
	--muted: #9a9a9a;
	--line: #2a2a2a;
	--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;
	--accent: var(--gold);
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
html,
body {
	max-width: 100vw;
	overflow-x: clip;
}
body {
	margin: 0;
	background: var(--bg-1);
	color: var(--text);
	font: 16px / 1.6 var(--font-b);
}
@media (max-width: 767px) {
	body {
		font-size: 15px;
	}
}
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-left: 20px;
	padding-right: 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: 24px;
	padding: 14px 20px;
	max-width: var(--maxw);
	margin: 0 auto;
}
.logo {
	font-family: var(--font-h);
	font-size: 28px;
	letter-spacing: 0.04em;
	background: linear-gradient(180deg, #69f0ae 0%, #00e676 45%, #00c853 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: 22px;
	align-items: center;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding: 0;
	margin: 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: -9px;
	right: -26px;
	background: var(--red);
	color: #fff;
	font: 700 9px / 1 var(--font-b);
	padding: 3px 5px;
	border-radius: 3px;
	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;
}
.lang {
	color: var(--muted);
	font-size: 13px;
	padding-left: 12px;
	border-left: 1px solid var(--line);
}
.burger {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 32px;
	height: 32px;
	padding: 6px;
	background: none;
	border: 0;
	cursor: pointer;
}
.burger span {
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}
@media (min-width: 1024px) {
	.nav {
		flex: 1;
		overflow: visible;
	}
	.burger {
		display: none;
	}
}
@media (max-width: 1023px) {
	.header__row {
		justify-content: flex-start;
		position: relative;
	}
	.burger {
		flex: 0 0 auto;
	}
	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: auto;
		flex-direction: column;
		align-items: flex-start;
		background: linear-gradient(
			180deg,
			rgba(11, 11, 11, 0.98) 85%,
			transparent 100%
		);
		-webkit-mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
		mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
		padding: 20px 50px 32px 36px;
		margin: 0;
		gap: 16px;
		font-size: 17px;
		z-index: 60;
		opacity: 0;
		transform: translateY(-8px);
	}
	.nav.is-open {
		display: flex;
		animation: navSlideIn 0.25s ease-out forwards;
	}
	.nav.is-closing {
		display: flex;
		animation: navSlideOut 0.2s ease-in forwards;
	}
	@keyframes navSlideIn {
		from {
			opacity: 0;
			transform: translateY(-8px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	@keyframes navSlideOut {
		from {
			opacity: 1;
			transform: translateY(0);
		}
		to {
			opacity: 0;
			transform: translateY(-8px);
		}
	}
	.header__cta {
		margin-left: auto;
	}
	.header__cta .btn--ghost,
	.header__cta .lang {
		display: none;
	}
}

/* BTN */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font: 700 14px / 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(118, 255, 3, 0.35);
}
.btn--cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(118, 255, 3, 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: 12px;
}

/* HERO */
.hero {
	position: relative;
	min-height: 440px;
	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;
	inset: 0;
	background-image: url(../img/hero-1.webp);
	background-size: cover;
	background-position: center right;
	opacity: 0.45;
	z-index: 0;
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		#0b0b0b 0%,
		rgba(11, 11, 11, 0.55) 50%,
		transparent 100%
	);
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding: 80px 20px;
	max-width: var(--maxw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
}
.hero__kicker {
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.2em;
	font-size: 13px;
	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: clamp(1rem, 1.4vw, 1.15rem);
	color: #d8d8d8;
	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: 24px;
	border-left: 3px solid var(--gold);
	padding-left: 12px;
}
.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: 6px;
	padding: 14px 18px;
	color: #cfcfcf;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	min-width: 100px;
	border-right: 1px solid var(--line);
	position: relative;
}
.qnav__item:hover {
	color: var(--gold);
}
.qnav__item svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
}
.qnav__badge {
	position: absolute;
	top: 6px;
	right: 10px;
	background: var(--red);
	color: #fff;
	font-size: 9px;
	padding: 2px 4px;
	border-radius: 3px;
}

/* SECTION */
.section {
	padding-top: 56px;
	padding-bottom: 56px;
}
.section__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.section__head h2 {
	margin: 0;
}
.section__head p {
	color: var(--muted);
	margin: 0;
	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: 32px;
	animation: slide 40s linear infinite;
	white-space: nowrap;
}
.bigwins__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 13px;
}
.bigwins__item b {
	color: var(--gold);
	font-family: var(--font-n);
	font-weight: 800;
}
.bigwins__sep {
	color: var(--line);
}
@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 {
	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;
	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: 11px;
	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 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	justify-items: center;
}
.providers__item {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}
.providers__item img {
	width: 80%;
	height: 80%;
	object-fit: contain;
}
.providers__item--text {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
}
.providers__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 230, 118, 0.2);
}
@media (max-width: 767px) {
	.providers {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 480px) {
	.providers {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 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__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;
}
.footer__brand .logo {
	display: inline-block;
	margin-bottom: 12px;
}
.footer__desc {
	color: var(--muted);
	font-size: 14px;
	max-width: 420px;
}
.footer__nav h4 {
	font-family: var(--font-h);
	color: var(--gold);
	margin: 0 0 12px;
	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: 14px;
}
.footer__nav a:hover {
	color: var(--gold);
}
.footer__links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}
.footer__providers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	padding: 18px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 12px;
	justify-content: center;
}
.footer__pays {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
	justify-content: center;
}
.pay {
	padding: 6px 12px;
	background: #121212;
	border: 1px solid var(--line);
	border-radius: 6px;
	color: var(--muted);
	font: 700 11px / 1 var(--font-b);
	height: 40px;
	display: flex;
	align-items: center;
	letter-spacing: 0.05em;
}
.pay img {
	height: 20px;
	width: auto;
	filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.25))
		drop-shadow(0 0 1px rgba(255, 255, 255, 0.13));
}
.pay--inv img {
	filter: invert(1);
}
.pay--nofx img {
	filter: none;
}
.pay--lg img {
	height: 28px;
}
.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: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.footer__disc {
	color: #777;
	font-size: 12px;
	line-height: 1.6;
	margin: 14px 0 4px;
}
.footer__copy {
	color: #555;
	font-size: 12px;
	margin: 0;
}
@media (max-width: 767px) {
	.footer__top {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.footer__links {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}
@media (min-width: 768px) {
	.footer__top {
		grid-template-columns: 1.3fr 2.4fr;
	}
	.footer__links {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hero__text {
	flex: 1;
	min-width: 0;
}
.hero__slots-placeholder {
	display: none;
}
@media (max-width: 600px) {
	.hero__slots-placeholder {
		display: flex;
		justify-content: center;
		margin: 12px 0 20px;
	}
}

/* HERO CTA desktop/mobile toggle */
.hero__ctas--mobile {
	display: none;
}
@media (max-width: 600px) {
	.hero__ctas--desktop {
		display: none;
	}
	.hero__ctas--mobile {
		display: flex;
	}
}

/* LIVE BADGE */
.card-game__live-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #e53935;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;
	z-index: 1;
}
.card-game__img {
	position: relative;
}

/* UTILS */
.gold {
	color: var(--gold);
}
.center {
	text-align: center;
}
@media (max-width: 600px) {
	.hero {
		min-height: 380px;
	}
	.hero__bg {
		opacity: 0.35;
		background-position: center center;
	}
	.hero__bg::after {
		background: linear-gradient(
			180deg,
			rgba(11, 11, 11, 0.4) 0%,
			rgba(11, 11, 11, 0.7) 100%
		);
	}
	.hero__inner {
		display: grid;
		grid-template-columns: 1fr;
		padding: 40px 16px 24px;
		gap: 12px;
		justify-items: center;
	}
	.hero h1 {
		text-align: center;
	}
	.hero__slots {
		margin-top: 0;
	}
	.hero__slots-placeholder {
		display: flex;
		justify-content: center;
	}
	.slotmachine {
		width: min(65vw, 200px);
	}
	.slotmachine__top {
		padding: 6px 10px 4px;
	}
	.slotmachine__marquee {
		font-size: 9px;
	}
	.slotmachine__jackpot {
		font-size: 16px;
	}
	.slotmachine__lights span {
		width: 5px;
		height: 5px;
		gap: 6px;
	}
	.slotmachine__body {
		padding: 10px;
	}
	.slotmachine__screen {
		padding: 6px;
		gap: 4px;
	}
	.slotmachine__reel {
		width: 48px;
		height: 120px;
	}
	.slotmachine__sym {
		width: 48px;
		height: 40px;
		font-size: 22px;
	}
	@keyframes reelBlur {
		from {
			transform: translateY(0);
		}
		to {
			transform: translateY(-40px);
		}
	}
	.slotmachine__spin {
		width: 40px;
		height: 40px;
		font-size: 10px;
	}
	.slotmachine__label {
		font-size: 8px;
	}
	.slotmachine__bet-val,
	.slotmachine__credit-val {
		font-size: 13px;
	}
	.slotmachine__base {
		height: 8px;
	}
	.hero h1 {
		font-size: clamp(1.4rem, 5.5vw, 2rem);
		margin-bottom: 8px;
	}
	.hero__kicker,
	.hero__sub,
	.hero__usp {
		display: none;
	}
	.hero__text {
		display: flex;
		flex-direction: column;
		order: 0;
	}
	.hero__slots {
		order: 1;
	}
	.hero__ctas--mobile {
		order: 2;
	}
	.hero__ctas {
		flex-direction: column;
		gap: 10px;
	}
	.hero__ctas .btn {
		width: 100%;
		text-align: center;
	}
	.section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.section__head {
		flex-direction: column;
		gap: 8px;
	}
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.explore {
		grid-template-columns: 1fr;
	}
	.features {
		grid-template-columns: 1fr;
	}
	.footer__bottom {
		flex-direction: column;
		text-align: center;
	}
	.footer__badges {
		justify-content: center;
	}
	.phead h1 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}
	.phead {
		padding: 60px 0 30px;
	}
}

/* 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;
}
.phead__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}
.phead__meta b {
	color: var(--gold);
}
.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);
}

/* TOC */
.pagetoc {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 24px;
	margin: 0 0 40px;
}
.pagetoc h2 {
	font: 800 16px / 1 var(--font-b);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 14px;
}
.pagetoc ol {
	list-style: none;
	counter-reset: toc;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}
.pagetoc li {
	counter-increment: toc;
	padding-left: 34px;
	position: relative;
}
.pagetoc li::before {
	content: counter(toc, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 1px;
	font: 800 13px / 1 var(--font-n);
	color: var(--gold);
	letter-spacing: 0.04em;
}
.pagetoc a {
	color: var(--text);
	text-decoration: none;
	font-size: 15px;
	border-bottom: 1px dotted transparent;
	transition: all 0.2s;
}
.pagetoc a:hover {
	color: var(--gold);
	border-bottom-color: var(--gold);
}

/* BONUS TABLE — cards on mobile, table on desktop */
.btable {
	margin: 0 0 36px;
}
.btable table {
	width: 100%;
}
@media (max-width: 600px) {
	.btable thead {
		display: none;
	}
	.btable tbody {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.btable tr {
		display: block;
		background: linear-gradient(
			145deg,
			rgba(0, 230, 118, 0.08) 0%,
			rgba(0, 200, 83, 0.03) 40%,
			var(--bg-card) 100%
		);
		border: 1px solid rgba(0, 230, 118, 0.15);
		border-radius: 16px;
		padding: 0;
		position: relative;
		overflow: hidden;
		transition: transform 0.2s;
	}
	.btable tr:active {
		transform: scale(0.98);
	}
	.btable tr[data-href]:hover,
	.btable tr[data-href]:focus-visible {
		border-color: var(--gold);
		box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
	}
	.btable tr[data-href]::after {
		content: "🎯 Claim This Offer →";
		display: block;
		text-align: center;
		margin: 12px 20px 16px;
		padding: 14px 24px;
		border-radius: 12px;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0.03em;
		color: #0a0a0a;
		background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
		box-shadow: 0 4px 16px rgba(0, 230, 118, 0.25);
		animation: claimPulse 2s ease-in-out infinite;
	}
	@keyframes claimPulse {
		0%,
		100% {
			box-shadow: 0 4px 16px rgba(0, 230, 118, 0.25);
			transform: scale(1);
		}
		50% {
			box-shadow: 0 6px 24px rgba(0, 230, 118, 0.45);
			transform: scale(1.02);
		}
	}
	.btable tr[data-href]:active::after {
		transform: scale(0.95);
		animation: none;
		box-shadow: 0 2px 8px rgba(0, 230, 118, 0.3);
	}
	/* Top badge — offer name */
	.btable td:first-child {
		display: block;
		text-align: center;
		font-size: 17px;
		font-weight: 800;
		font-family: var(--font-h);
		color: #fff;
		padding: 16px 20px 12px;
		background: linear-gradient(
			135deg,
			rgba(0, 230, 118, 0.15) 0%,
			transparent 100%
		);
		border-bottom: 1px solid rgba(0, 230, 118, 0.12);
		letter-spacing: 0.02em;
	}
	.btable td:first-child::before {
		display: none;
	}
	/* Value rows */
	.btable td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.04);
		font-size: 14px;
		color: #e0e0e0;
	}
	.btable td:last-child {
		border-bottom: none;
	}
	.btable td::before {
		content: attr(data-label);
		font-weight: 600;
		color: var(--gold);
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		flex-shrink: 0;
		margin-right: 16px;
	}
	/* Highlight second cell (bonus value) */
	.btable td:nth-child(2) {
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		padding: 12px 20px;
	}
}
.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;
}
.bcard__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 14px;
	padding: 0 0 12px;
	border-bottom: 1px solid var(--line);
}
.bcard__name {
	font: 800 16px / 1.2 var(--font-b);
	margin: 0;
	letter-spacing: 0.01em;
}
.bcard__amount {
	color: var(--gold);
	font: 800 13px / 1.3 var(--font-n);
	letter-spacing: 0.02em;
	text-align: right;
	max-width: 50%;
}
.bcard__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 16px;
	margin: 0 0 16px;
}
.bcard__cell b {
	display: block;
	font: 700 10px / 1 var(--font-b);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 6px;
}
.bcard__cell span {
	font: 700 14px / 1.2 var(--font-n);
	color: var(--text);
}
.bcard__code {
	display: inline-block;
	padding: 5px 12px;
	background: #0b0b0b;
	border: 1px dashed var(--gold);
	border-radius: var(--radius-sm);
	font: 800 13px / 1 var(--font-n);
	letter-spacing: 0.12em;
	color: var(--gold);
}
.bcard__cta {
	display: block;
	width: 100%;
	text-align: center;
}
.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 11px / 1 var(--font-b);
	letter-spacing: 0.1em;
	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;
}
.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);
	letter-spacing: 0.18em;
	font-size: 12px;
	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 span {
	margin: 0 6px;
	color: #555;
}

/* ARTICLE */
.article {
	padding: 48px 0 64px;
	overflow-x: hidden;
}
@media (max-width: 600px) {
	.article .container {
		padding: 0 16px;
	}
	.promo-now {
		padding: 16px;
	}
	.btable {
		overflow-x: auto;
		margin: 0 -4px;
	}
}
.article .container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 768px) {
	.article .container:has(.toc) {
		grid-template-columns: 200px 1fr;
	}
}
.article .verdict,
.article .promo-now {
	max-width: 100%;
}
.article__body {
	max-width: 100%;
	min-width: 0;
	line-height: 1.8;
	font-size: 17px;
	color: #d8d8d8;
	overflow-wrap: break-word;
}
.article__body h2 {
	margin-top: 40px;
	color: #fff;
	font-family: var(--font-h);
	font-size: clamp(1.35rem, 2.4vw, 1.7rem);
	text-transform: none;
	letter-spacing: 0.02em;
}
.article__body h3 {
	color: var(--gold);
	margin-top: 28px;
	font-size: clamp(1.1rem, 1.8vw, 1.25rem);
	text-transform: none;
}
.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 {
	padding-left: 18px;
	margin: 0;
	color: #cfcfcf;
	font-size: 14px;
}
.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 — full-section variant lives in legal.css.
   .related--card — inline card variant for article pages. */
.related--card {
	margin-top: 48px;
	padding: 0;
	background: none;
	border: none;
}
.related--card h3 {
	color: var(--gold);
	margin: 0 0 16px;
	font-family: var(--font-h);
	letter-spacing: 0.04em;
}
.related--card ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.related--card li {
	margin: 0;
}
.related--card a {
	display: inline-block;
	padding: 12px 24px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition:
		background 0.2s,
		border-color 0.2s;
}
.related--card a:hover {
	background: var(--gold);
	color: #0a0a0a;
	border-color: var(--gold);
}

@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);
	}
}
@media (max-width: 767px) {
	.article .toc {
		display: none;
	}
}

/* TABLE */
.tbl {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	background: var(--bg-card);
	border-radius: var(--radius);
	overflow: hidden;
}
.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;
}

/* PROMO NOW — live promotion banner */
.promo-now {
	background: linear-gradient(
		135deg,
		rgba(118, 255, 3, 0.12) 0%,
		rgba(0, 230, 118, 0.08) 100%
	);
	border: 1px solid var(--orange);
	border-radius: var(--radius);
	padding: 24px;
	margin: 0 0 28px;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.promo-now::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 90% 20%,
		rgba(118, 255, 3, 0.18),
		transparent 60%
	);
	pointer-events: none;
}
.promo-now__flag {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	font: 700 11px / 1 var(--font-b);
	letter-spacing: 0.12em;
	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;
}
.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(0, 230, 118, 0.08);
	transform: translateY(-2px);
}

/* FAB — floating claim + back-to-top */
.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(118, 255, 3, 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(118, 255, 3, 0.65);
	animation: none;
}
@keyframes fabPulse {
	0%,
	100% {
		box-shadow:
			0 12px 30px rgba(118, 255, 3, 0.5),
			0 0 0 0 rgba(118, 255, 3, 0.55);
		transform: translateY(0) scale(1);
	}
	50% {
		box-shadow:
			0 14px 36px rgba(118, 255, 3, 0.6),
			0 0 0 14px rgba(118, 255, 3, 0);
		transform: translateY(0) scale(1.03);
	}
}
.fab__offer {
	display: inline-flex;
	align-items: center;
	padding: 0 22px 0 20px;
	height: 48px;
	color: #fff;
	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;
}
.fab__offer::before {
	content: "🎁";
	margin-right: 10px;
	font-size: 18px;
}
.fab__offer:hover {
	transform: scale(1.04);
	color: #fff;
}
.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;
	}
}

/* OFFER-LOADER — transition overlay on CTA click */
.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(118, 255, 3, 0.3), transparent 55%),
		radial-gradient(circle at 80% 88%, rgba(0, 230, 118, 0.2), transparent 55%),
		radial-gradient(ellipse at center, #0b0b0b 0%, #050505 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(118, 255, 3, 0.3);
	border-top-color: var(--gold);
	animation: ol-spin 1.3s linear infinite;
}
.offer-loader__ring--inner {
	inset: 22px;
	border-color: rgba(0, 230, 118, 0.3);
	border-bottom-color: var(--gold-lt);
	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(118, 255, 3, 0.5) 0%,
		rgba(11, 11, 11, 0.9) 75%
	);
	border: 2px solid var(--gold);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(118, 255, 3, 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(118, 255, 3, 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: ol-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, var(--gold) 0%, var(--gold-lt) 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: 540px) {
	.offer-loader__stage {
		width: 160px;
		height: 160px;
	}
	.offer-loader__icon {
		width: 80px;
		height: 80px;
	}
	.offer-loader__icon svg {
		width: 36px;
		height: 36px;
	}
	.offer-loader__banner {
		font-size: 20px;
	}
}

/* HERO SLOT MACHINE */
.hero__slots {
	flex-shrink: 0;
	perspective: 800px;
	overflow: hidden;
}
.slotmachine {
	width: 280px;
	height: fit-content;
	filter: drop-shadow(0 0 60px rgba(0, 230, 118, 0.2));
}
/* TOP — marquee + lights */
.slotmachine__top {
	background: linear-gradient(180deg, #2a0a0a 0%, #1a0505 100%);
	border-radius: 20px 20px 0 0;
	padding: 10px 16px 8px;
	border: 2px solid #4a1a1a;
	border-bottom: none;
	text-align: center;
}
.slotmachine__lights {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 6px;
}
.slotmachine__lights span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	animation: bulbChase 1.4s ease-in-out infinite;
}
.slotmachine__lights span:nth-child(odd) {
	background: #ff3d3d;
	animation-delay: 0s;
}
.slotmachine__lights span:nth-child(even) {
	background: #ffd700;
	animation-delay: 0.7s;
}
@keyframes bulbChase {
	0%,
	100% {
		opacity: 0.3;
		box-shadow: none;
	}
	50% {
		opacity: 1;
		box-shadow: 0 0 8px currentColor;
	}
}
.slotmachine__marquee {
	font-family: var(--font-h);
	font-size: 13px;
	letter-spacing: 0.15em;
	color: #ffd700;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.slotmachine__jackpot {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}
/* BODY — reels */
.slotmachine__body {
	position: relative;
	background: linear-gradient(180deg, #1e1e2a 0%, #12121a 100%);
	border: 2px solid #333;
	border-top: none;
	padding: 16px;
}
.slotmachine__screen {
	display: flex;
	gap: 8px;
	justify-content: center;
	background: #0a0a12;
	border-radius: 10px;
	padding: 10px;
	position: relative;
	border: 2px solid #222;
	box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.6);
}
.slotmachine__payline {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 3px;
	background: #ffd700;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
	z-index: 3;
	pointer-events: none;
	transform: translateY(-50%);
}
.slotmachine__reel {
	width: 70px;
	height: 180px;
	overflow: hidden;
	position: relative;
	border-radius: 6px;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.3) 0%,
		transparent 15%,
		transparent 85%,
		rgba(0, 0, 0, 0.3) 100%
	);
}
.slotmachine__strip {
	display: flex;
	flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
	will-change: transform;
}
.slotmachine__sym {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 60px;
	font-size: 36px;
}
.slotmachine__reel.is-spinning .slotmachine__strip {
	transition: none;
	animation: reelBlur 0.08s linear infinite;
}
@keyframes reelBlur {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-60px);
	}
}
/* WIN */
.slotmachine__win {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	text-align: center;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.75);
	padding: 10px 20px;
	border-radius: 10px;
	border: 2px solid #ffd700;
	white-space: nowrap;
}
.slotmachine__win-text {
	font-family: var(--font-h);
	font-size: 18px;
	color: #ffd700;
	text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
	animation:
		winPop 0.5s ease-out,
		winPulse 0.8s 0.5s ease-in-out infinite alternate;
	letter-spacing: 0.05em;
}
@keyframes winPulse {
	from {
		transform: scale(1);
		text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
	}
	to {
		transform: scale(1.08);
		text-shadow: 0 0 24px rgba(255, 215, 0, 1);
	}
}
@keyframes winPop {
	0% {
		transform: scale(0.3);
		opacity: 0;
	}
	60% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
/* CONTROLS */
.slotmachine__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	gap: 10px;
}
.slotmachine__bet,
.slotmachine__credit {
	text-align: center;
	flex: 1;
}
.slotmachine__label {
	display: block;
	font-size: 9px;
	letter-spacing: 0.15em;
	color: #666;
	text-transform: uppercase;
	margin-bottom: 2px;
}
.slotmachine__bet-val,
.slotmachine__credit-val {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	font-variant-numeric: tabular-nums;
}
.slotmachine__credit-val {
	color: var(--gold);
}
.slotmachine__spin {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 3px solid var(--gold);
	background: linear-gradient(180deg, #1a2a1a 0%, #0a140a 100%);
	color: var(--gold);
	cursor: pointer;
	transition: all 0.2s;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slotmachine__spin {
	font-family: var(--font-h);
	font-size: 13px;
	letter-spacing: 0.15em;
}
.slotmachine__spin:hover {
	background: var(--gold);
	color: #0a0a0a;
	box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}
.slotmachine__spin:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.slotmachine__spin.is-active {
	animation: spinPulse 0.6s ease-in-out;
}
@keyframes spinPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}
/* BASE */
.slotmachine__base {
	height: 12px;
	background: linear-gradient(180deg, #1a1a24, #0d0d14);
	border-radius: 0 0 16px 16px;
	border: 2px solid #333;
	border-top: none;
}
/* WIN FLASH on screen */
.slotmachine__screen.is-win {
	animation: screenFlash 0.6s ease-out;
}
@keyframes screenFlash {
	0%,
	100% {
		box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.6);
	}
	30% {
		box-shadow:
			inset 0 0 30px rgba(255, 215, 0, 0.3),
			0 0 40px rgba(255, 215, 0, 0.2);
	}
}
/* JACKPOT STATE */
.slotmachine.is-jackpot {
	animation:
		jackpotShake 0.5s ease-in-out 3,
		jackpotGlow 0.6s ease-in-out infinite alternate;
}
@keyframes jackpotGlow {
	from {
		filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
	}
	to {
		filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.7));
	}
}
.slotmachine.is-jackpot .slotmachine__top {
	background: linear-gradient(180deg, #3a1a00 0%, #2a0a00 100%);
}
.slotmachine.is-jackpot .slotmachine__lights span {
	animation: bulbRave 0.2s linear infinite alternate;
}
@keyframes bulbRave {
	from {
		opacity: 1;
		box-shadow: 0 0 12px currentColor;
	}
	to {
		opacity: 0.4;
	}
}
@keyframes jackpotShake {
	0%,
	100% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(-4px) rotate(-1deg);
	}
	40% {
		transform: translateX(4px) rotate(1deg);
	}
	60% {
		transform: translateX(-3px) rotate(-0.5deg);
	}
	80% {
		transform: translateX(3px) rotate(0.5deg);
	}
}
.slotmachine.is-jackpot .slotmachine__screen {
	animation: screenPulse 0.5s ease-in-out infinite alternate;
}
@keyframes screenPulse {
	from {
		box-shadow:
			inset 0 0 20px rgba(255, 215, 0, 0.2),
			0 0 30px rgba(255, 215, 0, 0.2);
	}
	to {
		box-shadow:
			inset 0 0 40px rgba(255, 215, 0, 0.4),
			0 0 60px rgba(255, 215, 0, 0.5);
	}
}
.slotmachine.is-jackpot .slotmachine__payline {
	animation: paylinePulse 0.4s ease-in-out infinite alternate;
}
@keyframes paylinePulse {
	from {
		height: 3px;
		box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
	}
	to {
		height: 5px;
		box-shadow: 0 0 20px rgba(255, 215, 0, 1);
	}
}
.slotmachine.is-jackpot .slotmachine__win {
	animation: winBoxPulse 0.6s ease-in-out infinite alternate;
}
@keyframes winBoxPulse {
	from {
		border-color: #ffd700;
		box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
	}
	to {
		border-color: #fff;
		box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
	}
}
.slotmachine.is-jackpot .slotmachine__jackpot {
	animation: jpFlash 0.3s ease-in-out infinite alternate;
}
@keyframes jpFlash {
	from {
		color: #fff;
		text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
	}
	to {
		color: #ffd700;
		text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
	}
}
/* CONFETTI */
.slotmachine__confetti {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 10;
}
.slotmachine__confetti span {
	position: absolute;
	top: -10px;
	border-radius: 2px;
	animation: confettiFall 1.5s ease-out forwards;
}
@keyframes confettiFall {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(400px) rotate(720deg);
		opacity: 0;
	}
}
.slotmachine {
	position: relative;
	overflow: hidden;
}

/* MOBILE */
@media (max-width: 600px) {
	.hero__slots {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}
	.slotmachine {
		width: min(70vw, 240px);
	}
	.slotmachine__reel {
		width: 56px;
		height: 144px;
	}
	.slotmachine__sym {
		width: 56px;
		height: 48px;
		font-size: 28px;
	}
	@keyframes reelBlur {
		from {
			transform: translateY(0);
		}
		to {
			transform: translateY(-48px);
		}
	}
	.slotmachine__spin {
		width: 48px;
		height: 48px;
	}
	.slotmachine__jackpot {
		font-size: 18px;
	}
}

/* === recolor: cta-contrast start === */
.btn--cta,
a.btn--cta,
a.btn--cta:hover {
	color: #0a0a0a !important;
}
.promo-now__flag {
	color: #0a0a0a !important;
}
.fab__offer,
a.fab__offer {
	color: #0a0a0a !important;
}
/* === recolor: cta-contrast end === */
