

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap");

:root {
	/* Colors */
	--color-primary: #22c55e;
	--color-accent: #86efac;
	--color-text: #dcfce7;
	--color-darker: #021a0d;
	--color-secondary-alpha: #4ade8040;
	--color-primary-alpha: #22c55e40;
	--color-secondary: #4ade80;
	--color-dark: #052e16;
	--color-light: #f0fdf4;
	--color-muted: #86efac;

	/* Typography */
	--font-family-heading: 'Orbitron', sans-serif;
	--font-family-body: 'Titillium Web', sans-serif;

	/* Spacing */
	--element-space: 16px;
	--item-gap: 12px;
	--section-space: 40px;

	/* Border Radius */
	--r-lg: 28px;
	--r-full: 50px;
	--r-sm: 12px;
	--r-md: 20px;

	/* Shadows */
	--sh-elevated: 0 4px 16px rgba(0,0,0,0.2);
	--sh-card: 0 2px 8px rgba(0,0,0,0.15);
	--sh-glow: 0 0 20px;
}


/* ==================== BASE ==================== */

*, *::before, *::after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.skip-9x {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--color-primary);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 0.35s ease;
}

.skip-9x:focus {
	top: 10px;
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -- ANIMATIONS -- */

@keyframes do-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes play-slideUp {
	from {
		opacity: 0;
		transform: translateY(1.5rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse-up {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}

@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}


html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-body);
	background: var(--color-darker);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family-heading);
	font-weight: 700;
	line-height: 1.2;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.35s ease;
}

/* -- CONTAINER -- */

.inner_u5tsK {
	max-width: 1320px;
	margin: 0px auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}


.site-header_96GNh {
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
	background: rgb(0 0 0 / 85%);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: all 0.35s ease;
}

.site-header_96GNh.scrolled-9x {
	background: rgba(0,0,0,0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0;
	box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.site-header_96GNh .inner_u5tsK {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header_96GNh .logo {
	font-family: var(--font-family-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: none;
	letter-spacing: 0.5px;
}

.main-nav_y7FiZ {
	display: flex;
	gap: 2rem;
}

.main-nav_y7FiZ a {
	font-weight: 500;
	color: var(--color-text);
	opacity: 0.8;
	transition: all 0.35s ease;
}

.main-nav_y7FiZ a:hover {
	opacity: 1;
	color: var(--color-accent);
}

.site-header_96GNh-actions {
	display: flex;
	gap: 12px;
}


/* BUTTONS */

button[data-reel-control]{cursor:pointer;font:inherit}
button[data-reel-control="reel"]{background:transparent;border:0;color:inherit;display:block;margin:0;padding:0;text-align:inherit;width:100%}

.btn_z4NWs {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--font-family-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: all 0.35s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn_z4NWs--primary {
	background: var(--color-primary);
	border: none;
	color: #fff;
}

.btn_z4NWs--primary:hover {
	transform: scale(1.03);
	box-shadow: var(--sh-elevated);
}

.btn_z4NWs--secondary {
	background: transparent;
	border: 2px solid var(--color-text);
	color: var(--color-text);
}

.btn_z4NWs--secondary:hover {
	background: var(--color-text);
	color: var(--color-dark);
}

.btn_z4NWs--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 1.063rem;
}

.btn_z4NWs--small {
	padding: 8px 20px;
	font-size: 0.875rem;
}


/* ==================== HERO ==================== */

.intro_uENph {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	background: linear-gradient(150deg, var(--color-dark) 0%, var(--color-darker) 50%, var(--color-dark) 100%);
	position: relative;
	overflow: hidden;
}

.intro_uENph::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, var(--color-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--color-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

.intro_uENph .inner_u5tsK {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.intro_uENph-content {
	order: 2;
}

.intro_uENph-badge {
	display: inline-block;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	background: var(--color-primary-alpha);
	border: var(--color-primary) solid 1px;
	border-radius: var(--r-full);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.intro_uENph-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.25rem;
	color: #fff;
	text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.intro_uENph-subtitle {
	font-size: 1.25rem;
	color: var(--color-muted);
	margin-bottom: 32px;
	max-width: 540px;
}

.intro_uENph-subtitle strong {
	color: var(--color-accent);
}

.intro_uENph-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.intro_uENph-features {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.intro_uENph-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-muted);
}

.intro_uENph-feature span {
	font-size: 19px;
}

.intro_uENph-image {
	order: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.intro_uENph-image img {
	width: 100%;
	max-width: 500px;
	max-height: 480px;
	object-fit: contain;
}

/* ==================== SECTIONS ==================== */

.zone_DO7u0 {
	padding: var(--section-space) 0px;
}

.zone_DO7u0-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 16px;
	color: #FFF;
}

.zone_DO7u0-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--color-muted);
	margin-bottom: 3rem;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}


/** Cards **/

.item_mC0Gh {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
	border-radius: var(--r-lg);
	padding: var(--element-space);
	transition: all 0.35s ease;
}

.item_mC0Gh:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: var(--sh-elevated);
	border-color: var(--color-primary);
}

.items_nkwsa--bonuses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--item-gap);
}

.item_mC0Gh--bonus {
	text-align: center;
	padding: 40px 30px;
}

.item_mC0Gh-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.item_mC0Gh--bonus h3 {
	font-size: 24px;
	margin-bottom: 16px;
	color: var(--color-accent);
}

.item_mC0Gh--bonus p {
	color: var(--color-muted);
	margin-bottom: 1.5rem;
	line-height: 1.7em;
}

.items_nkwsa--games {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--item-gap);
}

