/* Auto-generated stylesheet | Midnight Gold | Classic Power */

@import "https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&family=Rubik:wght@400;500&display=swap";

:root {
	/* Colors */
	--c-darker: #0d0b02;
	--c-secondary: #eab308;
	--c-dark: #1a1505;
	--c-light: #fefce8;
	--c-muted: #facc15;
	--c-primary: #ca8a04;
	--c-primary-alpha: #ca8a0440;
	--c-accent: #fde047;
	--c-secondary-alpha: #eab30840;
	--c-text: #fef08a;

	/* Typography */
	--typo-body: 'Rubik', sans-serif;
	--typo-heading: 'Teko', sans-serif;

	/* Spacing */
	--grid-gap: 12px;
	--pad-section: 40px;
	--pad-element: 16px;

	/* Border Radius */
	--border-radius-full: 4px;
	--border-radius-lg: 8px;
	--border-radius-sm: 4px;
	--border-radius-md: 6px;

	/* Shadows */
	--sh-elevated: 0 15px 50px rgba(0,0,0,0.5);
	--sh-glow: 0 0 50px;
	--sh-card: 0 8px 40px rgba(0,0,0,0.4);
}

/*! Base */

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

.skip-to-main {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--c-primary);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-md);
	z-index: 10000;
	transition: top 0.3s ease-in-out;
}

.skip-to-main:focus {
	top: 10px;
	outline: 3px solid var(--c-accent);
	outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--c-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 fadeIn-anim {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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


html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

/* --- Container --- */

.content-wrap_lycrk {
	max-width: 80rem;
	margin: 0px auto;
	padding-block: 0;
	padding-inline: 24px;
}

/*
 * Header
 */

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

.site-header_WkT2R.scrolled {
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 12px;
	padding-left: 0px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.site-header_WkT2R .logo {
	font-family: var(--typo-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.nav-links_ZEBIH {
	display: flex;
	gap: 32px;
}

.nav-links_ZEBIH a {
	font-weight: 500;
	color: var(--c-text);
	opacity: 0.8;
	transition: all 0.3s ease-in-out;
}

.nav-links_ZEBIH a:hover {
	opacity: 1;
	color: var(--c-accent);
}

.site-header_WkT2R-actions {
	display: flex;
	gap: 0.75rem;
}


.link-btn_7P1Rz {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--typo-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.link-btn_7P1Rz--primary {
	background: transparent;
	border: 2px solid var(--c-primary);
	color: var(--c-primary);
}

.link-btn_7P1Rz--primary:hover {
	transform: translate(0, -3px);
	box-shadow: var(--sh-elevated);
	background: var(--c-primary);
	color: rgb(255,255,255);
}

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

.link-btn_7P1Rz--secondary:hover {
	background: var(--c-text);
	color: var(--c-dark);
}

.link-btn_7P1Rz--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 17px;
}

.link-btn_7P1Rz--small {
	padding: 8px 20px;
	font-size: 14px;
}



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

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

.showcase_YXAdj .content-wrap_lycrk {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.showcase_YXAdj-content {
	order: 1;
}

.showcase_YXAdj-badge {
	display: inline-block;
	padding-block: 8px;
	padding-inline: 20px;
	background: var(--c-primary-alpha);
	border: 1px solid var(--c-primary);
	border-radius: var(--border-radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--c-accent);
	margin-bottom: 1.5rem;
}

.showcase_YXAdj-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 20px;
	color: rgb(255,255,255);
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.showcase_YXAdj-subtitle {
	font-size: 20px;
	color: var(--c-muted);
	margin-bottom: 2rem;
	max-width: 540px;
}

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

.showcase_YXAdj-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

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

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

.showcase_YXAdj-image {
	order: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: visible;
}

.showcase_YXAdj-image::before {
	content: '';
	position: absolute;
	inset: -10%;
	background: radial-gradient(circle, var(--c-primary-alpha) 0%, transparent 65%);
	z-index: -1;
}

.showcase_YXAdj-image img {
	width: 100%;
	max-width: 480px;
	max-height: 460px;
	object-fit: contain;
	transform: translateX(8%) scale(1.08);
}


.section_9z2pV {
	padding: var(--pad-section) 0px;
}

.section_9z2pV-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 1rem;
	color: #fff;
}

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

/* ==================== CARDS ==================== */

.tile_ltcX1 {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 2%) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
	border-radius: var(--border-radius-lg);
	padding: var(--pad-element);
	transition: all 0.3s ease-in-out;
}

.tile_ltcX1:hover {
	transform: translateY(-8px);
	box-shadow: var(--sh-elevated);
	border-color: var(--c-primary);
}

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

.tile_ltcX1--bonus {
	text-align: center;
	padding-block: 40px;
	padding-inline: 30px;
}

.tile_ltcX1-icon {
	font-size: 3.5rem;
	margin-bottom: 1.25rem;
}

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

.tile_ltcX1--bonus p {
	color: var(--c-muted);
	margin-bottom: 24px;
	line-height: 1.7;
}

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

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

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

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

.tile_ltcX1-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

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

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

.tile_ltcX1-name {
	font-weight: 600;
	color: white;
}

.grid_Y24H3--providers {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: var(--grid-gap);
}

.tile_ltcX1--provider {
	display: flex;
	place-content: center;
	place-items: center;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 5/2;
	position: relative;
}

.tile_ltcX1--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: brightness(0.6) contrast(0.8);
	transition: all 0.3s ease-in-out;
}

.tile_ltcX1--provider:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.06);
}

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

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

.grid_Y24H3--reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--grid-gap);
}

