/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Electric Pink
 * Typography: Sporty Bold
 * Generated: 2026-08-26T12:59:34.385Z
 */

@import "https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap";

:root {
	/* Colors */
	--c-muted: #f9a8d4;
	--c-secondary: #f472b6;
	--c-primary: #ec4899;
	--c-light: #fdf2f8;
	--c-text: #fce7f3;
	--c-primary-alpha: #ec489940;
	--c-darker: #0d0509;
	--c-dark: #1a0a14;
	--c-secondary-alpha: #f472b640;
	--c-accent: #f9a8d4;

	/* Typography */
	--font-family-body: 'Lato', sans-serif;
	--font-family-heading: 'Russo One', sans-serif;

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

	/* Border Radius */
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-sm: 4px;
	--radius-full: 100px;

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

/*! Base */

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

.skip-to-main {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--c-primary);
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-full);
	z-index: 10000;
	transition: top 0.25s ease;
}

.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 {
	from { opacity: 0; }
	to { opacity: 1; }
}

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

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



html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family: var(--font-family-body);
	background: var(--c-darker);
	color: var(--c-light);
	line-height: 1.7;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

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

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

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


/* CONTAINER */

.container_B7Do0 {
	width: 100%;
	max-width: 75rem;
	margin: 0px auto;
	padding-top: 0;
	padding-right: 48px;
	padding-bottom: 0;
	padding-left: 48px;
}


/* ==================== HEADER ==================== */

.site-header_Ry54n {
	position: sticky;
	top: 0px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 solid rgba(255,255,255,0.07);
	transition: all 0.25s ease;
}

.site-header_Ry54n.scrolled {
	background: rgb(0 0 0 / 80%);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header_Ry54n .container_B7Do0 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.site-header_Ry54n .logo {
	font-family: var(--font-family-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--c-light);
	letter-spacing: -0.02em;
}

.site-header_Ry54n .logo span {
	color: var(--c-primary);
}

.nav_efPB5 {
	display: flex;
	gap: 2rem;
}

.nav_efPB5 a {
	font-weight: 500;
	color: var(--c-muted);
	font-size: 14px;
	transition: color 0.25s ease;
}

.nav_efPB5 a:hover {
	color: var(--c-primary);
}

.site-header_Ry54n-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

/* -- BUTTONS -- */

.cta_EbIfm {
	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: 999px;
	cursor: pointer;
	transition: all 0.25s ease;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.cta_EbIfm--primary {
	background: linear-gradient(to bottom, var(--c-primary) 0%, var(--c-secondary) 100%);
	border: none;
	color: rgb(255, 255, 255);
	box-shadow: 0 4px 14px var(--c-primary-alpha);
}

.cta_EbIfm--primary:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 8px 25px var(--c-primary-alpha);
}

.cta_EbIfm--secondary {
	background: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	color: var(--c-light);
}

.cta_EbIfm--secondary:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
}

.cta_EbIfm--large {
	padding: 16px 36px;
	font-size: 16px;
}

.cta_EbIfm--small {
	padding: 8px 20px;
	font-size: 13px;
}


/** Hero **/

.splash_J6Vm6 {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 60px;
	padding-left: 0;
}

.splash_J6Vm6::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -150px;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, var(--c-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.splash_J6Vm6::after {
	content: '';
	position: absolute;
	bottom: -120px;
	left: -180px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--c-secondary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.splash_J6Vm6 .container_B7Do0 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.splash_J6Vm6-content {
}

.splash_J6Vm6-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--c-primary-alpha);
	border: solid 1px var(--c-primary-alpha);
	border-radius: 999px;
	font-size: 0.813rem;
	font-weight: 600;
	color: var(--c-primary);
	margin-bottom: 1.5rem;
}

.splash_J6Vm6-badge i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--c-primary);
}

.splash_J6Vm6-content h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	letter-spacing: -0.04em;
	margin-bottom: 20px;
	color: var(--c-light);
}

.splash_J6Vm6-content h1 em {
	font-style: normal;
	color: var(--c-primary);
}

.splash_J6Vm6-subtitle {
	font-size: 1.063rem;
	color: var(--c-muted);
	margin-bottom: 32px;
	max-width: 420px;
	line-height: 1.7em;
}

.splash_J6Vm6-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.splash_J6Vm6-image {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.splash_J6Vm6-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	box-shadow: var(--sh-elevated);
}


/* ==================== STATS BAR ==================== */

.casino-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 75rem;
	margin: 0 auto;
	padding-top: 0;
	padding-right: 48px;
	padding-bottom: 80px;
	padding-left: 48px;
}

.key-stat {
	text-align: center;
	padding-block: 32px;
	padding-inline: 16px;
	position: relative;
}

.key-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 25%;
	height: 50%;
	width: 1px;
	background: rgba(255,255,255,0.07);
}

