/*!
 * Stylesheet: Royal Purple & Gold
 * Fonts: Rajdhani / Exo 2
 * Date: 2026-08-30T17:22:16.123Z
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Exo+2:wght@400;500;600&display=swap');

:root {
	--theme-primary: #7c3aed;
	--theme-dark: #0f0a1e;
	--theme-darker: #080510;
	--theme-text: #e2e0ff;
	--theme-secondary-alpha: #f59e0b40;
	--theme-primary-alpha: #7c3aed40;
	--theme-accent: #fbbf24;
	--theme-secondary: #f59e0b;
	--theme-light: #f5f3ff;
	--theme-muted: #a8a3c7;

	--ff-body: 'Exo 2', sans-serif;
	--ff-heading: 'Rajdhani', sans-serif;

	--section-padding: 50px;
	--element-spacing: 20px;
	--gap: 20px;
	--r-full: 4px;
	--r-md: 6px;
	--r-sm: 4px;
	--r-lg: 8px;
	--card-shadow: 0 2px 8px rgba(0,0,0,0.15);
	--elevated-shadow: 0 4px 16px rgba(0,0,0,0.2);
	--glow-shadow: 0 0 20px;
}

/*
 * Base
 */

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

.bypass-block {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-block: 12px;
	padding-inline: 24px;
	background: var(--theme-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-full);
	z-index: 10000;
	transition: top 250ms ease-in;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--theme-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 do-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

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

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

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


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

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 250ms ease-in;
}

/* --- Container --- */

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

/* ==================== HEADER ==================== */

.masthead_veqlu {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 rgba(255,255,255,0.07) solid;
	transition: all 250ms ease-in;
}

.masthead_veqlu.scrolled {
	background: rgb(0 0 0 / 80%);
	box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

.masthead_veqlu .inner_2C3T6 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

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

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

.navigation_KWxdw {
	display: flex;
	gap: 2rem;
}

.navigation_KWxdw a {
	font-weight: 500;
	color: var(--theme-muted);
	font-size: 0.875rem;
	transition: color 250ms ease-in;
}

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

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


.button_s6hkD {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--ff-body);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: all 250ms ease-in;
	letter-spacing: 0.3px;
	text-decoration: none;
}

.button_s6hkD--primary {
	background: var(--theme-primary);
	border: none;
	box-shadow: 0 4px 14px var(--theme-primary-alpha);
	color: white;
	box-shadow: 0 4px 14px var(--theme-primary-alpha);
}

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

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

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

.button_s6hkD--large {
	padding-block: 16px;
	padding-inline: 36px;
	font-size: 1rem;
}

.button_s6hkD--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 13px;
}


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

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

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

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

.hero_EbJGW-content {
	order: 2;
}

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

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

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

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

.hero_EbJGW-subtitle {
	font-size: 1.063rem;
	color: var(--theme-muted);
	margin-bottom: 2rem;
	max-width: 420px;
	line-height: 170%;
}

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

.hero_EbJGW-image {
	order: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero_EbJGW-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-left: auto;
	margin-right: auto;
	padding: 0 48px 80px;
}

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

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

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

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

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

/* -- SECTIONS -- */

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

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

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

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

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

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

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

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

/* Cards */

.tile_ZeWKK {
	background: var(--theme-dark);
	border-radius: 20px;
	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 250ms ease-in;
}

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

/** Bonus Cards **/

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

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

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

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

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

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

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

/** Game Cards **/

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

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

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

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

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

.tile_ZeWKK--game:hover .game-thumb img {
	transform: scale(1.08);
}

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

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

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

.tile_ZeWKK-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 250ms ease-in;
}

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

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

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

/*
 * Provider Cards
 */

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

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

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

.tile_ZeWKK--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 250ms ease-in;
}

.tile_ZeWKK--provider:hover img {
	filter: saturate(1) brightness(1);
	transform: scale(1.05);
}

.tile_ZeWKK--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--theme-muted);
	text-align: center;
	opacity: 0;
	transition: opacity 250ms ease-in;
}

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


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

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

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

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

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

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

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

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

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

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

/*
 * Reviews
 */

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

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

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

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

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

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

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

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

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

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

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

.tile_ZeWKK--review p {
	color: var(--theme-muted);
	font-style: italic;
	line-height: 170%;
}


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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--r-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(--theme-accent);
	text-transform: uppercase;
	font-size: 13px;
}

.payments-table tbody tr {
	border: solid rgba(255, 255, 255, 0.05) 0 0 1px 0;
	transition: background 250ms ease-in;
}

.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: 4px 12px;
	background: var(--theme-primary-alpha);
	border-radius: var(--r-full);
	font-size: 0.813rem;
	color: var(--theme-primary);
}

/*
 * About
 */

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

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

.info-row--reverse {
	direction: rtl;
}

.info-row--reverse > * {
	direction: ltr;
}

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

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

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

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

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

.area_QG15U--cta {
	text-align: center;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(45deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	position: relative;
	overflow: hidden;
}

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

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

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

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

.area_QG15U--cta .button_s6hkD {
	position: relative;
	background: white;
	color: var(--theme-primary);
}

.area_QG15U--cta .button_s6hkD:hover {
	background: rgba(255,255,255,0.2);
	color: white;
}

/* ==================== SEO TEXT ==================== */

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

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

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

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

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

.seo-content {
	max-width: 900px;
	margin-inline: auto;
}

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

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

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

/* FAQ */

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

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

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

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

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 250ms ease-in;
}

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

.faq-answer p {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 22px;
	padding-left: 0;
	color: var(--theme-muted);
	line-height: 170%;
}


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

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

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

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

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

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

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

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

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

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

/*! Footer */

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

.bottom-bar_PEflQ-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.bottom-bar_PEflQ-col h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: white;
}

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

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

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

.bottom-bar_PEflQ-nav a:hover {
	color: white;
}

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

.trust-badges img {
	height: 50px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 250ms ease-in;
}

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

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

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

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

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

.safe-play a {
	display: block;
	transition: all 250ms ease-in;
}

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

.safe-play img {
	height: 40px;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all 250ms ease-in;
}

.safe-play a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

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

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

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

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

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

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

/* ==================== HAMBURGER ==================== */

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	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;
}

.nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--theme-light);
	transition: all 250ms ease-in;
	border-radius: 2px;
}

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

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

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

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

/* RESPONSIVE - TABLET */

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

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

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

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

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

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

	.info-row { grid-template-columns: 1fr; }
	.info-row--reverse { direction: ltr; }

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

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

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

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

/* RESPONSIVE - MOBILE */

@media (max-width: 770px) {
	.masthead_veqlu .inner_2C3T6 {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

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

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

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

	.masthead_veqlu-actions {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.navigation_KWxdw {
		position: fixed;
		top: 0;
		right: -100%;
		width: 90%;
		max-width: 400px;
		height: 100vh;
		height: 100dvh;
		background: var(--theme-dark);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 250ms ease-in;
		box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
		border-left: 2px solid var(--theme-primary);
		z-index: 1001;
		gap: 0px;
		overflow-y: auto;
	}

	.navigation_KWxdw.active {
		right: 0;
	}

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

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

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

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

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

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

@media (max-width: 30rem) {
	.inner_2C3T6 { padding: 0px 16px; }
	.hero_EbJGW-ctas { flex-direction: column; }
	.hero_EbJGW-ctas .button_s6hkD { width: 100%; }
	.highlights {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.grid_sIbuO--games { grid-template-columns: 1fr 1fr; }
	.grid_sIbuO--providers { grid-template-columns: repeat(2, 1fr); }

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

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

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

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