.tile_ltcX1--review {
	padding-top: 28px;
	padding-right: 28px;
	padding-bottom: 28px;
	padding-left: 28px;
}

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

.reviewer-avatar {
	width: 50px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(170deg, var(--c-primary), var(--c-secondary));
	display: flex;
	place-content: center;
	place-items: center;
	font-weight: 700;
	color: white;
}

.reviewer-info strong {
	display: block;
	color: white;
}

.stars {
	color: var(--c-accent);
	font-size: 0.875rem;
}

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

/* ===== About / Content Layout ===== */

.alternating {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.alt-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.alt-row--flip {
	direction: rtl;
}

.alt-row--flip > * {
	direction: ltr;
}

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

.alt-text p {
	color: var(--c-muted);
	margin-bottom: 16px;
	line-height: 180%;
}

.alt-media {
	display: flex;
	place-content: center;
	place-items: center;
}

.alt-media img {
	width: 100%;
	max-width: 420px;
	max-height: 340px;
	object-fit: contain;
}


/* CTA BLOCKS */

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

.section_9z2pV--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.2;
}

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

.section_9z2pV--cta p {
	font-size: 19px;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
	position: relative;
}

.section_9z2pV--cta .link-btn_7P1Rz {
	position: relative;
	background: #FFF;
	color: var(--c-primary);
}

.section_9z2pV--cta .link-btn_7P1Rz:hover {
	background: var(--c-dark);
	color: rgb(255,255,255);
}

/* PAYMENTS TABLE */

.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

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

.payments-table th,
.payments-table td {
	padding-block: 20px;
	padding-inline: 24px;
	text-align: left;
}

.payments-table thead {
	background: rgb(255 255 255 / 5%);
}

.payments-table th {
	font-weight: 600;
	color: var(--c-accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.03em;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
	transition: background 0.3s ease-in-out;
}

.payments-table tbody tr:hover {
	background: rgb(255 255 255 / 3%);
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding-block: 4px;
	padding-inline: 12px;
	background: var(--c-primary-alpha);
	border-radius: var(--border-radius-full);
	font-size: 13px;
	color: var(--c-accent);
}


.about-text {
	margin-top: 48px;
	padding: 40px;
	background: rgba(255,255,255,0.02);
	border-radius: var(--border-radius-lg);
	border: solid 1px rgba(255, 255, 255, 0.05);
}

.about-text h3 {
	font-size: 24px;
	margin-bottom: 1.25rem;
	color: var(--c-accent);
}

.about-text p {
	color: var(--c-muted);
	margin-bottom: 16px;
	line-height: 1.8em;
}

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

.section_9z2pV--seo-text {
	background: var(--c-dark);
}

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

.seo-content h2 {
	font-size: 2.5rem;
	margin-bottom: 24px;
	color: white;
}

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

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



.faq-list {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--border-radius-md);
	margin-bottom: 12px;
	background: rgb(255 255 255 / 2%);
}