.item_mC0Gh--game {
	position: relative;
	padding: 0px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.item_mC0Gh--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease-out;
}

.item_mC0Gh--game:hover img {
	transform: scale(1.05);
}

.item_mC0Gh-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.item_mC0Gh--game:hover .item_mC0Gh-overlay {
	opacity: 1;
}

.item_mC0Gh-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.item_mC0Gh-name {
	font-weight: 600;
	color: #ffffff;
}

.items_nkwsa--providers {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--item-gap);
}

.item_mC0Gh--provider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 2.5 / 1;
	position: relative;
}

.item_mC0Gh--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: saturate(0) brightness(1.8);
	transition: all 0.35s ease;
}

.item_mC0Gh--provider:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.05) rotate(-2deg);
}

.item_mC0Gh--provider span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0;
	padding: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.item_mC0Gh--provider:hover span {
	opacity: 1;
}

.items_nkwsa--reviews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--item-gap);
}

.item_mC0Gh--review {
	padding: 28px;
}

.item_mC0Gh-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 1rem;
}

.voice-9x-avatar {
	width: 52px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
	display: flex;
	place-content: center;
	place-items: center;
	font-weight: 700;
	color: rgb(255, 255, 255);
}

.voice-9x-info strong {
	display: block;
	color: #ffffff;
}

.vote-9x-stars {
	color: var(--color-accent);
	font-size: 14px;
}

.item_mC0Gh--review p {
	color: var(--color-muted);
	font-style: italic;
	line-height: 170%;
}


/*! About / Content Layout */

.duo-9x-layout {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.duo-9x-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.75rem;
	align-items: center;
}

.duo-9x-row--flipped {
	direction: rtl;
}

.duo-9x-row--flipped > * {
	direction: ltr;
}

.duo-9x-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--color-accent);
}

.duo-9x-text p {
	color: var(--color-muted);
	margin-bottom: 16px;
	line-height: 1.8;
}

.duo-9x-media {
	display: flex;
	place-content: center;
	place-items: center;
}

.duo-9x-media img {
	width: 100%;
	max-width: 380px;
	max-height: 280px;
	object-fit: contain;
}

/*
 * CTA Blocks
 */

