/* Casino Landing Page Styles - Sunset Orange + Industrial */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap');

:root {
	--primary-alpha: #ea580c40;
	--dark: #1a0f05;
	--muted: #fb923c;
	--secondary-alpha: #f9731640;
	--text: #fed7aa;
	--accent: #fdba74;
	--darker: #0d0802;
	--primary: #ea580c;
	--secondary: #f97316;
	--light: #fff7ed;

	--body-font: 'Roboto', sans-serif;
	--heading-font: 'Anton', sans-serif;

	--spacing-element: 30px;
	--spacing-gap: 25px;
	--spacing-section: 70px;
	--border-radius-sm: 12px;
	--border-radius-full: 50px;
	--border-radius-lg: 28px;
	--border-radius-md: 20px;
	--sh-elevated: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
	--sh-card: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
	--sh-glow: 0 0 40px;
}


/* -- BASE -- */

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


.bypass-block {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--primary);
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-full);
	z-index: 10000;
	transition: top 0.25s ease-out;
}

.bypass-block:focus {
	top: 10px;
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}

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

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

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



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

body {
	font-family: var(--body-font);
	background: var(--darker);
	color: var(--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: 700;
	line-height: 1.15;
	color: var(--light);
}

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

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


/* Container */

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


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

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

.nav-wrap_l6s83 .wrapper_t9v9z {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.nav-wrap_l6s83 .logo {
	font-family: var(--heading-font);
	font-size: 22px;
	font-weight: 800;
	color: var(--light);
	letter-spacing: -0.3px;
}

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

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

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

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

.nav-wrap_l6s83-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

/* ===== Buttons ===== */

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

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

.btn_uO0lL--primary:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 25px var(--primary-alpha);
	background: var(--primary);
	color: #FFF;
}

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

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

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

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

/* -- HERO -- */

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

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

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

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

.hero_RDJ6m-content {
}

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

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

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

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

.hero_RDJ6m-subtitle {
	font-size: 17px;
	color: var(--muted);
	margin-bottom: 2rem;
	max-width: 460px;
	line-height: 170%;
}

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

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

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

/** Stats Bar **/

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

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

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

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

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

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



.segment_Jfmgu {
	padding: var(--spacing-section) 0;
}

.segment_Jfmgu--gray {
	background: rgba(255,255,255,0.04);
}

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

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

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

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

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

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

/* Cards */

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

.box_2J6oS:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}

/* --- Bonus Cards --- */

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

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

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

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

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

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

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

/* Game Cards */

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

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

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

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

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

.box_2J6oS--game:hover .game-thumb img {
	transform: scale(1.03) rotate(1deg);
}

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

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

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

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

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

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

.box_2J6oS-name {
	font-weight: 600;
	color: #FFF;
}

/** Provider Cards **/

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

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

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

.box_2J6oS--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: saturate(0) brightness(1.8);
	transition: all 0.25s ease-out;
}

.box_2J6oS--provider:hover img {
	filter: brightness(1) contrast(1);
	transform: scale(1.1);
}

.box_2J6oS--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	text-align: center;
	opacity: 0;
	transition: opacity 0.25s ease-out;
}

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


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

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

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

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

.split-block--dark h2 {
	color: #FFF;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 0.75rem 0 1.75rem;
}

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

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

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

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

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

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

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

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

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

.reviewer-avatar {
	width: 50px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: #FFF;
}

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

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

.review-item {
	padding: 20px 0;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.1);
}

.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: 14px;
	color: var(--muted);
	line-height: 170%;
	margin-bottom: 6px;
	font-style: italic;
}

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

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


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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	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(--accent);
	text-transform: uppercase;
	font-size: 0.813rem;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
	transition: background 0.25s 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-block: 4px;
	padding-inline: 12px;
	background: var(--primary-alpha);
	border-radius: var(--border-radius-full);
	font-size: 13px;
	color: var(--primary);
}

/*! About */

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

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

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

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

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

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

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

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

/* CTA Blocks */

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

.segment_Jfmgu--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.25;
}

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

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

.segment_Jfmgu--cta p {
	font-size: 1.125rem;
	color: rgb(255 255 255 / 90%);
	margin-bottom: 2rem;
	position: relative;
}

.segment_Jfmgu--cta .btn_uO0lL {
	position: relative;
	background: #FFF;
	color: var(--primary);
}

.segment_Jfmgu--cta .btn_uO0lL:hover {
	background: rgb(255 255 255 / 20%);
	color: #FFF;
}


/*
 * SEO Text
 */

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

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

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

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

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

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

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

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

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

/*! FAQ */

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

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

.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(--light);
	text-align: left;
	transition: color 0.25s ease-out;
}

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

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

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

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

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

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

/** Info Table **/

.info-table {
	width: 100%;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--dark);
	border-radius: var(--border-radius-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.1);
}

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

.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(--primary);
	background: rgba(255,255,255,0.03);
}

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


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

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

.cta-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 400px;
	background: radial-gradient(ellipse, var(--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(--primary);
}

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

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

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

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

.end-section_KxMSV-col h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #FFF;
}

.end-section_KxMSV-col p {
	color: rgba(255,255,255,0.5);
	line-height: 1.7em;
	font-size: 14px;
}

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

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

.end-section_KxMSV-nav a:hover {
	color: #FFF;
}

.security-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.security-badges img {
	height: 50px;
	filter: grayscale(100%) brightness(2);
	transition: all 0.25s ease-out;
}

.security-badges img:hover {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

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

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

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

.safe-play {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

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

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

.safe-play img {
	height: 40px;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.25s ease-out;
}

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

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

.end-section_KxMSV-bottom p {
	font-size: 13px;
	color: rgb(255 255 255 / 40%);
	margin-bottom: 8px;
}

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

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

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

.footer-disclaimer {
	max-width: 650px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6em;
}

/* ==================== 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: 22px;
	height: 3px;
	background: var(--light);
	transition: all 0.25s 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;
}

/* ===== Responsive - Tablet ===== */

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

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

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

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

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

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

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

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

	.end-section_KxMSV-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

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

	.security-badges { justify-content: center; }
}


/*! Responsive - Mobile */

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

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

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

	.nav-wrap_l6s83-actions {
		display: none;
	}

	.toggle-btn {
		display: flex;
	}

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

	.nav-links_OJNOz.active {
		right: 0;
	}

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

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

	.listing_Mh6ZU--bonuses { grid-template-columns: 1fr; }
	.listing_Mh6ZU--games { grid-template-columns: repeat(2, 1fr); }
	.listing_Mh6ZU--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_2J6oS { padding: 24px 20px; }
	.box_2J6oS--review { padding: 20px; }

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

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

@media (max-width: 479px) {
	.wrapper_t9v9z { padding: 0px 16px; }
	.hero_RDJ6m-ctas { flex-direction: column; }
	.hero_RDJ6m-ctas .btn_uO0lL { width: 100%; }
	.highlights {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.listing_Mh6ZU--games { grid-template-columns: 1fr 1fr; }
	.listing_Mh6ZU--providers { grid-template-columns: repeat(2, 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; }

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

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

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

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