/*!
 * Stylesheet: Ocean Blue & Cyan
 * Fonts: Montserrat / Raleway
 * Date: 2026-09-17T11:03:36.281Z
 */

@import 'https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap';

:root {
	--color-muted: #7dd3fc;
	--color-primary-alpha: #0ea5e940;
	--color-text: #e0f2fe;
	--color-light: #f0f9ff;
	--color-secondary: #06b6d4;
	--color-primary: #0ea5e9;
	--color-darker: #050d15;
	--color-accent: #22d3ee;
	--color-secondary-alpha: #06b6d440;
	--color-dark: #0a1929;

	--font-heading: 'Montserrat', sans-serif;
	--font-body: 'Raleway', sans-serif;

	--sp-element: 20px;
	--sp-section: 50px;
	--sp-gap: 20px;
	--border-radius-sm: 4px;
	--border-radius-lg: 8px;
	--border-radius-full: 4px;
	--border-radius-md: 6px;
	--shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
	--shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
	--shadow-glow: 0 0 50px;
}

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

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

.jump-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-block: 12px;
	padding-inline: 24px;
	background: var(--color-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-full);
	z-index: 10000;
	transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.jump-link: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;
	}
}



@keyframes fadeIn-motion {
	from { opacity: 0; }
	to { opacity: 1; }
}

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

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

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


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

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* -- CONTAINER -- */

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

/* -- HEADER -- */

.masthead_YVe13 {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 solid rgba(255,255,255,0.06);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.masthead_YVe13.scrolled {
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.masthead_YVe13 .box_leSbH {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.masthead_YVe13 .logo {
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--color-light);
	letter-spacing: -0.02em;
}

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

.menu_2PBbI {
	display: flex;
	gap: 32px;
}

.menu_2PBbI a {
	font-weight: 500;
	color: var(--color-muted);
	font-size: 14px;
	transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* BUTTONS */

.action_u6Xyr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--font-body);
	font-size: 0.938rem;
	font-weight: 700;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.3px;
	text-decoration: none;
}

.action_u6Xyr--primary {
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	box-shadow: 0 4px 14px var(--color-primary-alpha);
}

.action_u6Xyr--primary:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px var(--color-primary-alpha);
	background: var(--color-primary);
	color: white;
}

.action_u6Xyr--secondary {
	background: transparent;
	border: 2px solid rgb(255 255 255 / 20%);
	color: var(--color-light);
}

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

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

.action_u6Xyr--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 0.813rem;
}

/* --- Hero --- */

.splash_CCfdk {
	position: relative;
	overflow: hidden;
	padding: 80px 0 60px;
}

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

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

.splash_CCfdk .box_leSbH {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.splash_CCfdk-content {
}

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

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

.splash_CCfdk-content h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	letter-spacing: -1px;
	margin-bottom: 1.25rem;
	color: var(--color-light);
}

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

.splash_CCfdk-subtitle {
	font-size: 17px;
	color: var(--color-muted);
	margin-bottom: 32px;
	max-width: 460px;
	line-height: 1.7;
}

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

.splash_CCfdk-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.splash_CCfdk-image img {
	width: 100%;
	max-width: 520px;
	height: auto;
	object-fit: contain;
}



.highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 48px 80px;
}

.stats-item {
	text-align: center;
	padding: 32px 16px;
	position: relative;
}

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

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

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

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


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

.section_4xVKZ {
	padding: var(--sp-section) 0;
}

.section_4xVKZ--gray {
	background: rgba(255,255,255,0.025);
}

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

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

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

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

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

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


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

.box_LM5ez {
	background: var(--color-dark);
	border-radius: 20px;
	padding-block: 32px;
	padding-inline: 28px;
	box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
	border: 1px solid rgba(255,255,255,0.06);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.box_LM5ez:hover {
	transform: translate(0, -6px);
	box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}


/** Bonus Cards **/

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

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

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

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

.box_LM5ez--bonus h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0.63rem;
	color: var(--color-light);
}

