

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap");

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

	/* Typography */
	--font-family-body: 'Titillium Web', sans-serif;
	--font-family-heading: 'Orbitron', sans-serif;

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

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

	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
	--shadow-lg: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
	--shadow-glow: 0 0 40px;
}


/* BASE */

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


.bypass-block {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--primary);
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rad-full);
	z-index: 10000;
	transition: top 0.3s 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 run-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

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



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

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

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

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



/* -- CONTAINER -- */

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




.masthead_tmVCd {
	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.07);
	transition: all 0.3s ease-out;
}

.masthead_tmVCd.scrolled {
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

.masthead_tmVCd .inner_6SkMq {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

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

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

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

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

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

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


/*! Buttons */

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

.button_e7wLt--primary {
	background: var(--primary);
	border: none;
	box-shadow: 0 4px 14px var(--primary-alpha);
	color: #FFF;
	box-shadow: 0 4px 14px var(--primary-alpha);
}

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

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

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

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

.button_e7wLt--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 13px;
}



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

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

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

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

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

.hero_ll3Fs-content {
}

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

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

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

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

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

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

.hero_ll3Fs-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.hero_ll3Fs-card {
	background: var(--dark);
	border: rgba(255,255,255,0.07) solid 1px;
	border-radius: var(--rad-md);
	padding-top: 24px;
	padding-right: 20px;
	padding-bottom: 24px;
	padding-left: 20px;
	text-align: center;
	transition: all 0.3s ease-out;
}

.hero_ll3Fs-card:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}

.hero_ll3Fs-card-val {
	font-family: var(--font-family-heading);
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	font-weight: 800;
	color: var(--light);
	letter-spacing: -0.5px;
	margin-bottom: 4px;
}

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

.hero_ll3Fs-card-label {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}




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

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

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

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

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

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


/* Sections */

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

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

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

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

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

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

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

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



/*! Cards */

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

.card_I19cm:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}




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

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

.card_I19cm--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: 12px;
}

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

.card_I19cm--bonus p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7em;
	margin-bottom: 1rem;
}

.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: 10px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 16px;
}


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

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

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

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

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

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

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

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

.card_I19cm-name {
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	display: block;
}

.card_I19cm-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

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

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

.card_I19cm--game:hover .play-btn {
	transform: translateY(-3px) scale(1.02);
}



/* PROVIDER CARDS — TEXT-ONLY COMPACT */

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

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

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


/*! Payments Standalone */

.payments-card {
	background: var(--dark);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
	border-radius: 16px;
	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: 10px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	font-weight: 500;
	transition: background 0.3s ease-out;
}

.pay-chip:hover {
	background: rgb(255 255 255 / 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(--rad-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(--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.3s ease-out;
}

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

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

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--primary-alpha);
	border-radius: var(--rad-full);
	font-size: 0.813rem;
	color: var(--primary);
}




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

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

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

.reviewer-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(to right, var(--primary), var(--secondary));
	display: flex;
	place-content: center;
	place-items: center;
	font-weight: 700;
	color: #FFF;
	flex-shrink: 0;
	font-size: 1rem;
}

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

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

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



/* --- About --- */

.content-pairs {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

.pair-row--reversed {
	direction: rtl;
}

.pair-row--reversed > * {
	direction: ltr;
}

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

.pair-content p {
	color: var(--muted);
	margin-bottom: 16px;
	line-height: 180%;
}

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

.pair-image img {
	width: 100%;
	max-width: 450px;
	max-height: 320px;
	object-fit: contain;
	border-radius: var(--rad-lg);
}


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

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

.cta-card {
	background: linear-gradient(var(--dark), var(--dark)) padding-box, linear-gradient(to right, var(--primary), var(--secondary)) border-box;
	border: 2px solid transparent;
	border-radius: 18px;
	padding-block: 60px;
	padding-inline: 48px;
	position: relative;
	overflow: hidden;
}

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

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

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

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

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



/* SEO Text */

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

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

.section-content p {
	color: var(--muted);
	margin-bottom: 1rem;
	line-height: 1.8em;
}

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

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

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

.seo-content h2 {
	font-size: 36px;
	margin-bottom: 1.5rem;
	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: 20px;
	line-height: 1.9em;
}



/* --- FAQ --- */

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

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

.faq-question {
	width: 100%;
	padding: 22px 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.3s ease-out;
}

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

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

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

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

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

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



/* ==================== INFO TABLE ==================== */

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

.info-table tr {
	border-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: rgb(255 255 255 / 2%);
}

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

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



/* ===== CTA Bottom ===== */

.cta-bottom {
	text-align: center;
	padding: 100px 48px;
	background: linear-gradient(var(--dark), var(--dark)) padding-box, linear-gradient(to right, var(--primary), var(--secondary)) border-box;
	border: 1px solid transparent;
	border-radius: 24px;
	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: 900;
	letter-spacing: -1.5px;
	margin-bottom: 1rem;
	position: relative;
}

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

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


/* ==================== FOOTER — 4 COLUMNS ==================== */

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

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

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

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

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

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

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

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

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

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

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

.resp-logos a {
	display: block;
	transition: all 0.3s ease-out;
}

.resp-logos a:hover {
	transform: scale(1.03);
}

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

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

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

.colophon_KIBxw-bottom p {
	font-size: 13px;
	color: rgb(255 255 255 / 40%);
	margin-bottom: 0.5rem;
}

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

.footer-update {
	margin-top: 1rem;
	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.6;
}



/*! Hamburger */

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

.menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--light);
	transition: all 0.3s ease-out;
	border-radius: 2px;
}

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

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

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

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




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

	.hero_ll3Fs-content { order: 1; }
	.hero_ll3Fs-cards { order: 2; grid-template-columns: repeat(4, 1fr); }
	.hero_ll3Fs-subtitle { margin-left: auto; margin-right: auto; }
	.hero_ll3Fs-ctas { justify-content: center; }

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

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

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

	.pair-row { grid-template-columns: 1fr; }
	.pair-row--reversed { direction: ltr; }

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

	.colophon_KIBxw-grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
}



@media (max-width: 47.9375em) {
	.masthead_tmVCd .inner_6SkMq {
		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(--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: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		border-radius: 999px;
		box-shadow: 0 4px 14px var(--primary-alpha);
	}

	.masthead_tmVCd-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

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

	.menu_409QU.active {
		right: 0px;
	}

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

	.hero_ll3Fs { padding-top: 48px; padding-bottom: 32px; }
	.hero_ll3Fs-cards { grid-template-columns: 1fr 1fr; }
	.hero_ll3Fs-content h1 { font-size: 2rem; }
	.stat-strip {
		grid-template-columns: 1fr 1fr;
		padding-bottom: 48px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.zone_rXWcd { padding: 60px 0; }
	.inner_6SkMq { padding: 0 20px; }
	.zone_rXWcd-title { font-size: 1.75rem; }
	.zone_rXWcd-head h2 { font-size: 1.75rem; }
	.cta-bottom { padding: 60px 20px; border-radius: 12px; }
	.cta-card { padding: 40px 24px; border-radius: 14px; }

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

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

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

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

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

@media (max-width: 30rem) {
	.inner_6SkMq { padding: 0px 16px; }
	.hero_ll3Fs-ctas { flex-direction: column; }
	.hero_ll3Fs-ctas .button_e7wLt { width: 100%; }
	.stat-strip {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.collection_peM6u--games { grid-template-columns: repeat(2, 1fr); }
	.collection_peM6u--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; }

	.card_I19cm { padding: 20px 16px; }
	.section-content { padding: 20px 16px; }

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

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