/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Emerald Fortune
 * Typography: Modern Sharp
 * Generated: 2026-09-05T11:54:08.657Z
 */

@import "https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap";

:root {
	/* Colors */
	--clr-primary: #059669;
	--clr-light: #ecfdf5;
	--clr-secondary-alpha: #10b98140;
	--clr-secondary: #10b981;
	--clr-primary-alpha: #05966940;
	--clr-accent: #34d399;
	--clr-dark: #052e1f;
	--clr-darker: #021a11;
	--clr-muted: #6ee7b7;
	--clr-text: #d1fae5;

	/* Typography */
	--font-family-body: 'Inter', sans-serif;
	--font-family-heading: 'Bebas Neue', sans-serif;

	/* Spacing */
	--sp-section: 70px;
	--sp-gap: 25px;
	--sp-element: 30px;

	/* Border Radius */
	--rounded-lg: 16px;
	--rounded-full: 8px;
	--rounded-sm: 8px;
	--rounded-md: 12px;

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

/** Base **/

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


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

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


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--clr-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 play-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes play-slideUp {
	0% { opacity: 0; transform: translateY(30px); }
	100% { opacity: 1; transform: translateY(0); }
}



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

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

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

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

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


.wrapper_jngKd {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-block: 0;
	padding-inline: 48px;
}


/* HEADER */

.top-bar_sG4mm {
	position: sticky;
	top: 0px;
	z-index: 1000;
	background: rgb(0 0 0 / 60%);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 solid rgba(255,255,255,0.06);
	transition: all 0.35s ease-out;
}

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

.top-bar_sG4mm .wrapper_jngKd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.top-bar_sG4mm .logo {
	font-family: var(--font-family-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--clr-light);
	letter-spacing: -0.5px;
}

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

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

.menu_YMmsH a {
	font-weight: 500;
	color: var(--clr-muted);
	font-size: 14px;
	transition: color 0.35s ease-out;
}

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

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

/* BUTTONS */

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

.cta_gxtKs--primary {
	background: var(--clr-primary);
	border: none;
	color: rgb(255,255,255);
	box-shadow: 0 4px 14px var(--clr-primary-alpha);
}

.cta_gxtKs--primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px var(--clr-primary-alpha);
}

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

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

.cta_gxtKs--large {
	padding-block: 16px;
	padding-inline: 36px;
	font-size: 16px;
}

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


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

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

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

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

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

.hero_zZjlL-content {
}

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

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

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

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

.hero_zZjlL-subtitle {
	font-size: 17px;
	color: var(--clr-muted);
	margin-bottom: 2rem;
	max-width: 440px;
	line-height: 1.7em;
}

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

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

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

/* ===== Stats Bar ===== */

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

.highlight-item {
	text-align: center;
	padding-block: 32px;
	padding-inline: 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.06);
}

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

.stat-number em {
	font-style: normal;
	color: var(--clr-primary);
}

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

/* SECTIONS */

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

.segment_H7P1X--gray {
	background: rgba(255,255,255,0.03);
}

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

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

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

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

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

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

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

.item_ZCwcF {
	background: var(--clr-dark);
	border-radius: 18px;
	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 ease-out;
}

.item_ZCwcF:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}


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

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

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

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

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

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

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

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


/* -- GAME CARDS — PORTRAIT 3/4 WITH OVERLAY -- */

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

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

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

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

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

.item_ZCwcF--game:hover .game-thumb img {
	transform: scale(1.06);
}

.item_ZCwcF-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 20px 14px 12px;
	background: linear-gradient(transparent, rgb(0 0 0 / 88%));
}

.item_ZCwcF-name {
	font-size: 0.813rem;
	font-weight: 600;
	color: rgb(255,255,255);
	display: block;
}

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

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

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

.item_ZCwcF--game:hover .play-btn {
	transform: translate(0, -3px);
}

/* ==================== PROVIDER CARDS — TEXT-ONLY COMPACT ==================== */

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

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

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


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

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

.pay-chip:hover {
	background: rgb(255 255 255 / 15%);
}

.payments-table-wrap {
	overflow-x: auto;
	margin-top: 1.5rem;
}

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

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

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

