:root {
	--bg-1: #ffffff;
	--bg-2: #f6f4fa;
	--bg-card: #ffffff;
	--bg-footer: #23208f;
	--gold: #a608ff;
	--gold-lt: #c44eff;
	--gold-dk: #7a00cc;
	--orange: #ff57ff;
	--orange-dk: #e63be6;
	--red: #ff57ff;
	--text: #1a1033;
	--muted: #6b6485;
	--line: #e8e3f0;
	--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 {
	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: 0 20px;
}
.hidden {
	display: none;
}

/* 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(255, 87, 255, 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(255, 87, 255, 0.65);
	animation: none;
}
@keyframes fabPulse {
	0%,
	100% {
		box-shadow:
			0 12px 30px rgba(255, 87, 255, 0.5),
			0 0 0 0 rgba(255, 87, 255, 0.55);
		transform: translateY(0) scale(1);
	}
	50% {
		box-shadow:
			0 14px 36px rgba(255, 87, 255, 0.6),
			0 0 0 14px rgba(255, 87, 255, 0);
		transform: translateY(0) scale(1.03);
	}
}
.fab__offer {
	display: inline-flex;
	align-items: center;
	padding: 0 22px 0 20px;
	height: 48px;
	color: #ffffff !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: #ffffff !important;
}
.fab__top {
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	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: #ffffff;
}
.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;
	}
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 2px 12px rgba(42, 24, 71, 0.06);
}
.header__row {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 14px 20px;
	max-width: var(--maxw);
	margin: 0 auto;
}
.logo {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}
.logo img {
	height: 36px;
	width: auto;
	display: block;
}
.footer .logo img,
.footer__brand .logo img {
	height: 44px;
}
.nav {
	display: none;
	flex: 1;
	gap: 22px;
	align-items: center;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
}
.nav__link {
	color: #3a3350;
}
.nav__link:hover {
	color: var(--gold);
}
.nav__link--hot {
	position: relative;
}
.nav__link--hot::after {
	content: "HOT";
	position: absolute;
	top: -10px;
	right: -28px;
	background: linear-gradient(135deg, #ff57ff 0%, #ff7a1a 60%, #ffd54a 100%);
	background-size: 200% 200%;
	color: #fff;
	font: 800 9px / 1 var(--font-b);
	letter-spacing: 0.08em;
	padding: 3px 6px;
	border-radius: 4px;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 0 0 rgba(255, 46, 147, 0.6);
	animation:
		hotPulse 1.8s ease-in-out infinite,
		hotShift 3s linear infinite,
		hotWobble 2.4s ease-in-out infinite;
	transform-origin: center;
	will-change: transform, box-shadow, background-position;
}
@keyframes hotPulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 46, 147, 0.6);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(255, 46, 147, 0);
	}
}
@keyframes hotShift {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 200% 200%;
	}
}
@keyframes hotWobble {
	0%,
	100% {
		transform: rotate(-4deg) scale(1);
	}
	25% {
		transform: rotate(6deg) scale(1.08);
	}
	50% {
		transform: rotate(-4deg) scale(1);
	}
	75% {
		transform: rotate(3deg) scale(1.04);
	}
}
@media (prefers-reduced-motion: reduce) {
	.nav__link--hot::after {
		animation: none;
	}
}
@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 {
		display: flex;
	}
	.burger {
		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,
a.btn--cta,
a.btn--cta:visited,
.bcard__cta.btn--cta {
	background: linear-gradient(90deg, var(--orange-dk) 0%, #8a1341 100%);
	color: #ffffff !important;
	font-weight: 800;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	box-shadow: 0 6px 20px rgba(255, 87, 255, 0.35);
}
.btn--cta:hover,
a.btn--cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(255, 87, 255, 0.55);
	color: #ffffff !important;
	background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dk) 100%);
}
.btn--ghost {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}
.btn--ghost:hover {
	background: rgba(166, 8, 255, 0.1);
}
.btn--lg {
	padding: 16px 36px;
	font-size: 16px;
}
.btn--sm {
	padding: 9px 16px;
	font-size: 12px;
}

/* HERO */
.hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(
			ellipse at 70% 40%,
			rgba(166, 8, 255, 0.22) 0%,
			transparent 55%
		),
		linear-gradient(180deg, #ffffff 0%, #f6f4fa 100%);
}
.hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0.55;
	z-index: 0;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.75) 30%,
		rgba(255, 255, 255, 0.35) 60%,
		transparent 100%
	);
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding: 80px 20px;
	max-width: var(--maxw);
	margin: 0 auto;
	width: 100%;
}
.hero__decor {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}
.hero__suit {
	position: absolute;
	width: 64px;
	height: 64px;
	opacity: 0.75;
	filter: drop-shadow(0 6px 18px rgba(166, 8, 255, 0.45));
	animation: heroFloat 7s ease-in-out infinite;
}
.hero__suit--1 {
	top: 8%;
	right: 22%;
	transform: rotate(-18deg);
	animation-delay: 0s;
}
.hero__suit--2 {
	top: 78%;
	right: 32%;
	width: 52px;
	height: 52px;
	transform: rotate(14deg);
	animation-delay: 1.4s;
}
.hero__suit--3 {
	top: 48%;
	right: 4%;
	width: 40px;
	height: 40px;
	transform: rotate(-8deg);
	animation-delay: 2.8s;
}
.hero__suit--4 {
	top: 18%;
	right: 46%;
	width: 56px;
	height: 56px;
	transform: rotate(22deg);
	animation-delay: 4.2s;
}
.hero__jackpot {
	position: absolute;
	top: 6%;
	right: 6%;
	font: 800 72px / 1 var(--font-h);
	background: linear-gradient(180deg, #ffd54a 0%, #ff57ff 55%, #a608ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: 0.04em;
	filter: drop-shadow(0 4px 16px rgba(255, 87, 255, 0.55));
	transform: rotate(-6deg);
	animation: heroFloat 6s ease-in-out infinite;
	--rot: -6deg;
}
.hero__coin {
	position: absolute;
	width: 44px;
	height: 44px;
	filter: drop-shadow(0 6px 16px rgba(166, 8, 255, 0.4));
	animation: heroFloat 5.5s ease-in-out infinite;
}
.hero__coin--1 {
	top: 32%;
	right: 8%;
	width: 52px;
	height: 52px;
	animation-delay: 0.5s;
}
.hero__coin--2 {
	top: 62%;
	right: 42%;
	width: 38px;
	height: 38px;
	animation-delay: 2s;
}
.hero__coin--3 {
	top: 88%;
	right: 10%;
	width: 46px;
	height: 46px;
	animation-delay: 3.5s;
}
.hero__star {
	position: absolute;
	color: #ff57ff;
	font-size: 28px;
	line-height: 1;
	text-shadow: 0 0 14px rgba(255, 87, 255, 0.7);
	animation: heroTwinkle 3s ease-in-out infinite;
}
.hero__star--1 {
	top: 40%;
	right: 36%;
	animation-delay: 0s;
}
.hero__star--2 {
	top: 70%;
	right: 18%;
	font-size: 36px;
	animation-delay: 1s;
}
.hero__star--3 {
	top: 14%;
	right: 42%;
	font-size: 22px;
	animation-delay: 2s;
}
@keyframes heroFloat {
	0%,
	100% {
		transform: translateY(0) rotate(var(--rot, 0deg));
	}
	50% {
		transform: translateY(-12px) rotate(var(--rot, 0deg));
	}
}
.hero__suit--1 {
	--rot: -18deg;
}
.hero__suit--2 {
	--rot: 14deg;
}
.hero__suit--3 {
	--rot: -8deg;
}
.hero__suit--4 {
	--rot: 22deg;
}
@keyframes heroTwinkle {
	0%,
	100% {
		opacity: 0.3;
		transform: scale(0.9);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}
@media (prefers-reduced-motion: reduce) {
	.hero__suit,
	.hero__star {
		animation: none;
	}
}
.hero__kicker {
	color: var(--gold-dk);
	font-weight: 700;
	letter-spacing: 0.2em;
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 16px;
	text-shadow: 0 1px 8px rgba(255, 255, 255, 0.8);
}
.hero h1 {
	max-width: 640px;
	text-shadow: 0 2px 16px rgba(255, 255, 255, 0.7);
}
.hero__sub {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	color: #2d2345;
	max-width: 560px;
	margin-bottom: 28px;
	text-shadow: 0 1px 6px rgba(255, 255, 255, 0.7);
}
.hero__usp {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	border: 0;
	border-left: 4px solid var(--orange);
	padding-left: 18px;
	background: none;
	color: var(--text);
	font-family: var(--font-h);
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: 32px;
}
.hero__usp::before {
	content: "✦";
	color: var(--orange);
	font-size: 32px;
	text-shadow: 0 0 12px rgba(255, 87, 255, 0.6);
}
.hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* QUICK NAV */
.qnav {
	background: #f6f4fa;
	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: #5a5370;
	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(166, 8, 255, 0.2);
}
.card-game__img {
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, #c44eff, #7a00cc);
	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: var(--text);
}
.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: flex;
	flex-wrap: wrap;
	gap: 12px 32px;
	align-items: center;
	justify-content: center;
}
.providers__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 84px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: #ffffff;
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.2s;
}
.providers__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.providers__item--text {
	font-family: var(--font-h);
	font-size: 20px;
	color: var(--muted);
	letter-spacing: 0.05em;
}
.providers__item:hover {
	border-color: var(--gold);
	background: rgba(166, 8, 255, 0.06);
	transform: translateY(-2px);
}
.providers__item--text:hover {
	color: var(--gold);
}