.highlight-num {
	font-family: var(--font-family-heading);
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--c-light);
	letter-spacing: -0.5px;
}

.highlight-num em {
	font-style: normal;
	color: var(--c-primary);
}

.stats-label {
	font-size: 0.813rem;
	color: var(--c-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
	margin-top: 4px;
}

/* SECTIONS */

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

.block_EeqZT--gray {
	background: rgba(255,255,255,0.035);
}

.block_EeqZT-tag {
	display: inline-block;
	font-size: 12px;
	color: var(--c-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.block_EeqZT-head {
	text-align: center;
	margin-bottom: 56px;
}

.block_EeqZT-head h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	letter-spacing: -0.03em;
	margin-bottom: 14px;
}

.block_EeqZT-head p {
	font-size: 1rem;
	color: var(--c-muted);
	max-width: 480px;
	margin: 0px auto;
}

.block_EeqZT-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	text-align: center;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.block_EeqZT-subtitle {
	text-align: center;
	font-size: 1rem;
	color: var(--c-muted);
	margin-bottom: 48px;
	max-width: 480px;
	margin-inline: auto;
}


/* ===== Cards ===== */

.item_1iKmr {
	background: var(--c-dark);
	border-radius: 18px;
	padding-top: 32px;
	padding-right: 28px;
	padding-bottom: 32px;
	padding-left: 28px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255,255,255,0.07);
	transition: all 0.25s ease;
}

.item_1iKmr:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}


/* Bonus Cards */

.items_fbbDM--bonuses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.item_1iKmr--bonus {
	position: relative;
	overflow: hidden;
}

.item_1iKmr--bonus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0px;
	height: 4px;
	background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}

.bonus-step {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.item_1iKmr--bonus h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--c-light);
}

.item_1iKmr--bonus p {
	color: var(--c-muted);
	font-size: 14px;
	line-height: 170%;
	margin-bottom: 16px;
}

.bonus-badge {
	display: inline-block;
	background: var(--c-primary-alpha);
	color: var(--c-primary);
	padding: 5px 14px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 1rem;
}

/** Game Cards — Portrait 3/4 with overlay **/

.items_fbbDM--games {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.item_1iKmr--game {
	padding: 0px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	border: 1px solid rgba(255,255,255,0.07);
}

.item_1iKmr--game:hover {
	border-color: var(--c-primary);
	transform: none;
	box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.game-thumb {
	aspect-ratio: 3/4;
	overflow: hidden;
	background: var(--c-dark);
	position: relative;
}

.game-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.item_1iKmr--game:hover .game-thumb img {
	transform: scale(1.1);
}

.item_1iKmr-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 20px 14px 12px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.item_1iKmr-name {
	font-size: 13px;
	font-weight: 600;
	color: rgb(255, 255, 255);
	display: block;
}

.item_1iKmr-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.65);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 0.25s ease;
}

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

.play-btn {
	width: 50px;
	height: 52px;
	border-radius: 50%;
	background: var(--c-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgb(255, 255, 255);
	font-size: 1.125rem;
	box-shadow: 0 4px 20px var(--c-primary-alpha);
	transition: transform 0.25s ease;
}

.item_1iKmr--game:hover .play-btn {
	transform: translateY(-2px);
}


.items_fbbDM--providers {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.item_1iKmr--provider {
	display: flex;
	place-content: center;
	place-items: center;
	padding: 13px 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--c-muted);
	text-align: center;
	background: var(--c-dark);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: var(--radius-md);
	transition: all 0.25s ease;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: none;
}

.item_1iKmr--provider:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
	background: var(--c-primary-alpha);
	transform: none;
	box-shadow: none;
}

/* ==================== PAYMENTS STANDALONE ==================== */

.payments-card {
	background: var(--c-dark);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 18px;
	padding-top: 40px;
	padding-right: 36px;
	padding-bottom: 40px;
	padding-left: 36px;
}

.pay-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.pay-chip {
	background: rgba(255,255,255,0.08);
	border: solid 1px rgba(255,255,255,0.12);
	border-radius: 12px;
	padding-block: 10px;
	padding-inline: 20px;
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	font-weight: 500;
	transition: background 0.25s ease;
}

.pay-chip:hover {
	background: rgba(255, 255, 255, 0.15);
}

.payments-table-wrap {
	overflow-x: auto;
	margin-top: 24px;
}

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

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

.payments-table thead {
	background: rgba(255,255,255,0.05);
}

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

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

.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-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	background: var(--c-primary-alpha);
	border-radius: var(--radius-full);
	font-size: 13px;
	color: var(--c-primary);
}


/* REVIEWS */

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

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

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

.reviewer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--c-primary), var(--c-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: rgb(255, 255, 255);
	flex-shrink: 0;
	font-size: 16px;
}