.zone_DO7u0--cta {
	text-align: center;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.zone_DO7u0--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
	opacity: 0.3;
}

.zone_DO7u0--cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: rgb(255, 255, 255);
	margin-bottom: 16px;
	position: relative;
}

.zone_DO7u0--cta p {
	font-size: 19px;
	color: rgb(255 255 255 / 90%);
	margin-bottom: 32px;
	position: relative;
}

.zone_DO7u0--cta .btn_z4NWs {
	position: relative;
	background: rgb(255,255,255);
	color: var(--color-primary);
}

.zone_DO7u0--cta .btn_z4NWs:hover {
	background: var(--color-dark);
	color: rgb(255,255,255);
}

/* -- PAYMENTS TABLE -- */

.paytable-9x-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

.paytable-9x {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.paytable-9x th,
.paytable-9x td {
	padding-block: 20px;
	padding-inline: 24px;
	text-align: left;
}

.paytable-9x thead {
	background: rgb(255 255 255 / 5%);
}

.paytable-9x th {
	font-weight: 600;
	color: var(--color-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.8px;
}

.paytable-9x tbody tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
	transition: background 0.35s ease;
}

.paytable-9x tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

.payline-9x {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.payline-9x img {
	height: 32px;
	width: auto;
}

.eta-9x {
	display: inline-block;
	padding: 4px 12px;
	background: var(--color-primary-alpha);
	border-radius: var(--r-full);
	font-size: 0.813rem;
	color: var(--color-accent);
}

/*
 * SEO Text
 */

.blurb-9x {
	margin-top: 48px;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	background: rgba(255,255,255,0.02);
	border-radius: var(--r-lg);
	border: solid 1px rgba(255, 255, 255, 0.05);
}

.blurb-9x h3 {
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	color: var(--color-accent);
}

.blurb-9x p {
	color: var(--color-muted);
	margin-bottom: 16px;
	line-height: 1.8;
}

.blurb-9x p:last-child {
	margin-bottom: 0px;
}

.zone_DO7u0--seo-text {
	background: var(--color-dark);
}

.seo-content {
	max-width: 900px;
	margin-inline: auto;
}

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: #FFFFFF;
}

.seo-content h3 {
	font-size: 28px;
	margin: 32px 0 16px;
	color: var(--color-accent);
}

.seo-content p {
	color: var(--color-muted);
	margin-bottom: 20px;
	line-height: 190%;
}

/* ===== FAQ ===== */

.qna-9x-list {
	max-width: 800px;
	margin: 0 auto;
}

.qna-9x-item {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 8%);
	border-radius: var(--r-md);
	margin-bottom: 12px;
	background: rgb(255 255 255 / 2%);
}

.qna-9x-q {
	width: 100%;
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	text-align: left;
	transition: color 0.35s ease;
}

.qna-9x-q:hover {
	color: var(--color-accent);
}

.qna-9x-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--color-primary);
	transition: transform 0.35s ease;
}

.qna-9x-item.active .qna-9x-icon {
	transform: rotate(45deg);
}

.qna-9x-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.qna-9x-item.active .qna-9x-a {
	max-height: 500px;
}

.qna-9x-a p {
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	color: var(--color-muted);
	line-height: 1.8;
}


.specs-9x {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255,255,255,0.02);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.specs-9x tr {
	border: 0 0 1px 0 solid rgba(255,255,255,0.05);
}

.specs-9x tr:last-child {
	border-bottom: none;
}

.specs-9x th,
.specs-9x td {
	padding-block: 20px;
	padding-inline: 24px;
	text-align: left;
}

.specs-9x th {
	width: 40%;
	font-weight: 600;
	color: var(--color-accent);
	background: rgba(255, 255, 255, 0.02);
}

.specs-9x td {
	color: var(--color-muted);
}


/* ==================== FOOTER ==================== */

.footer_sJF6o {
	background: var(--color-darker);
	padding-top: 80px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
}