/* 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: var(--text);
}
.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: #4a4360;
	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: block;
	margin: 0 0 12px;
	padding: 0;
}
.footer__brand .logo img {
	margin: 0;
}
.footer__desc {
	color: #b8b0c8;
	font-size: 14px;
	max-width: 420px;
}
.footer__nav h4 {
	font-family: var(--font-h);
	color: #ffffff;
	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: #b8b0c8;
	font-size: 14px;
}
.footer__nav a:hover {
	color: var(--gold-lt);
}
.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 rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #b8b0c8;
	font-size: 12px;
	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: #ffffff;
	border-radius: 8px;
}
.pay img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.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: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-pill);
	color: #d8d0e8;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.footer__disc {
	color: #a8a0b8;
	font-size: 12px;
	line-height: 1.6;
	margin: 14px 0 4px;
}
.footer__copy {
	color: #8a8098;
	font-size: 12px;
	margin: 0;
}
@media (min-width: 768px) {
	.footer__top {
		grid-template-columns: 1.3fr 2.4fr;
	}
	.footer__links {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

/* UTILS */
.gold {
	color: var(--gold);
}
.center {
	text-align: center;
}
@media (max-width: 600px) {
	.hero {
		min-height: 480px;
	}
	.hero__inner {
		padding: 60px 20px;
	}
	.section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/* PAGE HEAD (hero for inner pages) */
.phead {
	position: relative;
	padding: 80px 0 40px;
	background: linear-gradient(180deg, #f6f4fa 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(42, 24, 71, 0.3) 0%, #ffffff 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: #5a5370;
	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);
}
.crumbs span {
	margin: 0 6px;
	color: #5a5370;
}

/* 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__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: #ffffff;
	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: rgba(166, 8, 255, 0.08);
	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: rgba(166, 8, 255, 0.04);
}
.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, #f9f6fc 0%, #f0e8f8 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 14px 24px 22px;
	margin: 0 0 40px;
	display: grid;
	gap: 14px;
}
.verdict > h2 {
	margin: 0;
}
.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: #1a9d48;
	border-color: #1a9d48;
}
.verdict__col--cons h3 {
	color: #c41e1e;
	border-color: #c41e1e;
}
.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: var(--text);
}
.verdict__col--pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #1a9d48;
	font-weight: 800;
}
.verdict__col--cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	top: 0;
	color: #c41e1e;
	font-weight: 800;
}
@media (min-width: 720px) {
	.verdict__cols {
		grid-template-columns: 1fr 1fr;
	}
	.verdict {
		padding: 18px 32px 28px;
	}
}

/* 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,
.rguides__card h4 {
	font: 800 15px / 1.2 var(--font-b);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 8px;
}
.rguides__card h4 a {
	color: inherit;
	text-decoration: none;
}
.rguides__card h4 a:hover {
	color: var(--gold-lt);
}
.rguides__card p {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}
.rguides > h3 {
	grid-column: 1 / -1;
	margin: 0 0 4px;
	font-family: var(--font-h);
	color: var(--text);
	letter-spacing: 0.04em;
}
@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: rgba(166, 8, 255, 0.06);
	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, #f6f4fa 0%, #ffffff 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: #4a4360;
	font-size: 1.1rem;
	max-width: 720px;
	margin-bottom: 16px;
}
.byline {
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}

/* ARTICLE */
.article {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1080px;
}
@media (max-width: 767px) {
	.article .toc {
		display: none;
	}
}
.article__body {
	max-width: min(72ch, 100%);
	line-height: 1.75;
	color: #4a4360;
	overflow-wrap: break-word;
}
.article__body h2 {
	margin-top: 40px;
	color: var(--text);
	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 {
	padding-left: 18px;
	margin: 0;
	color: #5a5370;
	font-size: 14px;
}
.toc li {
	margin-bottom: 6px;
}
.toc a {
	color: #5a5370;
}
.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: 40px 0 0;
	max-width: 1080px;
	padding: 36px 40px;
	background: linear-gradient(180deg, #faf8ff 0%, #f3edff 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
@media (max-width: 640px) {
	.related {
		padding: 24px 20px;
	}
}
.related h3 {
	color: var(--gold);
	margin: 0 0 18px;
	font-family: var(--font-h);
	letter-spacing: 0.06em;
	font-size: 1.25rem;
	text-transform: uppercase;
}
.related ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}
.related li {
	margin: 0;
}
.related li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--text);
	font-weight: 600;
	font-size: 14px;
	transition:
		border-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}