.box_LM5ez--bonus p {
	color: var(--color-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

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

/* GAME CARDS */

.layout_Jk81V--games {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.box_LM5ez--game {
	padding: 0px;
	overflow: hidden;
	cursor: pointer;
}

.box_LM5ez--game:hover {
	border-color: var(--color-primary);
}

.game-thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-dark);
}

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

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

.game-info {
	padding-block: 14px;
	padding-inline: 16px;
}

.game-info h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--color-light);
}

.game-info span {
	font-size: 12px;
	color: var(--color-muted);
}

.box_LM5ez-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.box_LM5ez--provider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
}

.box_LM5ez--provider:hover {
	border-color: var(--color-primary);
}

.box_LM5ez--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.box_LM5ez--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	opacity: 0;
	transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ==================== SPLIT LAYOUT ==================== */

.split-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.split-block {
	border-radius: 20px;
	padding: 40px 36px;
}

.split-block--dark {
	background: var(--color-darker);
	color: white;
}

.split-block--dark .section_4xVKZ-tag {
	color: var(--color-accent);
}

.split-block--dark h2 {
	color: white;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 12px 0px 28px;
}

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

.pay-chip {
	background: rgba(255, 255, 255, 0.08);
	border: solid rgba(255, 255, 255, 0.12) 1px;
	border-radius: 12px;
	padding: 10px 20px;
	font-size: 13px;
	color: rgb(255 255 255 / 75%);
	font-weight: 500;
	transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.split-block--white {
	background: var(--color-dark);
	border: 1px solid rgba(255,255,255,0.06);
}

.split-block--white h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.3px;
	margin: 12px 0px 28px;
}


/* ==================== REVIEWS ==================== */

.layout_Jk81V--reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-gap);
}

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

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

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

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

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

.review-item {
	padding: 1.25rem 0;
	border: 1px 0 0 0 solid rgba(255,255,255,0.06);
}

.review-item:first-child {
	border-top: none;
	padding-top: 0;
}

.review-stars {
	color: #f5a623;
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.review-text {
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 170%;
	margin-bottom: 0.38rem;
	font-style: italic;
}

.review-who {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-light);
}

.box_LM5ez--review p {
	color: var(--color-muted);
	font-style: italic;
	line-height: 1.7;
}


/** Payments Table **/

.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(--border-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(--color-accent);
	text-transform: none;
	font-size: 0.813rem;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.payment-method {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.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(--color-primary-alpha);
	border-radius: var(--border-radius-full);
	font-size: 13px;
	color: var(--color-primary);
}

/*! About */

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

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

.split-row--flipped {
	direction: rtl;
}

.split-row--flipped > * {
	direction: ltr;
}

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

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

.split-media {
	display: flex;
	align-items: center;
	justify-content: center;
}

.split-media img {
	width: 100%;
	max-width: 420px;
	max-height: 280px;
	object-fit: contain;
	border-radius: var(--border-radius-lg);
}


/* ===== CTA Blocks ===== */

.section_4xVKZ--cta {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(125deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.section_4xVKZ--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: none;
	opacity: 0.2;
}

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

.section_4xVKZ--cta h2 em {
	font-style: normal;
}

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

.section_4xVKZ--cta .action_u6Xyr {
	position: relative;
	background: white;
	color: var(--color-primary);
}

.section_4xVKZ--cta .action_u6Xyr:hover {
	background: rgb(255 255 255 / 20%);
	color: white;
}


/* SEO Text */

.info-block {
	margin-top: 48px;
	padding-top: 36px;
	padding-right: 36px;
	padding-bottom: 36px;
	padding-left: 36px;
	background: var(--color-dark);
	border-radius: var(--border-radius-lg);
	border: 1px rgba(255,255,255,0.06) solid;
}

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

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

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

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

.seo-content {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

/* FAQ */

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

.faq-item {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.06);
}

.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(--color-light);
	text-align: left;
	transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-primary-alpha);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-primary);
	font-size: 1.125rem;
	flex-shrink: 0;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.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(--color-muted);
	line-height: 1.7;
}

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

