/*
 * Theme: Electric Pink
 * Typography: Futuristic
 */

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

:root {
	/* Colors */
	--primary: #ec4899;
	--muted: #f9a8d4;
	--secondary: #f472b6;
	--light: #fdf2f8;
	--primary-alpha: #ec489940;
	--text: #fce7f3;
	--darker: #0d0509;
	--dark: #1a0a14;
	--accent: #f9a8d4;
	--secondary-alpha: #f472b640;

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

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

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

	/* Shadows */
	--sh-glow: 0 0 40px;
	--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);
}


*, *::before, *::after {
	margin: 0px;
	padding: 0px;
	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(--primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-full);
	z-index: 10000;
	transition: top .3s ease;
}

.skip-nav: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;
	}
}


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

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

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



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

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all .3s ease;
}


/* -- CONTAINER -- */

.box_iIfNJ {
	width: 100%;
	max-width: 1220px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 48px;
}


/* --- Header --- */

.top-bar_rtVkb {
	position: sticky;
	top: 0px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: rgba(255,255,255,0.06) solid 0 0 1px 0;
	transition: all .3s ease;
}

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

.top-bar_rtVkb .box_iIfNJ {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

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

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

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

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

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

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


/*! Buttons */

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

.cta_zj4CI--primary {
	background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
	border: none;
	color: white;
	box-shadow: 0 4px 14px var(--primary-alpha);
}

.cta_zj4CI--primary:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px var(--primary-alpha);
}

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

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

.cta_zj4CI--large {
	padding: 16px 36px;
	font-size: 1rem;
}

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

/* HERO */

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

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

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

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

.hero_s5rLT-content {
	order: 2;
}

.hero_s5rLT-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: 1px var(--primary-alpha) solid;
	border-radius: 999px;
	font-size: 0.813rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.hero_s5rLT-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: 1220px;
	margin-inline: auto;
	padding: 0 48px 80px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.area_A638Q-subtitle {
	text-align: center;
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 3rem;
	max-width: 480px;
	margin: 0px auto;
}


/* -- CARDS -- */

.tile_lYE9z {
	background: var(--dark);
	border-radius: 18px;
	padding-top: 32px;
	padding-right: 28px;
	padding-bottom: 32px;
	padding-left: 28px;
	box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
	border: 1px solid rgba(255,255,255,0.06);
	transition: all .3s ease;
}

.tile_lYE9z:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgb(0 0 0 / 40%);
}

/* ===== Bonus Cards ===== */

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

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

.tile_lYE9z--bonus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	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;
}

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

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

/* Game Cards */

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

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

.tile_lYE9z--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.5s ease-in-out;
}

.tile_lYE9z--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(--light);
}

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

.tile_lYE9z-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s ease;
}

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

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

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


/* PROVIDER CARDS */

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

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

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

.tile_lYE9z--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all .3s ease;
}

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

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

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

/* SPLIT LAYOUT */

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

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

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

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

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

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

.pay-chip {
	background: rgba(255,255,255,0.08);
	border: rgba(255, 255, 255, 0.12) solid 1px;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 13px;
	color: rgb(255 255 255 / 75%);
	font-weight: 500;
	transition: background .3s ease;
}

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

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

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


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

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

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

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

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

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

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

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

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

.review-text {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7em;
	margin-bottom: 6px;
	font-style: italic;
}

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

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


/*! Payments Table */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255,255,255,0.02);
	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(--accent);
	text-transform: capitalize;
	font-size: 13px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background .3s ease;
}

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


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

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

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

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

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

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

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

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


/* -- CTA BLOCKS -- */

.area_A638Q--cta {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(to bottom right, var(--primary) 0%, var(--secondary) 100%);
	position: relative;
	overflow: hidden;
}

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

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

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

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

.area_A638Q--cta .cta_zj4CI {
	position: relative;
	background: white;
	color: var(--primary);
}

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

/** SEO Text **/

.info-text {
	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: solid 1px rgba(255,255,255,0.06);
}

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

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

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

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

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

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

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

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



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

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

.faq-question {
	width: 100%;
	padding-block: 22px;
	padding-inline: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: var(--light);
	text-align: left;
	transition: color .3s ease;
}

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

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

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

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

.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(--muted);
	line-height: 170%;
}

/* INFO TABLE */

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

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.06);
}

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

.info-table th,
.info-table td {
	padding-block: 18px;
	padding-inline: 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-top: 100px;
	padding-right: 48px;
	padding-bottom: 100px;
	padding-left: 48px;
	background: var(--dark);
	position: relative;
	overflow: hidden;
}

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

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

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

.bottom-bar_QqHOA-col h4 {
	font-size: 1.125rem;
	margin-bottom: 16px;
	color: white;
}

.bottom-bar_QqHOA-col p {
	color: rgba(255, 255, 255, 0.5);
	line-height: 170%;
	font-size: 14px;
}

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

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

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

.badge-strip {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.badge-strip img {
	height: 50px;
	filter: grayscale(100%);
	transition: all .3s ease;
}

.badge-strip img:hover {
	filter: none;
	opacity: 1;
}

.responsible-gaming {
	text-align: center;
	padding: 40px 0;
	border: 1px 0 solid rgba(255,255,255,0.08);
}

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

.responsible-text {
	font-size: 14px;
	color: rgb(255 255 255 / 40%);
	margin-bottom: 1.25rem;
}

.resp-logos {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

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

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

.resp-logos img {
	height: 40px;
	filter: grayscale(100%);
	transition: all .3s ease;
}

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

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

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

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

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


/*
 * Hamburger
 */

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

.burger span {
	width: 22px;
	height: 2px;
	background: var(--light);
	transition: all .3s ease;
	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: 64em) {
	.hero_s5rLT .box_iIfNJ {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.layout_gK9u4--bonuses { grid-template-columns: 1fr; }
	.layout_gK9u4--games { grid-template-columns: repeat(3, 1fr); }
	.layout_gK9u4--providers { grid-template-columns: repeat(4, 1fr); }
	.layout_gK9u4--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_QqHOA-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}

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

	.badge-strip { justify-content: center; }
}


/* ==================== RESPONSIVE - MOBILE ==================== */

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

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

	.burger {
		display: flex;
	}

	.menu_dIzcz {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		height: 100dvh;
		background: var(--dark);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right .3s ease;
		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;
	}

	.menu_dIzcz.active {
		right: 0px;
	}

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

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

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

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

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

@media (max-width: 30em) {
	.box_iIfNJ { padding: 0 16px; }
	.hero_s5rLT-ctas { flex-direction: column; }
	.hero_s5rLT-ctas .cta_zj4CI { width: 100%; }
	.stats-bar {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.layout_gK9u4--games { grid-template-columns: 1fr 1fr; }
	.layout_gK9u4--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_lYE9z { padding: 20px 16px; }
	.info-text { padding: 20px 16px; }

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

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