.reviewer-info strong {
	display: block;
	color: var(--c-light);
}

.stars {
	color: #f59e0b;
	font-size: 0.938rem;
	letter-spacing: 2px;
}

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

/* --- About --- */

.info-layout {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

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

.info-row--reverse {
	direction: rtl;
}

.info-row--reverse > * {
	direction: ltr;
}

.info-text h3 {
	font-size: 28px;
	margin-bottom: 1rem;
	color: var(--c-light);
}

.info-text p {
	color: var(--c-muted);
	margin-bottom: 1rem;
	line-height: 180%;
}

.info-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-visual img {
	width: 100%;
	max-width: 380px;
	max-height: 320px;
	object-fit: contain;
	border-radius: var(--radius-lg);
}

/* ==================== CTA BLOCKS — GRADIENT BORDER CARD ==================== */

.block_EeqZT--cta {
	text-align: center;
	padding: var(--pad-section) 0;
}

.cta-card {
	background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(180deg, var(--c-primary), var(--c-secondary)) border-box;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 60px 48px;
	position: relative;
	overflow: hidden;
}

.cta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 350px;
	background: radial-gradient(ellipse, var(--c-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.cta-card h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--c-light);
	margin-bottom: 16px;
	position: relative;
}

.cta-card h2 em {
	font-style: normal;
	color: var(--c-primary);
}

.cta-card p {
	font-size: 1.125rem;
	color: var(--c-muted);
	margin-bottom: 32px;
	position: relative;
}

.cta-card .cta_EbIfm--primary {
	position: relative;
}


/* SEO Text */

.seo-block {
	margin-top: 3rem;
	padding-top: 36px;
	padding-right: 36px;
	padding-bottom: 36px;
	padding-left: 36px;
	background: var(--c-dark);
	border-radius: var(--radius-lg);
	border: solid 1px rgba(255,255,255,0.07);
}

.seo-block h3 {
	font-size: 22px;
	margin-bottom: 16px;
	color: var(--c-light);
}

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

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

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

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

.seo-content h2 {
	font-size: 36px;
	margin-bottom: 24px;
	color: var(--c-light);
}

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

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

/*! FAQ */

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

.faq-item {
	border: 0 0 1px 0 solid rgba(255,255,255,0.07);
}

.faq-question {
	width: 100%;
	padding-top: 22px;
	padding-right: 0;
	padding-bottom: 22px;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: var(--c-light);
	text-align: left;
	transition: color 0.25s ease;
}

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

.faq-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--c-primary-alpha);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-primary);
	font-size: 18px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

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

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

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

.faq-answer p {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 22px;
	padding-left: 0;
	color: var(--c-muted);
	line-height: 170%;
}

/* Info Table */

.info-table {
	width: 100%;
	max-width: 800px;
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: var(--c-dark);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(255,255,255,0.07);
}

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

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

.info-table tr:nth-child(even) {
	background: rgb(255 255 255 / 2%);
}

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

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

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

/*! CTA Bottom */