.related li a::after {
	content: "→";
	margin-left: auto;
	color: var(--gold);
	font-weight: 700;
	transition: transform 0.2s;
}
.related li a:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(166, 8, 255, 0.15);
}
.related li a:hover::after {
	transform: translateX(4px);
}

@media (min-width: 768px) {
	.article {
		grid-template-columns: 220px minmax(0, 1fr);
		column-gap: 32px;
		row-gap: 0;
		align-items: start;
	}
	.article > .toc {
		grid-column: 1;
		grid-row: 1 / span 99;
		align-self: start;
		position: sticky;
		top: 80px;
	}
	.article > *:not(.toc) {
		grid-column: 2;
	}
}

/* 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: rgba(166, 8, 255, 0.08);
	color: var(--gold);
	font-family: var(--font-h);
	letter-spacing: 0.06em;
	font-weight: 400;
	font-size: 13px;
}
.tbl tr:hover td {
	background: rgba(166, 8, 255, 0.04);
}
.tbl code {
	background: rgba(166, 8, 255, 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(255, 87, 255, 0.12) 0%,
		rgba(166, 8, 255, 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(255, 87, 255, 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(166, 8, 255, 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(45, 212, 191, 0.08);
	transform: translateY(-2px);
}

/* FAQ details/summary */
.faq-q {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	margin: 0 0 10px;
	padding: 0;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
.faq-q[open] {
	border-color: var(--gold);
	box-shadow: 0 4px 14px rgba(166, 8, 255, 0.08);
}
.faq-q summary {
	padding: 14px 18px;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 44px;
	color: var(--text);
	font-size: 15px;
	line-height: 1.4;
	user-select: none;
}
.faq-q summary::-webkit-details-marker {
	display: none;
}
.faq-q summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	transition: transform 0.2s;
}
.faq-q[open] summary::after {
	content: "−";
	transform: translateY(-50%) rotate(0);
}
.faq-q summary b {
	font-weight: 700;
}
.faq-q p {
	margin: 0;
	padding: 0 18px 16px;
	color: #4a4360;
	line-height: 1.6;
}