.footer_sJF6o-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 60px;
}

.footer_sJF6o-col h4 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--color-accent);
}

.footer_sJF6o-col p {
	color: var(--color-muted);
	line-height: 1.8;
}

.footer_sJF6o-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer_sJF6o-nav a {
	color: var(--color-muted);
}

.footer_sJF6o-nav a:hover {
	color: var(--color-accent);
}

.seal-9x {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.seal-9x img {
	height: 50px;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all 0.35s ease;
}

.seal-9x img:hover {
	filter: none;
	opacity: 1;
}

.safeplay-9x {
	text-align: center;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 40px;
	padding-left: 0px;
	border: 1px 0 solid rgba(255, 255, 255, 0.05);
}

.safeplay-9x h4 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
	color: var(--color-muted);
}

.safeplay-9x-text {
	font-size: 14px;
	color: var(--color-muted);
	opacity: 0.8;
	margin-bottom: 20px;
}

.safeplay-9x-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.safeplay-9x-links a {
	display: block;
	transition: all 0.35s ease;
}

.safeplay-9x-links a:hover {
	transform: scale(1.02);
}

.safeplay-9x-links img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 0.35s ease;
}

.safeplay-9x-links a:hover img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

.footer_sJF6o-bottom {
	padding: 24px 0;
	text-align: center;
}

.footer_sJF6o-bottom p {
	font-size: 14px;
	color: var(--color-muted);
	opacity: 0.7;
	margin-bottom: 8px;
}

.footer_sJF6o-bottom p:last-child {
	margin-bottom: 0px;
}

.foot-9x-update {
	margin-top: 1rem;
	opacity: 0.6;
}

.foot-9x-legal {
	font-weight: 500;
}

.foot-9x-disclaimer {
	max-width: 720px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6em;
}

/** Hamburger & Mobile **/

