/*
 * Theme: Emerald Fortune
 * Typography: Classic Power
 */

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

:root {
	/* Colors */
	--dark: #052e1f;
	--muted: #6ee7b7;
	--primary-alpha: #05966940;
	--secondary-alpha: #10b98140;
	--secondary: #10b981;
	--darker: #021a11;
	--light: #ecfdf5;
	--primary: #059669;
	--accent: #34d399;
	--text: #d1fae5;

	/* Typography */
	--typo-heading: 'Teko', sans-serif;
	--typo-body: 'Rubik', sans-serif;

	/* Spacing */
	--pad-element: 20px;
	--grid-gap: 20px;
	--pad-section: 50px;

	/* Border Radius */
	--r-md: 12px;
	--r-lg: 16px;
	--r-full: 8px;
	--r-sm: 8px;

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


/*
 * Base
 */

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



.skip-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--primary);
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-full);
	z-index: 10000;
	transition: top 250ms ease;
}

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


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

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



/* ANIMATIONS */

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

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



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

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

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

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



/*
 * Container
 */

.container_2MxYn {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 48px;
	padding-bottom: 0;
	padding-left: 48px;
}


/* Header */

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

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

.header_sXcL5 .container_2MxYn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.header_sXcL5 .logo {
	font-family: var(--typo-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--light);
	letter-spacing: -0.5px;
}

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

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

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

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

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



/*! Buttons */

.btn_q6g1Z {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--typo-body);
	font-size: 0.938rem;
	font-weight: 700;
	border-radius: 999px;
	cursor: pointer;
	transition: all 250ms ease;
	letter-spacing: 0.3px;
	text-decoration: none;
}

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

.btn_q6g1Z--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--primary-alpha);
	background: var(--primary);
	color: rgb(255, 255, 255);
}

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

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

.btn_q6g1Z--large {
	padding-top: 16px;
	padding-right: 36px;
	padding-bottom: 16px;
	padding-left: 36px;
	font-size: 1rem;
}

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



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

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

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

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

.showcase_oedEq-content {
}

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

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

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

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

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

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

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

.showcase_oedEq-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: 1200px;
	margin: 0px 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.08);
}

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

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

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



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

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

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

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

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

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

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

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


/* --- Cards --- */

.panel_ZCqC2 {
	background: var(--dark);
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255,255,255,0.08);
	transition: all 250ms ease;
}

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



/** Bonus Cards **/

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

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

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

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

.panel_ZCqC2--bonus p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7em;
	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 -- */

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

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

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

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

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

.panel_ZCqC2--game:hover .game-thumb img {
	transform: scale(1.05);
}

.game-info {
	padding-top: 14px;
	padding-right: 16px;
	padding-bottom: 14px;
	padding-left: 16px;
}

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

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

.panel_ZCqC2-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 250ms ease;
}

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

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

.panel_ZCqC2-name {
	font-weight: 600;
	color: rgb(255, 255, 255);
}


/** Provider Cards **/

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

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

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

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

.panel_ZCqC2--provider:hover img {
	filter: grayscale(0%);
	transform: scale(1.03) rotate(1deg);
}

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

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



/*! Split Layout */

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

.split-block {
	border-radius: 20px;
	padding-top: 40px;
	padding-right: 36px;
	padding-bottom: 40px;
	padding-left: 36px;
}

.split-block--dark {
	background: var(--darker);
	color: rgb(255, 255, 255);
}

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

.split-block--dark h2 {
	color: rgb(255, 255, 255);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 12px 0 28px;
}

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

.pay-chip {
	background: rgba(255, 255, 255, 0.08);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding-block: 10px;
	padding-inline: 20px;
	font-size: 13px;
	color: rgb(255 255 255 / 75%);
	font-weight: 500;
	transition: background 250ms 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.08);
}

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



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

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

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

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

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

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

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

.review-item {
	padding: 1.25rem 0;
	border: rgba(255,255,255,0.08) solid 1px 0 0 0;
}