/* Verdict: 3 equal columns on desktop (Pros / Cons / Best For) */
@media (min-width: 720px) {
	.verdict__cols {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* RATING GAUGE — animated circular ring + stars for review verdict */
.verdict__rating {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 24px;
	align-items: center;
	padding: 8px 0 20px;
	border-bottom: 1px solid var(--line);
	margin: 0 0 20px;
}
.rating-gauge {
	position: relative;
	width: 140px;
	height: 140px;
}
.rating-gauge__ring {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.rating-gauge__bg {
	fill: none;
	stroke: rgba(166, 8, 255, 0.12);
	stroke-width: 10;
}
.rating-gauge__fill {
	fill: none;
	stroke: url(#gaugeGrad);
	stroke-width: 10;
	stroke-linecap: round;
	stroke-dasharray: 326.7;
	stroke-dashoffset: 326.7;
	filter: drop-shadow(0 0 6px rgba(166, 8, 255, 0.35));
	animation: gaugeFill 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}
@keyframes gaugeFill {
	to {
		stroke-dashoffset: 26.1;
	}
}
.rating-gauge__num {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	font-family: var(--font-n);
	color: var(--text);
	line-height: 1;
	padding: 0 18px;
}
.rating-gauge__num b {
	font: 800 34px / 1 var(--font-n);
	letter-spacing: -0.02em;
	background: linear-gradient(180deg, #a608ff 0%, #ff57ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.rating-gauge__den {
	font-size: 13px;
	color: var(--muted);
	font-weight: 700;
	margin-left: 2px;
	align-self: center;
	transform: translateY(6px);
}
.rating-gauge__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.rating-gauge__stars {
	display: inline-flex;
	gap: 4px;
}
.rating-gauge__stars i {
	width: 20px;
	height: 20px;
	background: var(--line);
	clip-path: polygon(
		50% 0,
		61% 35%,
		98% 35%,
		68% 57%,
		79% 91%,
		50% 70%,
		21% 91%,
		32% 57%,
		2% 35%,
		39% 35%
	);
	opacity: 0;
	transform: scale(0.6) rotate(-15deg);
	animation: starPop 0.5s ease-out forwards;
}
.rating-gauge__stars i:nth-child(1) {
	animation-delay: 0.4s;
}
.rating-gauge__stars i:nth-child(2) {
	animation-delay: 0.6s;
}
.rating-gauge__stars i:nth-child(3) {
	animation-delay: 0.8s;
}
.rating-gauge__stars i:nth-child(4) {
	animation-delay: 1s;
}
.rating-gauge__stars i:nth-child(5) {
	animation-delay: 1.2s;
	background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
	opacity: 0.55;
}
.rating-gauge__stars i:nth-child(-n + 4) {
	animation-name: starPopFilled;
}
@keyframes starPop {
	to {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}
@keyframes starPopFilled {
	0% {
		opacity: 0;
		transform: scale(0.6) rotate(-15deg);
		background: var(--line);
	}
	60% {
		transform: scale(1.2) rotate(5deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0);
		background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
	}
}
.rating-gauge__label {
	margin: 0;
	font: 700 11px / 1 var(--font-b);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-dk);
}
.rating-gauge__sub {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}
.rating-gauge__sub b {
	color: var(--text);
	font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
	.rating-gauge__fill {
		animation: none;
		stroke-dashoffset: 26.1;
	}
	.rating-gauge__stars i {
		animation: none;
		opacity: 1;
		transform: none;
	}
	.rating-gauge__stars i:nth-child(-n + 4) {
		background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
	}
}
@media (max-width: 540px) {
	.verdict__rating {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
	.rating-gauge__meta {
		align-items: center;
		text-align: center;
	}
}

/* HERO EXTRAS — live badge + trust row + floating bingo balls */
.hero__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(166, 8, 255, 0.18);
	border-radius: var(--radius-pill);
	padding: 6px 14px 6px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gold-dk);
	letter-spacing: 0.02em;
	margin: 0 0 16px;
	animation: floatIn 0.6s ease-out 0.2s both;
}
.hero__live b {
	color: var(--text);
	font-weight: 800;
}
.hero__live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1a9d48;
	box-shadow: 0 0 0 0 rgba(26, 157, 72, 0.5);
	animation: liveDot 1.6s ease-in-out infinite;
}
@keyframes liveDot {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(26, 157, 72, 0.55);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(26, 157, 72, 0);
	}
}
@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.hero__trust {
	display: flex;
	flex-wrap: nowrap;
	gap: 28px;
	list-style: none;
	padding: 28px 0 0;
	margin: 28px 0 0;
	border-top: 1px solid rgba(166, 8, 255, 0.15);
	max-width: none;
}
.hero__trust li {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	white-space: nowrap;
}
.hero__trust b {
	font: 800 24px / 1 var(--font-n);
	color: var(--gold-dk);
	letter-spacing: -0.01em;
	margin: 0 0 6px;
}
.hero__trust span {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}
@media (max-width: 767px) {
	.hero__trust {
		flex-wrap: wrap;
		gap: 18px 22px;
	}
}

@keyframes ballFloat {
	0%,
	100% {
		transform: translate(0, 0) rotate(-8deg);
	}
	25% {
		transform: translate(-14px, -22px) rotate(6deg);
	}
	50% {
		transform: translate(-30px, 8px) rotate(-12deg);
	}
	75% {
		transform: translate(-12px, 24px) rotate(10deg);
	}
}

@media (max-width: 767px) {
	.hero__trust {
		gap: 10px 18px;
	}
	.hero__trust b {
		font-size: 15px;
	}
	.hero__trust span {
		font-size: 10px;
	}
}
@media (prefers-reduced-motion: reduce) {
}

/* utility: spacing + layout helpers (заменяют inline-style) */
.u-mt-36 {
	margin-top: 36px;
}
.u-cta-wrap {
	margin-top: 28px;
}
.section--alt {
	background: var(--bg-2);
}
.section--full {
	max-width: none;
}
.seo--cols {
	max-width: none;
	padding: 0;
	columns: 2;
	column-gap: 32px;
	list-style: disc inside;
}
@media (max-width: 639px) {
	.seo--cols {
		columns: 1;
	}
}

/* OFFER LOADER */
.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(166, 8, 255, 0.35), transparent 55%),
		radial-gradient(
			circle at 80% 88%,
			rgba(255, 87, 255, 0.22),
			transparent 55%
		),
		radial-gradient(ellipse at center, #1a1033 0%, #0d0818 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(166, 8, 255, 0.3);
	border-top-color: var(--gold);
	animation: ol-spin 1.3s linear infinite;
}
.offer-loader__ring--inner {
	inset: 22px;
	border-color: rgba(255, 87, 255, 0.3);
	border-bottom-color: var(--orange);
	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(166, 8, 255, 0.6) 0%,
		rgba(13, 8, 24, 0.9) 75%
	);
	border: 2px solid var(--gold);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(166, 8, 255, 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(166, 8, 255, 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: rgba(255, 255, 255, 0.5);
}
.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(--orange) 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;
	}
}

