/*!
 * Stylesheet: Teal Wave
 * Fonts: Poppins / Open Sans
 * Date: 2026-09-15T12:03:12.510Z
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
	/* Colors */
	--clr-light: #f0fdfa;
	--clr-dark: #042f2e;
	--clr-accent: #5eead4;
	--clr-muted: #5eead4;
	--clr-primary: #14b8a6;
	--clr-primary-alpha: #14b8a640;
	--clr-secondary: #2dd4bf;
	--clr-darker: #021716;
	--clr-text: #ccfbf1;
	--clr-secondary-alpha: #2dd4bf40;

	/* Typography */
	--font-family-body: 'Open Sans', sans-serif;
	--font-family-heading: 'Poppins', sans-serif;

	/* Spacing */
	--section-padding: 40px;
	--gap: 12px;
	--element-spacing: 16px;

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

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


/** Base **/

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

.jump-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-block: 12px;
	padding-inline: 24px;
	background: var(--clr-primary);
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-full);
	z-index: 10000;
	transition: top 350ms ease-out;
}

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


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

@keyframes run-slideUp {
	0% { opacity: 0; transform: translateY(1.5rem); }
	100% { opacity: 1; transform: translateY(0); }
}

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



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

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

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

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

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

/* ===== Container ===== */

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



.site-header_JtW5C {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgb(0 0 0 / 60%);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 solid rgba(255,255,255,0.06);
	transition: all 350ms ease-out;
}

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

.site-header_JtW5C .box_ugZk5 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.site-header_JtW5C .logo {
	font-family: var(--font-family-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--clr-light);
	letter-spacing: -0.3px;
}

.site-header_JtW5C .logo span {
	color: var(--clr-primary);
}

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

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

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

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

/*! Buttons */

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

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

.button_qWiGD--primary:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 25px var(--clr-primary-alpha);
	background: var(--clr-primary);
	color: #FFF;
}

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

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

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

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

/*
 * Hero
 */

.showcase_Ekynm {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 60px;
	padding-left: 0;
}

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

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

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

.showcase_Ekynm-content {
}

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

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

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

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

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

.showcase_Ekynm-ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

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

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


/* ===== Stats Bar ===== */

.key-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 48px 80px;
}

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

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

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

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

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

/*
 * Sections
 */

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

.zone_RFwck--gray {
	background: rgba(255,255,255,0.025);
}

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

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

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

.zone_RFwck-head p {
	font-size: 16px;
	color: var(--clr-muted);
	max-width: 500px;
	margin-inline: auto;
}

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

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


/* CARDS */

.box_N6vwe {
	background: var(--clr-dark);
	border-radius: 16px;
	padding-top: 32px;
	padding-right: 28px;
	padding-bottom: 32px;
	padding-left: 28px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255,255,255,0.06);
	transition: all 350ms ease-out;
}

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

/*
 * Bonus Cards
 */

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

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

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

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

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

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

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


/* -- GAME CARDS -- */

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

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

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

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

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

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

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

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

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

.box_N6vwe-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.7);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 350ms ease-out;
}

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

.box_N6vwe-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, rgba(0, 0, 0, 0.9));
}

.box_N6vwe-name {
	font-weight: 600;
	color: #FFF;
}

/*! Provider Cards */

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

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

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

.box_N6vwe--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: saturate(0) brightness(1.8);
	transition: all 350ms ease-out;
}

.box_N6vwe--provider:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

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

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


/* ==================== SPLIT LAYOUT ==================== */

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

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

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

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

.split-block--dark h2 {
	color: #FFF;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 0.75rem 0px 1.75rem;
}

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

.pay-chip {
	background: rgb(255 255 255 / 8%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.12);
	border-radius: 12px;
	padding-block: 10px;
	padding-inline: 20px;
	font-size: 0.813rem;
	color: rgba(255,255,255,0.75);
	font-weight: 500;
	transition: background 350ms ease-out;
}

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

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

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

/* Reviews */

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

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

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

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

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

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

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

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

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

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

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

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


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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.payments-table th,
.payments-table td {
	padding-block: 16px;
	padding-inline: 20px;
	text-align: left;
}

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

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

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

.payments-table tbody tr:hover {
	background: rgb(255 255 255 / 3%);
}

.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(--clr-primary-alpha);
	border-radius: var(--radius-full);
	font-size: 0.813rem;
	color: var(--clr-primary);
}

/* --- About --- */

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

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

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

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

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

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

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

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

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

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

.zone_RFwck--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_RFwck--cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #FFF;
	margin-bottom: 16px;
	position: relative;
}

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

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

.zone_RFwck--cta .button_qWiGD {
	position: relative;
	background: #FFF;
	color: var(--clr-primary);
}

.zone_RFwck--cta .button_qWiGD:hover {
	background: rgb(255 255 255 / 20%);
	color: #FFF;
}


.section-text {
	margin-top: 3rem;
	padding: 36px;
	background: var(--clr-dark);
	border-radius: var(--radius-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.06);
}

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

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

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

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

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

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

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

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


/*! FAQ */

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

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

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

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

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

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

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

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

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

/** Info Table **/

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

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

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

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

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

.cta-bottom {
	text-align: center;
	padding-top: 100px;
	padding-right: 48px;
	padding-bottom: 100px;
	padding-left: 48px;
	background: var(--clr-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(--clr-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.cta-bottom h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -1.5px;
	margin-bottom: 16px;
	position: relative;
}

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

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

/* --- Footer --- */

.footer_hMgxU {
	background: var(--clr-darker);
	padding: 60px 0 0;
}

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

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

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

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

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

.footer_hMgxU-nav a:hover {
	color: #FFF;
}

.cert-logos {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cert-logos img {
	height: 50px;
	filter: grayscale(100%) brightness(2);
	transition: all 350ms ease-out;
}

.cert-logos 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: 12px;
	color: rgba(255,255,255,0.5);
}

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

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

.responsible-logos a {
	display: block;
	transition: all 350ms ease-out;
}

.responsible-logos a:hover {
	transform: translateY(-4px);
}

.responsible-logos img {
	height: 40px;
	filter: saturate(0) brightness(1.8);
	transition: all 350ms ease-out;
}

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

.footer_hMgxU-bottom {
	padding: 24px 0;
	text-align: center;
}

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

.footer_hMgxU-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: 160%;
}


/* --- Hamburger --- */

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

.menu-toggle span {
	width: 26px;
	height: 2px;
	background: var(--clr-light);
	transition: all 350ms ease-out;
	border-radius: 2px;
}

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

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

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

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

/* --- Responsive - Tablet --- */

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

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

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

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

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

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

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

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

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

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

	.cert-logos { justify-content: center; }
}


/*
 * Responsive - Mobile
 */

@media (max-width: 47.9375em) {
	.site-header_JtW5C .box_ugZk5 {
		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(--clr-light);
		text-decoration: none;
		white-space: nowrap;
	}

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

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

	.site-header_JtW5C-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

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

	.menu_anIFc.active {
		right: 0px;
	}

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

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

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

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

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

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

@media (max-width: 30rem) {
	.box_ugZk5 { padding: 0 16px; }
	.showcase_Ekynm-ctas { flex-direction: column; }
	.showcase_Ekynm-ctas .button_qWiGD { width: 100%; }
	.key-stats {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.layout_pAOSj--games { grid-template-columns: 1fr 1fr; }
	.layout_pAOSj--providers { grid-template-columns: repeat(2, 1fr); }

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

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

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

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

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

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