/*
 * Theme: Ocean Blue & Cyan
 * Typography: Sporty Bold
 */

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

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

	--heading-font: 'Russo One', sans-serif;
	--body-font: 'Lato', sans-serif;

	--section-padding: 50px;
	--gap: 20px;
	--element-spacing: 20px;
	--r-md: 12px;
	--r-sm: 8px;
	--r-full: 8px;
	--r-lg: 16px;
	--shadow-card: 0 4px 20px rgba(0,0,0,0.25);
	--shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-glow: 0 0 30px;
}


*, *::before, *::after {
	margin: 0;
	padding: 0px;
	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: rgb(255,255,255);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-full);
	z-index: 10000;
	transition: top 0.35s ease-out;
}

.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;
	}
}

/* ===== Animations ===== */

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

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



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

body {
	font-family: var(--body-font);
	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(--heading-font);
	font-weight: 800;
	line-height: 115%;
	color: var(--color-light);
}

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

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

/* ==================== CONTAINER ==================== */

.box_BMuOd {
	width: 100%;
	max-width: 1220px;
	margin-inline: auto;
	padding: 0 48px;
}

/* -- HEADER -- */

.top-bar_kXODb {
	position: sticky;
	top: 0px;
	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.07);
	transition: all 0.35s ease-out;
}

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

.top-bar_kXODb .box_BMuOd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

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

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

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

.nav-links_AdbFS a {
	font-weight: 500;
	color: var(--color-muted);
	font-size: 0.875rem;
	transition: color 0.35s ease-out;
}

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

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

/* ==================== BUTTONS ==================== */

.cta_1DYSS {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--body-font);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.35s ease-out;
	letter-spacing: 0.02em;
	text-decoration: none;
}

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

.cta_1DYSS--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--color-primary-alpha);
	background: var(--color-primary);
	color: rgb(255,255,255);
}

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

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

.cta_1DYSS--large {
	padding-top: 16px;
	padding-right: 36px;
	padding-bottom: 16px;
	padding-left: 36px;
	font-size: 16px;
}

.cta_1DYSS--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 0.813rem;
}


/*! Hero */

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

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

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

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

.intro_dUhOm-content {
}

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

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

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

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

.intro_dUhOm-subtitle {
	font-size: 17px;
	color: var(--color-muted);
	margin-bottom: 32px;
	max-width: 440px;
	line-height: 170%;
}

.intro_dUhOm-ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

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

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


/* Stats Bar */

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

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

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

.stats-val {
	font-family: var(--heading-font);
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--color-light);
	letter-spacing: -0.03em;
}

.stats-val em {
	font-style: normal;
	color: var(--color-primary);
}

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


/** Sections **/

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

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

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

.segment_DSRUz-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

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

.segment_DSRUz-head p {
	font-size: 16px;
	color: var(--color-muted);
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

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

.segment_DSRUz-subtitle {
	text-align: center;
	font-size: 16px;
	color: var(--color-muted);
	margin-bottom: 48px;
	max-width: 460px;
	margin: 0 auto;
}


/* CARDS */

.box_GLB0A {
	background: var(--color-dark);
	border-radius: 14px;
	padding-block: 32px;
	padding-inline: 28px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
	transition: all 0.35s ease-out;
}

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


/* Bonus Cards */

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

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

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

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

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

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

.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: 12px;
	font-weight: 700;
	margin-bottom: 16px;
}

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

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

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

.box_GLB0A--game:hover {
	border-color: var(--color-primary);
	transform: none;
	box-shadow: 0 8px 30px rgb(0 0 0 / 50%);
}

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

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

.box_GLB0A--game:hover .game-thumb img {
	transform: scale(1.07);
}

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

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

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

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

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

.box_GLB0A--game:hover .play-btn {
	transform: scale(1.03);
}

/** Provider Cards — Text-only compact **/

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

.box_GLB0A--provider {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 10px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	background: var(--color-dark);
	border: rgba(255,255,255,0.07) solid 1px;
	border-radius: var(--r-md);
	transition: all 0.35s ease-out;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: none;
}

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

/** Payments Standalone **/

.payments-card {
	background: var(--color-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: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding-block: 10px;
	padding-inline: 20px;
	font-size: 13px;
	color: rgb(255 255 255 / 75%);
	font-weight: 500;
	transition: background 0.35s ease-out;
}

.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: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--r-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: uppercase;
	font-size: 13px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 0.35s ease-out;
}