.payments-table th {
	font-weight: 600;
	color: var(--clr-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.35s ease-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-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	background: var(--clr-primary-alpha);
	border-radius: var(--rounded-full);
	font-size: 13px;
	color: var(--clr-primary);
}


/* Reviews */

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

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

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

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

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

.item_ZCwcF--review p {
	color: var(--clr-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: 1rem;
	color: var(--clr-light);
}

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

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

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

/** CTA Blocks — Gradient border card **/

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

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

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

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

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

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

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


/*
 * SEO Text
 */

.seo-content {
	margin-top: 48px;
	padding: 36px;
	background: var(--clr-dark);
	border-radius: var(--rounded-lg);
	border: 1px solid rgba(255,255,255,0.06);
}

.seo-content h3 {
	font-size: 1.375rem;
	margin-bottom: 1rem;
	color: var(--clr-light);
}

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

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

.segment_H7P1X--seo-text {
	background: var(--clr-dark);
}

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

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

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

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

/* FAQ */

.faq-list {
	max-width: 700px;
	margin: 0px 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-block: 22px;
	padding-inline: 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(--clr-light);
	text-align: left;
	transition: color 0.35s ease-out;
}

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

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

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

.faq-answer {
	max-height: 0px;
	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(--clr-muted);
	line-height: 1.7em;
}

/*
 * Info Table
 */

.info-table {
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--clr-dark);
	border-radius: var(--rounded-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.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 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(--clr-primary);
	background: rgb(255 255 255 / 3%);
}

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

/* --- CTA Bottom --- */

.cta-bottom {
	text-align: center;
	padding-block: 100px;
	padding-inline: 48px;
	background: linear-gradient(var(--clr-dark), var(--clr-dark)) padding-box, linear-gradient(170deg, var(--clr-primary), var(--clr-secondary)) border-box;
	border: 2px 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: 400px;
	background: radial-gradient(ellipse, var(--clr-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

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

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

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

/*
 * Footer — 4 columns
 */

.bottom-bar_FeV3p {
	background: var(--clr-darker);
	padding: 60px 0 0;
}

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

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

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

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

.bottom-bar_FeV3p-nav a {
	color: rgb(255 255 255 / 60%);
	font-size: 14px;
}

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

.trust-seals {
	display: flex;
	flex-direction: column;
	gap: 0.63rem;
}

.trust-seals img {
	height: 28px;
	width: auto;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all 0.35s ease-out;
}

.trust-seals img:hover {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

.responsible-logos {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.responsible-logos a {
	display: block;
	transition: all 0.35s ease-out;
}

.responsible-logos a:hover {
	transform: translateY(-2px) scale(1.01);
}

.responsible-logos img {
	height: 28px;
	width: auto;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s ease-out;
}

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

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

.bottom-bar_FeV3p-bottom p {
	font-size: 0.813rem;
	color: rgb(255 255 255 / 40%);
	margin-bottom: 8px;
}

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

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

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

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


/* Hamburger */

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

.hamburger span {
	width: 26px;
	height: 2px;
	background: var(--clr-light);
	transition: all 0.35s ease-out;
	border-radius: 2px;
}

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

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

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

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


/* Responsive - Tablet */

@media (max-width: 1025px) {
	.hero_zZjlL .wrapper_jngKd {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.layout_v0yHX--bonuses { grid-template-columns: 1fr; }
	.layout_v0yHX--games { grid-template-columns: repeat(4, 1fr); }
	.layout_v0yHX--providers { grid-template-columns: repeat(5, 1fr); }
	.layout_v0yHX--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_FeV3p-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.75rem;
	}
}

/* Responsive - Mobile */

@media (max-width: 48rem) {
	.top-bar_sG4mm .wrapper_jngKd {
		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(--clr-light);
		text-decoration: none;
		white-space: nowrap;
	}

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

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 160px;
		padding: 9px 16px;
		background: var(--clr-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(--clr-primary-alpha);
	}

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

	.hamburger {
		display: flex;
	}

	.menu_YMmsH {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 85%;
		max-width: 380px;
		height: 100vh;
		height: 100dvh;
		background: var(--clr-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(--clr-primary);
		z-index: 1001;
		gap: 0px;
		overflow-y: auto;
	}

	.menu_YMmsH.active {
		right: 0px;
	}

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

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

	.layout_v0yHX--bonuses { grid-template-columns: 1fr; }
	.layout_v0yHX--games { grid-template-columns: repeat(3, 1fr); }
	.layout_v0yHX--providers { grid-template-columns: repeat(4, 1fr); }
	.layout_v0yHX--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_ZCwcF { padding: 24px 20px; }
	.item_ZCwcF--review { padding: 20px; }

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

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

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

@media (max-width: 481px) {
	.wrapper_jngKd { padding: 0 16px; }
	.hero_zZjlL-ctas { flex-direction: column; }
	.hero_zZjlL-ctas .cta_gxtKs { width: 100%; }
	.highlights {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.layout_v0yHX--games { grid-template-columns: repeat(2, 1fr); }
	.layout_v0yHX--providers { grid-template-columns: repeat(3, 1fr); }

	.logo-mobile { font-size: 0.938rem; }
	.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; }

	.item_ZCwcF { padding: 20px 16px; }
	.seo-content { padding: 20px 16px; }

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

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