/* --- MOBILE / TABLET FIXES --- */
@media (max-width: 1023px) {
	.header__row {
		flex-wrap: wrap;
		gap: 10px 14px;
		padding: 12px 16px;
	}
	.logo {
		flex: 0 0 auto;
		margin-right: auto;
	}
	.logo img {
		height: 30px;
	}
	.header__cta {
		margin-left: auto;
		gap: 8px;
	}
	.burger {
		display: none;
	}
	.nav {
		display: flex;
		flex: 1 1 100%;
		order: 3;
		flex-direction: row;
		position: static;
		background: transparent;
		gap: 6px;
		overflow-x: auto;
		overflow-y: visible;
		scrollbar-width: none;
		padding: 14px 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 var(--line);
		border-radius: 999px;
		background: var(--bg-2);
		color: var(--text);
	}
	.nav__link:hover,
	.nav__link:active {
		background: rgba(166, 8, 255, 0.08);
		border-color: var(--gold);
		color: var(--gold);
	}
	.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: 28px;
	}
	.lang {
		display: none;
	}
	.header__cta .btn--sm {
		padding: 10px 18px;
		font-size: 13px;
	}
	.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__links {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}

	.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;
	}
	.providers__item:nth-child(10) {
		grid-column: 2 / 3;
	}
}
@media (max-width: 380px) {
	.header__cta .btn--sm {
		padding: 7px 10px;
		font-size: 11px;
	}
}