.payments-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

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


/*
 * Reviews
 */

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

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

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

.reviewer-avatar {
	width: 48px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--color-primary), var(--color-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(--color-light);
}

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

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


/*! About */

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

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

.feature-block--alt {
	direction: rtl;
}

.feature-block--alt > * {
	direction: ltr;
}

.feature-text h3 {
	font-size: 1.75rem;
	margin-bottom: 16px;
	color: var(--color-light);
}

.feature-text p {
	color: var(--color-muted);
	margin-bottom: 1rem;
	line-height: 1.8;
}

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

.feature-visual img {
	width: 100%;
	max-width: 450px;
	max-height: 300px;
	object-fit: contain;
	border-radius: var(--r-lg);
}

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

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

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

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

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

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

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

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

/*
 * SEO Text
 */

.content-text {
	margin-top: 48px;
	padding-top: 36px;
	padding-right: 36px;
	padding-bottom: 36px;
	padding-left: 36px;
	background: var(--color-dark);
	border-radius: var(--r-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
}

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

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

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

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

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

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

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

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

/* --- FAQ --- */

.faq-list {
	max-width: 700px;
	margin: 0 auto;
}

.faq-item {
	border: solid 0 0 1px 0 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(--color-light);
	text-align: left;
	transition: color 0.35s ease-out;
}

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

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

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

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

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

.faq-answer p {
	padding: 0 0 22px;
	color: var(--color-muted);
	line-height: 1.7em;
}

/*! Info Table */

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

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

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

.info-table tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.02);
}

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

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

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

/* CTA Bottom */

.cta-bottom {
	text-align: center;
	padding: 100px 48px;
	background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box, linear-gradient(150deg, var(--color-primary), var(--color-secondary)) border-box;
	border: 2px solid transparent;
	border-radius: 18px;
	position: relative;
	overflow: hidden;
}

.cta-bottom::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	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: -1.5px;
	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: 17px;
	margin-bottom: 36px;
	position: relative;
}


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

.bottom-bar_mILOo-grid {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 3rem;
}

.bottom-bar_mILOo-col h4 {
	font-size: 13px;
	margin-bottom: 16px;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

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

.bottom-bar_mILOo-nav {
	display: flex;
	flex-direction: column;
	gap: 0.63rem;
}

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

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

.trust-badges {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.trust-badges img {
	height: 28px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.35s ease-out;
}

.trust-badges img:hover {
	filter: none;
	opacity: 1;
}

.safe-play {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.safe-play a {
	display: block;
	transition: all 0.35s ease-out;
}

.safe-play a:hover {
	transform: translateY(-4px);
}

.safe-play img {
	height: 28px;
	width: auto;
	opacity: 0.4;
	transition: all 0.35s ease-out;
}

.safe-play a:hover img {
	filter: none;
	opacity: 1;
}

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

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

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

.footer-update {
	margin-top: 1rem;
	opacity: 0.6;
}

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

.footer-disclaimer {
	max-width: 700px;
	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: 0.31rem;
	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;
}

.toggle-btn span {
	width: 26px;
	height: 2px;
	background: var(--color-light);
	transition: all 0.35s ease-out;
	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;
}



@media (max-width: 63.9375rem) {
	.intro_dUhOm .box_BMuOd {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

	.feature-block { grid-template-columns: 1fr; }
	.feature-block--alt { direction: ltr; }

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

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


@media (max-width: 47.9375em) {
	.top-bar_kXODb .box_BMuOd {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--heading-font);
		font-size: 17px;
		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: rgb(255,255,255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		border-radius: 999px;
		box-shadow: 0 4px 14px var(--color-primary-alpha);
	}

	.top-bar_kXODb-actions {
		display: none;
	}

	.toggle-btn {
		display: flex;
	}

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

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

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

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

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

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

	.content-text { padding: 24px 20px; }

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

	.bottom-bar_mILOo-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 30em) {
	.box_BMuOd { padding: 0 16px; }
	.intro_dUhOm-ctas { flex-direction: column; }
	.intro_dUhOm-ctas .cta_1DYSS { width: 100%; }
	.stats-bar {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.collection_JZg2h--games { grid-template-columns: repeat(2, 1fr); }
	.collection_JZg2h--providers { grid-template-columns: repeat(3, 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; }
	.cta-card { padding: 36px 20px; }

	.box_GLB0A { padding: 20px 16px; }
	.content-text { padding: 20px 16px; }

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

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