.burger-9x {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

.burger-9x span {
	width: 24px;
	height: 2px;
	background: var(--color-accent);
	transition: all 0.35s ease;
	border-radius: 2px;
}

.burger-9x.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.burger-9x.active span:nth-child(2) {
	opacity: 0;
}

.burger-9x.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.brand-9x-mini,
.cta-9x-mini {
	display: none;
}


/*! Responsive - Tablet */

@media (max-width: 1024px) {
	.intro_uENph .inner_u5tsK {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.intro_uENph-content { order: 1; }
	.intro_uENph-image { order: 2; }
	.intro_uENph-subtitle { margin-left: auto; margin-right: auto; }
	.intro_uENph-ctas { justify-content: center; }
	.intro_uENph-features { justify-content: center; }

	.items_nkwsa--bonuses,
	.items_nkwsa--games,
	.items_nkwsa--providers { grid-template-columns: repeat(2, 1fr); }

	.items_nkwsa--reviews { grid-template-columns: 1fr 1fr; }

	.duo-9x-row { grid-template-columns: 1fr; }
	.duo-9x-row--flipped { direction: ltr; }

	.footer_sJF6o-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
	}

	.footer_sJF6o-nav {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.seal-9x { justify-content: center; }
}

/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 47.9375em) {
	.site-header_96GNh {
		padding: 0;
	}

	.site-header_96GNh .inner_u5tsK {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 12px;
	}

	.logo {
		display: none;
	}

	.brand-9x-mini {
		display: block;
		font-family: var(--font-family-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--color-accent);
		text-transform: uppercase;
		text-decoration: none;
		white-space: nowrap;
	}

	.cta-9x-mini {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
		color: #FFFFFF;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.05em;
		border-radius: var(--r-md);
		box-shadow: 0 4px 15px var(--color-primary-alpha);
	}

	.site-header_96GNh-actions {
		display: none;
	}

	.burger-9x {
		display: flex;
	}

	.main-nav_y7FiZ {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background: var(--color-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.35s ease;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
		border-left: 2px solid var(--color-primary);
		z-index: 1001;
		gap: 0;
	}

	.main-nav_y7FiZ.active {
		right: 0px;
	}

	.main-nav_y7FiZ a {
		font-size: 19px;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.items_nkwsa--bonuses,
	.items_nkwsa--games,
	.items_nkwsa--reviews {
		grid-template-columns: 1fr;
	}

	.items_nkwsa--providers {
		grid-template-columns: repeat(2, 1fr);
	}

	.paytable-9x th:nth-child(2),
	.paytable-9x th:nth-child(3),
	.paytable-9x td:nth-child(2),
	.paytable-9x td:nth-child(3) {
		display: none;
	}

	.zone_DO7u0-title { font-size: 2rem; }
	.intro_uENph-content h1 { font-size: 2.5rem; }
	.intro_uENph { padding-top: 100px; }
}

@media (max-width: 479px) {
	.inner_u5tsK { padding: 0px 16px; }
	.zone_DO7u0 { padding: 60px 0px; }
	.intro_uENph-ctas { flex-direction: column; }
	.intro_uENph-ctas .btn_z4NWs { width: 100%; }

	.brand-9x-mini { font-size: 15px; }
	.cta-9x-mini {
		padding: 8px 12px;
		font-size: 0.75rem;
		max-width: 140px;
	}
}


/* ==================== HERO DYNAMICS ==================== */

.intro_uENph::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1.5px);
	background-size: 34px 34px;
	opacity: 0.08;
	animation: spin96-drift 44s linear infinite;
	pointer-events: none;
}

@keyframes spin96-drift {
	from { background-position: 0 0; }
	to { background-position: 340px 170px; }
}

.spin96-focus-in {
	animation: spin96-focus 0.8s ease-out both;
}

@keyframes spin96-focus {
	from { opacity: 0; filter: blur(9px); transform: translateY(6px); }
	to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.spin96-nudge {
	display: inline-block;
	animation: spin96-arrow 1.3s ease-in-out infinite;
}

@keyframes spin96-arrow {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

.spin96-reel {
	position: absolute;
	top: 8%;
	right: 6%;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 2px dashed var(--color-accent);
	opacity: 0.45;
	animation: spin96-rotate 16s linear infinite;
	pointer-events: none;
}

.spin96-reel::before {
	content: '';
	position: absolute;
	inset: 12px;
	border-radius: 50%;
	border: 2px solid var(--color-primary);
	opacity: 0.6;
}

@keyframes spin96-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.spin96-reel { display: none; }
}


/* ==================== SNAPSHOT STRIP ==================== */

.tally-9x {
	padding: 36px 0;
	background: var(--color-dark);
	border-bottom: 1px solid var(--color-primary-alpha);
}

.tally-9x-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.tally-9x-num {
	display: block;
	font-family: var(--font-family-heading);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: var(--color-accent);
	font-weight: 700;
}

.tally-9x-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 0.85rem;
	color: var(--color-muted);
	margin-top: 4px;
}

.tally-9x-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-accent);
	animation: spin96-live 1.6s ease-in-out infinite;
}

@keyframes spin96-live {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--color-primary-alpha); }
	50% { opacity: 0.55; box-shadow: 0 0 0 4px transparent; }
}

@media (max-width: 767px) {
	.tally-9x-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}


/* ==================== GAME MIX CHART ==================== */

