/*!
 * Stylesheet: Royal Purple & Gold
 * Fonts: Oswald / Nunito
 * Date: 2026-09-14T13:44:37.161Z
 */

@import 'https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Nunito:wght@400;600&display=swap';

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

	/* Typography */
	--body-font: 'Nunito', sans-serif;
	--heading-font: 'Oswald', sans-serif;

	/* Spacing */
	--pad-element: 16px;
	--pad-section: 40px;
	--grid-gap: 12px;

	/* Border Radius */
	--border-radius-lg: 8px;
	--border-radius-md: 6px;
	--border-radius-sm: 4px;
	--border-radius-full: 4px;

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

/* BASE */

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

.skip-nav {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--color-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-full);
	z-index: 10000;
	transition: top 300ms ease-out;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}


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

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

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



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

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 300ms ease-out;
}

/** Container **/

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

/*! Header */

.nav-wrap_oUbQy {
	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 300ms ease-out;
}

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

.nav-wrap_oUbQy .wrapper_5c1lR {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

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

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

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

.menu_IQ9tO a {
	font-weight: 500;
	color: var(--color-muted);
	font-size: 14px;
	transition: color 300ms ease-out;
}

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

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

/* Buttons */

.action_HZOS0 {
	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: 700;
	border-radius: 999px;
	cursor: pointer;
	transition: all 300ms ease-out;
	letter-spacing: 0.02em;
	text-decoration: none;
}

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

.action_HZOS0--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px var(--color-primary-alpha);
}

.action_HZOS0--secondary {
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: rgb(255 255 255 / 20%);
	color: var(--color-light);
}

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

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

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

/* Hero */

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

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

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

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

.hero_6leFm-content {
}

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

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

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

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

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

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

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

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

/* Stats Bar */

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

.stats-item {
	text-align: center;
	padding-top: 32px;
	padding-right: 16px;
	padding-bottom: 32px;
	padding-left: 16px;
	position: relative;
}

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

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

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

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

/* ==================== SECTIONS ==================== */

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

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

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

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

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

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

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

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

/* Cards */

.panel_0vDKw {
	background: var(--color-dark);
	border-radius: 20px;
	padding: 32px 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 300ms ease-out;
}

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

/* Bonus Cards */

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

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

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

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

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

.panel_0vDKw--bonus p {
	color: var(--color-muted);
	font-size: 0.875rem;
	line-height: 1.7em;
	margin-bottom: 16px;
}

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

/** Game Cards **/

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

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

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

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

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

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

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

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

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

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

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

.panel_0vDKw-info {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 16px;
	background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

.panel_0vDKw-name {
	font-weight: 600;
	color: #fff;
}

/*! Provider Cards */

.items_3WTNI--providers {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

/* ===== Reviews ===== */

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

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

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

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

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

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

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

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

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

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

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

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

/** Payments Table **/

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
}

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

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

.payments-table th {
	font-weight: 600;
	color: var(--color-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
}

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

/*! About */

.two-col {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

.two-col-row--swap {
	direction: rtl;
}

.two-col-row--swap > * {
	direction: ltr;
}

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

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

.two-col-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.two-col-img img {
	width: 100%;
	max-width: 450px;
	max-height: 280px;
	object-fit: contain;
	border-radius: var(--border-radius-lg);
}

/** CTA Blocks **/

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

.zone_dj5CK--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.25;
}

.zone_dj5CK--cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #fff;
	margin-bottom: 1rem;
	position: relative;
}

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

.zone_dj5CK--cta p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
	position: relative;
}

.zone_dj5CK--cta .action_HZOS0 {
	position: relative;
	background: #fff;
	color: var(--color-primary);
}

.zone_dj5CK--cta .action_HZOS0:hover {
	background: rgba(255,255,255,0.2);
	color: #fff;
}

/* SEO TEXT */

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

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

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

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

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

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

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

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

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

/* ==================== FAQ ==================== */

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

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

.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: 1rem;
	font-weight: 600;
	color: var(--color-light);
	text-align: left;
	transition: color 300ms ease-out;
}

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

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

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

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

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

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

/* Info Table */

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

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

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

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

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

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

/** CTA Bottom **/

.cta-bottom {
	text-align: center;
	padding-block: 100px;
	padding-inline: 48px;
	background: var(--color-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(--color-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: 1rem;
	position: relative;
}

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

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

/* ==================== FOOTER ==================== */

.footer_7bptx {
	background: var(--color-darker);
	padding: 60px 0 0;
}

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

.footer_7bptx-col h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #fff;
}

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

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

.footer_7bptx-nav a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

.footer_7bptx-nav a:hover {
	color: #fff;
}

.trust-seals {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.trust-seals img {
	height: 50px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 300ms ease-out;
}

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

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

.responsible-gaming h4 {
	font-size: 16px;
	margin-bottom: 0.75rem;
	color: rgb(255 255 255 / 50%);
}

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

.gaming-care {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.gaming-care a {
	display: block;
	transition: all 300ms ease-out;
}

.gaming-care a:hover {
	transform: scale(1.03);
}

.gaming-care img {
	height: 40px;
	filter: saturate(0) brightness(1.8);
	transition: all 300ms ease-out;
}

.gaming-care a:hover img {
	filter: none;
	opacity: 1;
}

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

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

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

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

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

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


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

.burger span {
	width: 26px;
	height: 2px;
	background: var(--color-light);
	transition: all 300ms ease-out;
	border-radius: 2px;
}

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

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

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

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

/** Responsive - Tablet **/

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

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

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

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

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

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

	.two-col-row { grid-template-columns: 1fr; }
	.two-col-row--swap { direction: ltr; }

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

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

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

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


@media (max-width: 768px) {
	.nav-wrap_oUbQy .wrapper_5c1lR {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

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

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

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

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

	.burger {
		display: flex;
	}

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

	.menu_IQ9tO.active {
		right: 0px;
	}

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

	.hero_6leFm { padding-top: 48px; padding-bottom: 32px; }
	.hero_6leFm-content h1 { font-size: 2rem; }
	.stats-bar {
		grid-template-columns: 1fr 1fr;
		padding-bottom: 48px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.zone_dj5CK { padding: 60px 0; }
	.wrapper_5c1lR { padding: 0px 20px; }
	.zone_dj5CK-title { font-size: 1.75rem; }
	.zone_dj5CK-head h2 { font-size: 1.75rem; }
	.cta-bottom { padding: 60px 20px; }

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

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

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

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

@media (max-width: 30rem) {
	.wrapper_5c1lR { padding: 0px 16px; }
	.hero_6leFm-ctas { flex-direction: column; }
	.hero_6leFm-ctas .action_HZOS0 { width: 100%; }
	.stats-bar {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.items_3WTNI--games { grid-template-columns: 1fr 1fr; }
	.items_3WTNI--providers { grid-template-columns: repeat(2, 1fr); }

	.logo-mobile { font-size: 15px; }
	.mobile-cta {
		padding: 8px 12px;
		font-size: 12px;
		max-width: 140px;
	}

	.cta-bottom { padding: 48px 16px; }
	.cta-bottom h2 { font-size: 1.75rem; }

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

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

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

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