.cta-bottom {
	text-align: center;
	padding-block: 100px;
	padding-inline: 48px;
	background: linear-gradient(var(--c-dark), var(--c-dark)) padding-box, linear-gradient(180deg, var(--c-primary), var(--c-secondary)) border-box;
	border: 1px solid transparent;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.cta-bottom::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 500px;
	background: radial-gradient(ellipse, var(--c-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.cta-bottom h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -1.5px;
	margin-bottom: 16px;
	position: relative;
}

.cta-bottom h2 em {
	font-style: normal;
	color: var(--c-primary);
}

.cta-bottom p {
	color: var(--c-muted);
	font-size: 17px;
	margin-bottom: 36px;
	position: relative;
}


/*! Footer — 4 columns */

.bottom-bar_P7MhT {
	background: var(--c-darker);
	padding-top: 60px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.bottom-bar_P7MhT-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 48px;
}

.bottom-bar_P7MhT-col h4 {
	font-size: 0.813rem;
	margin-bottom: 1rem;
	color: rgb(255 255 255 / 60%);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.bottom-bar_P7MhT-col p {
	color: rgb(255 255 255 / 50%);
	line-height: 1.7em;
	font-size: 14px;
}

.bottom-bar_P7MhT-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bottom-bar_P7MhT-nav a {
	color: rgb(255 255 255 / 60%);
	font-size: 0.875rem;
}

.bottom-bar_P7MhT-nav a:hover {
	color: var(--c-light);
}

.badge-strip {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.badge-strip img {
	height: 28px;
	width: auto;
	opacity: 0.4;
	transition: all 0.25s ease;
}

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

.gaming-care {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gaming-care a {
	display: block;
	transition: all 0.25s ease;
}

.gaming-care a:hover {
	transform: translate(0, -3px);
}

.gaming-care img {
	height: 28px;
	width: auto;
	filter: saturate(0) brightness(1.8);
	transition: all 0.25s ease;
}

.gaming-care a:hover img {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

.bottom-bar_P7MhT-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 8px;
}

.bottom-bar_P7MhT-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-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6;
}

/*! Hamburger */

.toggle-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

.toggle-btn span {
	width: 26px;
	height: 2px;
	background: var(--c-light);
	transition: all 0.25s ease;
	border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

@media (max-width: 1023px) {
	.splash_J6Vm6 .container_B7Do0 {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.splash_J6Vm6-content { order: 1; }
	.splash_J6Vm6-image { order: 2; max-width: 400px; margin: 0 auto; }
	.splash_J6Vm6-subtitle { margin-left: auto; margin-right: auto; }
	.splash_J6Vm6-ctas { justify-content: center; }

	.container_B7Do0 { padding-left: 32px; padding-right: 32px; }

	.casino-stats {
		grid-template-columns: repeat(2, 1fr);
		padding-left: 32px;
		padding-right: 32px;
	}

	.items_fbbDM--bonuses { grid-template-columns: 1fr; }
	.items_fbbDM--games { grid-template-columns: repeat(4, 1fr); }
	.items_fbbDM--providers { grid-template-columns: repeat(5, 1fr); }
	.items_fbbDM--reviews { grid-template-columns: repeat(2, 1fr); }

	.info-row { grid-template-columns: 1fr; }
	.info-row--reverse { direction: ltr; }

	.cta-bottom {
		padding-left: 32px;
		padding-right: 32px;
	}

	.bottom-bar_P7MhT-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
	}
}

/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
	.site-header_Ry54n .container_B7Do0 {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--font-family-heading);
		font-size: 17px;
		font-weight: 800;
		color: var(--c-light);
		text-decoration: none;
		white-space: nowrap;
	}

	.logo-mobile span {
		color: var(--c-primary);
	}

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 160px;
		padding: 9px 16px;
		background: var(--c-primary);
		color: rgb(255, 255, 255);
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		border-radius: 999px;
		box-shadow: 0 4px 14px var(--c-primary-alpha);
	}

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

	.toggle-btn {
		display: flex;
	}

	.nav_efPB5 {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 400px;
		height: 100vh;
		height: 100dvh;
		background: var(--c-dark);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.25s ease;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
		border-left: 2px solid var(--c-primary);
		z-index: 1001;
		gap: 0;
		overflow-y: auto;
	}

	.nav_efPB5.active {
		right: 0;
	}

	.nav_efPB5 a {
		font-size: 1.125rem;
		padding: 0.8rem 0px;
		border-bottom: 1px solid rgba(255,255,255,0.07);
		color: var(--c-light);
	}

	.splash_J6Vm6 { padding-top: 48px; padding-bottom: 32px; }
	.splash_J6Vm6-image { max-width: 360px; }
	.splash_J6Vm6-content h1 { font-size: 2rem; }
	.casino-stats {
		grid-template-columns: 1fr 1fr;
		padding-bottom: 48px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.block_EeqZT { padding: 60px 0; }
	.container_B7Do0 { padding: 0 20px; }
	.block_EeqZT-title { font-size: 1.75rem; }
	.block_EeqZT-head h2 { font-size: 1.75rem; }
	.cta-bottom { padding: 60px 20px; border-radius: 12px; }
	.cta-card { padding: 40px 24px; border-radius: 14px; }

	.items_fbbDM--bonuses { grid-template-columns: 1fr; }
	.items_fbbDM--games { grid-template-columns: repeat(3, 1fr); }
	.items_fbbDM--providers { grid-template-columns: repeat(4, 1fr); }
	.items_fbbDM--reviews { grid-template-columns: 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;
	}

	.payments-card { padding: 28px 24px; border-radius: 14px; }

	.item_1iKmr { padding: 24px 20px; }
	.item_1iKmr--review { padding: 20px; }

	.seo-block { padding: 24px 20px; }

	.info-table th,
	.info-table td { padding: 14px 16px; }

	.bottom-bar_P7MhT-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 30em) {
	.container_B7Do0 { padding: 0 16px; }
	.splash_J6Vm6-ctas { flex-direction: column; }
	.splash_J6Vm6-ctas .cta_EbIfm { width: 100%; }
	.casino-stats {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.items_fbbDM--games { grid-template-columns: repeat(2, 1fr); }
	.items_fbbDM--providers { grid-template-columns: repeat(3, 1fr); }

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

	.cta-bottom { padding: 48px 16px; }
	.cta-bottom h2 { font-size: 1.75rem; }
	.cta-card { padding: 36px 20px; }

	.item_1iKmr { padding: 20px 16px; }
	.seo-block { padding: 20px 16px; }

	.info-table th,
	.info-table td { padding: 12px 14px; }

	.info-table th { width: 45%; }
}