.info-table {
	width: 100%;
	max-width: 750px;
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--color-dark);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px rgb(0 0 0 / 4%);
	border: 1px solid rgba(255,255,255,0.06);
}

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.06);
}

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

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

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--color-primary);
	background: rgb(255 255 255 / 3%);
}

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


.cta-bottom {
	text-align: center;
	padding: 100px 48px;
	background: var(--color-dark);
	position: relative;
	overflow: hidden;
}

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

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

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

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

/* ===== Footer ===== */

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

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

.colophon_L1JNN-col h4 {
	font-size: 1.125rem;
	margin-bottom: 1rem;
	color: white;
}

.colophon_L1JNN-col p {
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7em;
	font-size: 0.875rem;
}

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

.colophon_L1JNN-nav a {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
}

.colophon_L1JNN-nav a:hover {
	color: white;
}

.trust-seals {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.trust-seals img {
	height: 50px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-seals img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.responsible-gaming {
	text-align: center;
	padding-block: 40px;
	padding-inline: 0;
	border: solid 1px 0 rgba(255, 255, 255, 0.08);
}

.responsible-gaming h4 {
	font-size: 16px;
	margin-bottom: 12px;
	color: rgba(255,255,255,0.5);
}

.responsible-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1.25rem;
}

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

.responsible-gaming a {
	display: block;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.responsible-gaming img {
	height: 40px;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.colophon_L1JNN-bottom {
	padding-block: 24px;
	padding-inline: 0;
	text-align: center;
}

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

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

.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 --- */

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

.nav-toggle span {
	width: 24px;
	height: 3px;
	background: var(--color-light);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

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

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

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

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


/* ==================== RESPONSIVE - TABLET ==================== */

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

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

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

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

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

	.split-row { grid-template-columns: 1fr; }

	.split-row { grid-template-columns: 1fr; }
	.split-row--flipped { direction: ltr; }

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

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

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

	.trust-seals { justify-content: center; }
}


/* --- Responsive - Mobile --- */

@media (max-width: 769px) {
	.masthead_YVe13 .box_leSbH {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

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

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

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

	.masthead_YVe13-actions {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.menu_2PBbI {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 85%;
		max-width: 400px;
		height: 100vh;
		height: 100dvh;
		background: var(--color-dark);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
		border-left: 2px solid var(--color-primary);
		z-index: 1001;
		gap: 0px;
		overflow-y: auto;
	}

	.menu_2PBbI.active {
		right: 0px;
	}

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

	.splash_CCfdk { padding-top: 48px; padding-bottom: 32px; }
	.splash_CCfdk-content h1 { font-size: 2rem; }
	.highlights {
		grid-template-columns: 1fr 1fr;
		padding-bottom: 48px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.section_4xVKZ { padding: 60px 0px; }
	.box_leSbH { padding: 0 20px; }
	.section_4xVKZ-title { font-size: 1.75rem; }
	.section_4xVKZ-head h2 { font-size: 1.75rem; }
	.cta-bottom { padding: 60px 20px; }

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

	.split-block {
		padding: 28px 24px;
		border-radius: 14px;
	}

	.pay-grid { gap: 8px; }

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

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

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

@media (max-width: 479px) {
	.box_leSbH { padding: 0 16px; }
	.splash_CCfdk-ctas { flex-direction: column; }
	.splash_CCfdk-ctas .action_u6Xyr { width: 100%; }
	.highlights {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.layout_Jk81V--games { grid-template-columns: 1fr 1fr; }
	.layout_Jk81V--providers { grid-template-columns: repeat(2, 1fr); }

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

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

	.split-block {
		padding: 24px 16px;
		border-radius: 12px;
	}

	.box_LM5ez { padding: 20px 16px; }
	.info-block { padding: 20px 16px; }

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

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