.faq-question {
	width: 100%;
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 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: white;
	text-align: left;
	transition: color 0.3s ease-in-out;
}

.faq-question:hover {
	color: var(--c-accent);
}

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--c-primary);
	transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-icon {
	transform: rotate(90deg);
}

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 24px 24px;
	color: var(--c-muted);
	line-height: 1.8;
}

/* --- Info Table --- */

.info-table {
	width: 100%;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
}

.info-table tr {
	border: rgba(255, 255, 255, 0.05) solid 0 0 1px 0;
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table th,
.info-table td {
	padding: 20px 24px;
	text-align: left;
}

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--c-accent);
	background: rgba(255,255,255,0.02);
}

.info-table td {
	color: var(--c-muted);
}


/*! Footer */

.bottom-bar_k3WUG {
	background: var(--c-darker);
	padding: 80px 0px 0 0;
	border: solid 1px 0 0 0 rgb(255 255 255 / 5%);
}

.bottom-bar_k3WUG-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.bottom-bar_k3WUG-col h4 {
	font-size: 1.25rem;
	margin-bottom: 20px;
	color: var(--c-accent);
}

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

.bottom-bar_k3WUG-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bottom-bar_k3WUG-nav a {
	color: var(--c-muted);
}

.bottom-bar_k3WUG-nav a:hover {
	color: var(--c-accent);
}