.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.7;
	margin-bottom: 0.38rem;
	font-style: italic;
}

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

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



/* ==================== PAYMENTS TABLE ==================== */

.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(--r-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: rgb(255 255 255 / 5%);
}

.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 250ms 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(--r-full);
	font-size: 0.813rem;
	color: var(--primary);
}



/*
 * About
 */

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

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

.alt-row--flip {
	direction: rtl;
}

.alt-row--flip > * {
	direction: ltr;
}

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

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

.alt-media {
	display: flex;
	align-items: center;
	justify-content: center;
}

.alt-media img {
	width: 100%;
	max-width: 400px;
	max-height: 320px;
	object-fit: contain;
	border-radius: var(--r-lg);
}




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

.block_8wYjx--cta::before {
	content: '';
	position: absolute;
	inset: 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.2;
}

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

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

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

.block_8wYjx--cta .btn_q6g1Z {
	position: relative;
	background: rgb(255, 255, 255);
	color: var(--primary);
}

.block_8wYjx--cta .btn_q6g1Z:hover {
	background: rgba(255,255,255,0.2);
	color: rgb(255, 255, 255);
}




.section-text {
	margin-top: 3rem;
	padding-top: 36px;
	padding-right: 36px;
	padding-bottom: 36px;
	padding-left: 36px;
	background: var(--dark);
	border-radius: var(--r-lg);
	border: 1px solid rgba(255,255,255,0.08);
}

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

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

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

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

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

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

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

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



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

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

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

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

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

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 250ms 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: 1.7em;
}


/* -- INFO TABLE -- */

.info-table {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: var(--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.08);
}

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

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

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

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

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


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

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

.cta-bottom::before {
	content: '';
	position: absolute;
	top: 0px;
	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: -1px;
	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: 36px;
	position: relative;
}



/* FOOTER */

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

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

.bottom-bar_UFBVP-col h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: rgb(255, 255, 255);
}

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

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

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

.bottom-bar_UFBVP-nav a:hover {
	color: rgb(255, 255, 255);
}

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

.security-badges img {
	height: 50px;
	filter: saturate(0) brightness(1.8);
	transition: all 250ms ease;
}

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

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

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

.responsible-text {
	font-size: 14px;
	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;
}

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

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

.safe-play a:hover img {
	filter: none;
	opacity: 1;
}

.bottom-bar_UFBVP-bottom {
	padding-block: 24px;
	padding-inline: 0;
	text-align: center;
}

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

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

.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 */

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

.burger span {
	width: 24px;
	height: 2px;
	background: var(--light);
	transition: all 250ms 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;
}




@media (max-width: 63.9375em) {
	.showcase_oedEq .container_2MxYn {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

	.alt-row { grid-template-columns: 1fr; }
	.alt-row--flip { direction: ltr; }

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

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

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

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



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

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--typo-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: rgb(255, 255, 255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		border-radius: 999px;
		box-shadow: 0 4px 14px var(--primary-alpha);
	}

	.header_sXcL5-actions {
		display: none;
	}

	.burger {
		display: flex;
	}

	.navigation_EqIEc {
		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 250ms ease;
		box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
		border-left: 2px solid var(--primary);
		z-index: 1001;
		gap: 0;
		overflow-y: auto;
	}

	.navigation_EqIEc.active {
		right: 0px;
	}

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

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

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

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

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

@media (max-width: 480px) {
	.container_2MxYn { padding: 0px 16px; }
	.showcase_oedEq-ctas { flex-direction: column; }
	.showcase_oedEq-ctas .btn_q6g1Z { width: 100%; }
	.stats-bar {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.collection_qpqnU--games { grid-template-columns: 1fr 1fr; }
	.collection_qpqnU--providers { grid-template-columns: repeat(2, 1fr); }

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

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

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

	.panel_ZCqC2 { padding: 20px 16px; }
	.section-text { padding: 20px 16px; }

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

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