.mix-9x-wrap {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.mix-9x-chart {
	width: 220px;
	height: 220px;
	flex-shrink: 0;
}

.mix-9x-track {
	fill: none;
	stroke: var(--color-primary-alpha);
	stroke-width: 18;
}

.mix-9x-seg {
	fill: none;
	stroke-width: 18;
	stroke-linecap: butt;
	transform-origin: 100px 100px;
	transform: rotate(-90deg);
	stroke-dasharray: 0 439.8;
	transition: stroke-dasharray 1.1s ease-out;
}

.mix-9x-seg--slots { stroke: var(--color-accent); transition-delay: 0s; }
.mix-9x-seg--live { stroke: var(--color-secondary); transition-delay: 0.15s; }
.mix-9x-seg--table { stroke: var(--color-primary); transition-delay: 0.3s; }

.mix-9x-chart.in-view .mix-9x-seg--slots { stroke-dasharray: 347.4 92.4; }
.mix-9x-chart.in-view .mix-9x-seg--live { stroke-dasharray: 66 373.8; stroke-dashoffset: -347.4; }
.mix-9x-chart.in-view .mix-9x-seg--table { stroke-dasharray: 26.4 413.4; stroke-dashoffset: -413.4; }

.mix-9x-total {
	fill: #fff;
	font-family: var(--font-family-heading);
	font-size: 22px;
	font-weight: 700;
	text-anchor: middle;
}

.mix-9x-total-label {
	fill: var(--color-muted);
	font-family: var(--font-family-body);
	font-size: 11px;
	text-anchor: middle;
}

.mix-9x-legend {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: var(--color-muted);
}

.mix-9x-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 10px;
}

.mix-9x-dot--slots { background: var(--color-accent); }
.mix-9x-dot--live { background: var(--color-secondary); }
.mix-9x-dot--table { background: var(--color-primary); }


/* ==================== VIP LADDER ==================== */

.ladder-9x-steps {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	margin-top: 28px;
	padding: 0 4px;
}

.ladder-9x-step {
	flex: 1;
	height: calc(38px + var(--step) * 16px);
	background: linear-gradient(180deg, var(--color-primary-alpha), var(--color-primary));
	border-radius: var(--r-sm) var(--r-sm) 0 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 8px;
	position: relative;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	transition-delay: calc(var(--step) * 0.06s);
}

.ladder-9x-steps.in-view .ladder-9x-step {
	opacity: 1;
	transform: translateY(0);
}

.ladder-9x-step-num {
	font-family: var(--font-family-heading);
	font-size: 0.8rem;
	color: var(--color-darker);
	font-weight: 700;
}

.ladder-9x-step--top {
	background: linear-gradient(180deg, var(--color-accent), var(--color-secondary));
}

.ladder-9x-badge {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-accent);
	color: var(--color-darker);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--r-full);
	white-space: nowrap;
}

.ladder-9x-note {
	margin-top: 20px;
	color: var(--color-muted);
	font-size: 0.95rem;
}

@media (max-width: 767px) {
	.ladder-9x-steps { gap: 6px; }
	.ladder-9x-step-num { font-size: 0.65rem; }
}


/* ==================== PROS & CONS ==================== */

.balance-9x-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-top: 24px;
}

.balance-9x-col {
	padding: 28px;
	border-radius: var(--r-md);
	background: var(--color-dark);
}

.balance-9x-col--pro { border: 1px solid var(--color-primary-alpha); }
.balance-9x-col--con { border: 1px solid rgba(255,255,255,0.08); }

.balance-9x-col h3 {
	margin-bottom: 14px;
	color: var(--color-accent);
}

.balance-9x-col--con h3 { color: var(--color-muted); }

.balance-9x-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--color-muted);
}

.balance-9x-col--pro li::before { content: '✓ '; color: var(--color-accent); font-weight: 700; }
.balance-9x-col--con li::before { content: '– '; color: var(--color-muted); font-weight: 700; }

@media (max-width: 767px) {
	.balance-9x-grid { grid-template-columns: 1fr; }
}


/* ==================== GLOSSARY ==================== */

.terms-9x-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 32px;
	margin-top: 24px;
}

.terms-9x-item dt {
	font-family: var(--font-family-heading);
	color: var(--color-accent);
	font-size: 0.95rem;
	margin-bottom: 4px;
}

.terms-9x-item dd {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.terms-9x-grid { grid-template-columns: 1fr; }
}