.badge-strip {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.badge-strip img {
	height: 50px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 0.3s ease-in-out;
}

.badge-strip img:hover {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

.responsible-gaming {
	text-align: center;
	padding: 40px 0 40px 0px;
	border: 1px 0 solid rgb(255 255 255 / 5%);
}

.responsible-gaming h4 {
	font-size: 1rem;
	margin-bottom: 12px;
	color: var(--c-muted);
}

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

.responsible-gaming {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.responsible-gaming a {
	display: block;
	transition: all 0.3s ease-in-out;
}

.responsible-gaming a:hover {
	transform: scale(1.02);
}

.responsible-gaming img {
	height: 40px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.3s ease-in-out;
}

.responsible-gaming a:hover img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

.bottom-bar_k3WUG-bottom {
	padding-top: 24px;
	padding-right: 0;
	padding-bottom: 24px;
	padding-left: 0;
	text-align: center;
}

.bottom-bar_k3WUG-bottom p {
	font-size: 0.875rem;
	color: var(--c-muted);
	opacity: 0.7;
	margin-bottom: 8px;
}

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

.footer-update {
	margin-top: 16px;
	opacity: 0.6;
}

.footer-legal {
	font-weight: 500;
}

.footer-disclaimer {
	max-width: 720px;
	margin: 12px auto 0;
	opacity: 0.5;
	line-height: 1.6;
}


/** Hamburger & Mobile **/

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

.burger span {
	width: 28px;
	height: 2px;
	background: var(--c-accent);
	transition: all 0.3s ease-in-out;
	border-radius: 2px;
}

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

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

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

.logo-mobile,
.mobile-cta {
	display: none;
}


@media (max-width: 63.9375em) {
	.showcase_YXAdj .content-wrap_lycrk {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.alt-row { grid-template-columns: 1fr; }
	.alt-row--flip { direction: ltr; }

	.bottom-bar_k3WUG-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

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

	.badge-strip { justify-content: center; }
}

/* RESPONSIVE - MOBILE */

@media (max-width: 48rem) {
	.site-header_WkT2R {
		padding: 0;
	}

	.site-header_WkT2R .content-wrap_lycrk {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 0.75rem;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--typo-heading);
		font-size: 1.063rem;
		font-weight: 700;
		color: var(--c-accent);
		text-transform: none;
		text-decoration: none;
		white-space: nowrap;
	}

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

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

	.burger {
		display: flex;
	}

	.nav-links_ZEBIH {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 360px;
		height: 100vh;
		background: var(--c-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.3s ease-in-out;
		box-shadow: -8px 0 32px rgba(0,0,0,0.7);
		border-left: 2px solid var(--c-primary);
		z-index: 1001;
		gap: 0px;
	}

	.nav-links_ZEBIH.active {
		right: 0px;
	}

	.nav-links_ZEBIH a {
		font-size: 1.188rem;
		padding: 1rem 0;
		border-bottom: 1px solid rgb(255 255 255 / 10%);
	}

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

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

	.payments-table th:nth-child(2),
	.payments-table th:nth-child(3),
	.payments-table td:nth-child(2),
	.payments-table td:nth-child(3) {
		display: none;
	}

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

@media (max-width: 480px) {
	.content-wrap_lycrk { padding: 0px 16px; }
	.section_9z2pV { padding: 60px 0; }
	.showcase_YXAdj-ctas { flex-direction: column; }
	.showcase_YXAdj-ctas .link-btn_7P1Rz { width: 100%; }

	.logo-mobile { font-size: 15px; }
	.mobile-cta {
		padding: 8px 12px;
		font-size: 12px;
		max-width: 140px;
	}
}

/* ==================== BNG LAYOUT PASS (2026-09-17) ==================== */

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

/* --- shared prose block (replaces the old monolithic seo-content dump) --- */

.bng-prose {
	max-width: 860px;
	margin: 40px auto 0;
	padding: 32px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--border-radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.bng-prose h3 {
	font-size: 24px;
	margin-bottom: 1rem;
	color: var(--c-accent);
}

.bng-prose p {
	color: var(--c-muted);
	line-height: 1.8em;
}

/* --- cashier table (renamed payments-table family) --- */

.bng-cashier { overflow-x: auto; margin-bottom: 40px; }

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

.bng-cashier__table th,
.bng-cashier__table td {
	padding-block: 18px;
	padding-inline: 22px;
	text-align: left;
}

.bng-cashier__table thead { background: rgb(255 255 255 / 5%); }

.bng-cashier__table th {
	font-weight: 600;
	color: var(--c-accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.03em;
}

.bng-cashier__table tbody tr { transition: background 0.3s ease-in-out; }
.bng-cashier__table tbody tr:hover { background: rgb(255 255 255 / 3%); }

.bng-cashier__method { display: flex; align-items: center; gap: 16px; font-weight: 500; }

.bng-cashier__eta {
	display: inline-block;
	padding-block: 4px;
	padding-inline: 12px;
	background: var(--c-primary-alpha);
	border-radius: var(--border-radius-full);
	font-size: 13px;
	color: var(--c-accent);
}

/* --- Lucky Spin flip card --- */

.bng-flip { padding: var(--pad-section) 0; background: var(--c-dark); }

.bng-flip__stage {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: center;
	max-width: 760px;
	margin: 0 auto;
}

.bng-flip__card {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	perspective: 1200px;
}

.bng-flip__face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	border-radius: var(--border-radius-lg);
	backface-visibility: hidden;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	text-align: center;
}

.bng-flip__face--front {
	background: linear-gradient(160deg, var(--c-dark), var(--c-darker));
	border: 2px solid var(--c-primary);
	transform: rotateY(0deg);
}

.bng-flip__face--front img { width: 70%; max-width: 160px; border-radius: var(--border-radius-md); }

.bng-flip__hint {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--c-muted);
}

.bng-flip__face--back {
	background: linear-gradient(160deg, var(--c-primary), var(--c-secondary));
	transform: rotateY(180deg);
	color: var(--c-darker);
}

.bng-flip__card.is-flipped .bng-flip__face--front { transform: rotateY(-180deg); }
.bng-flip__card.is-flipped .bng-flip__face--back { transform: rotateY(0deg); }

.bng-flip__pct { font-size: 2.75rem; line-height: 1; }
.bng-flip__desc { font-size: 15px; font-weight: 600; max-width: 200px; }

.bng-flip__claim p { color: var(--c-muted); margin-bottom: 16px; font-size: 14px; }

/* --- stats / RTP scoreboard --- */

.bng-stats { padding: var(--pad-section) 0; }

.bng-stats__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 980px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bng-stats__grid.bng-in-view { opacity: 1; transform: none; }

.bng-stats__label { font-size: 14px; color: var(--c-muted); margin-bottom: 12px; }

.bng-stats__bar {
	display: flex;
	height: 22px;
	border-radius: var(--border-radius-full);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.bng-stats__seg--slots { background: var(--c-primary); }
.bng-stats__seg--table { background: var(--c-accent); }
.bng-stats__seg--live { background: var(--c-secondary); }

.bng-stats__legend { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.bng-stats__legend li { display: flex; align-items: center; gap: 10px; color: var(--c-muted); font-size: 14px; }

.bng-stats__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.bng-stats__dot--slots { background: var(--c-primary); }
.bng-stats__dot--table { background: var(--c-accent); }
.bng-stats__dot--live { background: var(--c-secondary); }

.bng-stats__gauge { text-align: center; }
.bng-stats__arc { width: 100%; max-width: 220px; }
.bng-stats__arc-fill { transition: stroke-dasharray 1s ease-out; }
.bng-stats__gauge-value { font-family: var(--typo-heading); font-size: 2.5rem; color: var(--c-accent); margin-top: -28px; }

/* --- mobile app teaser --- */

.bng-app { padding: var(--pad-section) 0; background: var(--c-dark); }

.bng-app__layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 56px;
	align-items: center;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bng-app__layout.bng-in-view { opacity: 1; transform: none; }

.bng-app__phone {
	width: 200px;
	height: 400px;
	margin: 0 auto;
	border-radius: 32px;
	background: linear-gradient(160deg, var(--c-darker), var(--c-dark));
	border: 6px solid rgba(255, 255, 255, 0.08);
	padding: 18px 14px;
}

.bng-app__screen { height: 100%; display: flex; flex-direction: column; gap: 12px; }
.bng-app__notch { width: 40%; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); margin: 0 auto 8px; }
.bng-app__row { height: 34px; border-radius: 8px; background: rgba(255, 255, 255, 0.06); }
.bng-app__row--short { width: 60%; }

.bng-app__copy p { color: var(--c-muted); margin-bottom: 16px; line-height: 1.8; }
.bng-app__list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.bng-app__list li { color: var(--c-muted); padding-left: 26px; position: relative; }
.bng-app__list li::before { content: '\2713'; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }

/* --- story (about alternating rows) --- */

.bng-story { display: flex; flex-direction: column; gap: 60px; }
.bng-story__row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bng-story__row--flip { direction: rtl; }
.bng-story__row--flip > * { direction: ltr; }
.bng-story__copy h3 { font-size: 32px; margin-bottom: 20px; color: var(--c-accent); }
.bng-story__copy p { color: var(--c-muted); margin-bottom: 16px; line-height: 180%; }
.bng-story__media { display: flex; place-content: center; place-items: center; }
.bng-story__media img { width: 100%; max-width: 420px; max-height: 340px; object-fit: contain; }

/* --- region AU cards --- */

.bng-au { padding: var(--pad-section) 0; }
.bng-au__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap);
	opacity: 0;
	transition: opacity 0.5s ease-out;
}
.bng-au__grid.bng-in-view { opacity: 1; }
.bng-au__card {
	padding: 28px;
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--border-radius-lg);
}
.bng-au__card h3 { font-size: 20px; color: var(--c-accent); margin-bottom: 12px; }
.bng-au__card p { color: var(--c-muted); line-height: 1.7; font-size: 14.5px; }

/* --- info table (renamed) --- */

.bng-rundown__table {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
}
.bng-rundown__table th, .bng-rundown__table td { padding: 20px 24px; text-align: left; }
.bng-rundown__table th { width: 40%; font-weight: 600; color: var(--c-accent); background: rgba(255, 255, 255, 0.02); }
.bng-rundown__table td { color: var(--c-muted); }

/* --- FAQ (renamed) --- */

.bng-banter__list { max-width: 860px; margin: 0 auto; }
.bng-banter__item { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--border-radius-md); margin-bottom: 12px; background: rgb(255 255 255 / 2%); }
.bng-banter__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: white;
	text-align: left;
	transition: color 0.3s ease-in-out;
}
.bng-banter__q:hover { color: var(--c-accent); }
.bng-banter__icon { font-size: 1.5rem; font-weight: 400; color: var(--c-primary); transition: transform 0.3s ease-in-out; display: inline-block; }
.bng-banter__item.active .bng-banter__icon { transform: rotate(135deg); }
.bng-banter__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
.bng-banter__item.active .bng-banter__a { max-height: 500px; }
.bng-banter__a p { padding: 0 24px 24px; color: var(--c-muted); line-height: 1.8; }

/* --- reviewer voice (renamed) --- */

.bng-voice__avatar { width: 50px; height: 48px; border-radius: 50%; background: linear-gradient(170deg, var(--c-primary), var(--c-secondary)); display: flex; place-content: center; place-items: center; font-weight: 700; color: white; }
.bng-voice__meta strong { display: block; color: white; }
.bng-voice__stars { color: var(--c-accent); font-size: 0.875rem; }

/* --- responsible gaming / footer (renamed) --- */

.bng-safeplay { text-align: center; padding: 40px 0; border-top: 1px solid rgb(255 255 255 / 5%); }
.bng-safeplay h4 { font-size: 1rem; margin-bottom: 12px; color: var(--c-muted); }
.bng-safeplay__lead { font-size: 14px; color: var(--c-muted); opacity: 0.8; margin-bottom: 20px; }
.bng-safeplay__links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.bng-safeplay__links a { display: block; transition: all 0.3s ease-in-out; }
.bng-safeplay__links a:hover { transform: scale(1.02); }
.bng-safeplay__links img { height: 40px; filter: grayscale(80%) brightness(1.5); transition: all 0.3s ease-in-out; }
.bng-safeplay__links a:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }

.bng-foot__updated { margin-top: 16px; opacity: 0.6; }
.bng-foot__legal { font-weight: 500; }
.bng-foot__disclaimer { max-width: 720px; margin: 12px auto 0; opacity: 0.5; line-height: 1.6; }

.bottom-bar_k3WUG-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

/* ==================== DYNAMICS (fresh IDs: C6, D3, A8, F7, F5) ==================== */

@keyframes bng-blurin { from { filter: blur(10px); opacity: 0; } to { filter: blur(0); opacity: 1; } }
.bng-fx-blurin { animation: bng-blurin 0.8s ease-out both; }

@keyframes bng-arrow-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.bng-fx-arrow { display: inline-block; animation: bng-arrow-nudge 1.2s ease-in-out infinite; }

.bng-fx-chip { transition: box-shadow 0.3s ease-in-out; }
.bng-fx-chip:hover { box-shadow: 0 0 0 4px var(--c-primary-alpha); }

@media (min-width: 64em) {
	.showcase_YXAdj-image img { will-change: transform; }
}

@media (max-width: 63.9375em) {
	.bng-flip__stage { grid-template-columns: 1fr; justify-items: center; }
	.bng-flip__card { max-width: 260px; }
	.bng-stats__grid { grid-template-columns: 1fr; gap: 32px; }
	.bng-app__layout { grid-template-columns: 1fr; text-align: center; justify-items: center; }
	.bng-story__row { grid-template-columns: 1fr; }
	.bng-story__row--flip { direction: ltr; }
	.bng-au__grid { grid-template-columns: 1fr; }
	.bottom-bar_k3WUG-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 48rem) {
	.bottom-bar_k3WUG-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.bng-fx-blurin { animation: none; opacity: 1; filter: none; }
	.bng-stats__arc-fill { transition: none; }
}