/*
 * Theme: Ocean Blue & Cyan
 * 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 */
	--clr-light: #f0f9ff;
	--clr-primary: #0ea5e9;
	--clr-secondary: #06b6d4;
	--clr-darker: #050d15;
	--clr-muted: #7dd3fc;
	--clr-accent: #22d3ee;
	--clr-primary-alpha: #0ea5e940;
	--clr-text: #e0f2fe;
	--clr-secondary-alpha: #06b6d440;
	--clr-dark: #0a1929;

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

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

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

	/* Shadows */
	--elevated-shadow: 0 15px 50px rgba(0,0,0,0.5);
	--glow-shadow: 0 0 50px;
	--card-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* -- BASE -- */

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

.acc-skip {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--clr-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rounded-md);
	z-index: 10000;
	transition: top 0.35s ease-in-out;
}

.acc-skip: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-anim {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

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

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



html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ff-body);
	background: var(--clr-darker);
	color: var(--clr-text);
	line-height: 160%;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-heading);
	font-weight: 700;
	line-height: 1.2;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.35s ease-in-out;
}


/** Container **/

.wrapper_e9GJd {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
}


/* ===== Header ===== */

.nav-wrap_sIrNF {
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 16px;
	padding-left: 0px;
	background: rgba(0,0,0,0.85);
	backdrop-filter: blur(12px);
	transition: all 0.35s ease-in-out;
}

.nav-wrap_sIrNF.scrolled {
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(20px);
	padding: 12px 0px 12px 0;
	box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.nav-wrap_sIrNF .wrapper_e9GJd {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-wrap_sIrNF .logo {
	font-family: var(--ff-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--clr-accent);
	text-transform: capitalize;
	letter-spacing: 0.05em;
}

.nav-links_Ln4y9 {
	display: flex;
	gap: 32px;
}

.nav-links_Ln4y9 a {
	font-weight: 500;
	color: var(--clr-text);
	opacity: 0.8;
	transition: all 0.35s ease-in-out;
}

.nav-links_Ln4y9 a:hover {
	opacity: 1;
	color: var(--clr-accent);
}

.nav-wrap_sIrNF-actions {
	display: flex;
	gap: 0.75rem;
}

/* -- BUTTONS -- */

.button_y39lU {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--ff-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rounded-md);
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.button_y39lU--primary {
	background: var(--clr-primary);
	border: none;
	color: rgb(255,255,255);
}

.button_y39lU--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--elevated-shadow);
}

.button_y39lU--secondary {
	background: transparent;
	border: 2px solid var(--clr-text);
	color: var(--clr-text);
}

.button_y39lU--secondary:hover {
	background: var(--clr-text);
	color: var(--clr-dark);
}

.button_y39lU--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 1.063rem;
}

.button_y39lU--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 0.875rem;
}

/* ===== Hero ===== */

.splash_Mqmp6 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	background: linear-gradient(120deg, var(--clr-dark) 0%, var(--clr-darker) 50%, var(--clr-dark) 100%);
	position: relative;
	overflow: hidden;
}

.splash_Mqmp6::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, var(--clr-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--clr-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

.splash_Mqmp6 .wrapper_e9GJd {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.75rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.splash_Mqmp6-content {
	order: 2;
}

.splash_Mqmp6-badge {
	display: inline-block;
	padding-block: 8px;
	padding-inline: 20px;
	background: var(--clr-primary-alpha);
	border-width: 1px;
	border-style: solid;
	border-color: var(--clr-primary);
	border-radius: var(--rounded-full);
	font-size: 14px;
	font-weight: 600;
	color: var(--clr-accent);
	margin-bottom: 1.5rem;
}

.splash_Mqmp6-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.25rem;
	color: #FFFFFF;
	text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.splash_Mqmp6-subtitle {
	font-size: 1.25rem;
	color: var(--clr-muted);
	margin-bottom: 32px;
	max-width: 540px;
}

.splash_Mqmp6-subtitle strong {
	color: var(--clr-accent);
}

.splash_Mqmp6-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.splash_Mqmp6-features {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.splash_Mqmp6-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--clr-muted);
}

.splash_Mqmp6-feature span {
	font-size: 19px;
}

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

.splash_Mqmp6-image img {
	width: 100%;
	max-width: 450px;
	max-height: 420px;
	object-fit: contain;
}


/* --- Sections --- */

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

.zone_ohI9Y-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 16px;
	color: rgb(255,255,255);
}

.zone_ohI9Y-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--clr-muted);
	margin-bottom: 3rem;
	max-width: 640px;
	margin: 0px auto;
}

/* Cards */

.panel_1Z2qT {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255,255,255,0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--rounded-lg);
	padding: var(--spacing-element);
	transition: all 0.35s ease-in-out;
}

.panel_1Z2qT:hover {
	transform: translateY(-6px);
	box-shadow: var(--elevated-shadow);
	border-color: var(--clr-primary);
}

.items_CFmS3--bonuses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-gap);
}

.panel_1Z2qT--bonus {
	text-align: center;
	padding-block: 40px;
	padding-inline: 30px;
}

.panel_1Z2qT-icon {
	font-size: 56px;
	margin-bottom: 20px;
}

.panel_1Z2qT--bonus h3 {
	font-size: 24px;
	margin-bottom: 16px;
	color: var(--clr-accent);
}

.panel_1Z2qT--bonus p {
	color: var(--clr-muted);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.items_CFmS3--games {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--spacing-gap);
}

.panel_1Z2qT--game {
	position: relative;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 1;
}

.panel_1Z2qT--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease-in-out;
}

.panel_1Z2qT--game:hover img {
	transform: scale(1.03) rotate(1deg);
}

.panel_1Z2qT-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

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

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

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

.items_CFmS3--providers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-gap);
}

.panel_1Z2qT--provider {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 2.5/1;
	position: relative;
}

.panel_1Z2qT--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 0.35s ease-in-out;
}

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

.panel_1Z2qT--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--clr-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

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

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

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

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

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

.reviewer-info strong {
	display: block;
	color: rgb(255,255,255);
}

.stars {
	color: var(--clr-accent);
	font-size: 0.875rem;
}

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

/* About / Content Layout */

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

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

.feature-block--alt {
	direction: rtl;
}

.feature-block--alt > * {
	direction: ltr;
}

.feature-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

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

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

.feature-visual img {
	width: 100%;
	max-width: 420px;
	max-height: 300px;
	object-fit: contain;
}


/* CTA Blocks */

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

.zone_ohI9Y--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.15;
}

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

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

.zone_ohI9Y--cta .button_y39lU {
	position: relative;
	background: #fff;
	color: var(--clr-primary);
}

.zone_ohI9Y--cta .button_y39lU:hover {
	background: var(--clr-dark);
	color: #FFF;
}


/*! Payments Table */

.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 2.5rem;
}

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

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

.payments-table thead {
	background: rgb(255 255 255 / 5%);
}

.payments-table th {
	font-weight: 600;
	color: var(--clr-accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.3px;
}

.payments-table tbody tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
	transition: background 0.35s ease-in-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(--rounded-full);
	font-size: 13px;
	color: var(--clr-accent);
}



.content-block {
	margin-top: 3rem;
	padding: 40px;
	background: rgba(255,255,255,0.02);
	border-radius: var(--rounded-lg);
	border: 1px solid rgba(255,255,255,0.05);
}

.content-block h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

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

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

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

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

.seo-content h2 {
	font-size: 2.5rem;
	margin-bottom: 24px;
	color: #fff;
}

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

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


/*! FAQ */

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

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--rounded-md);
	margin-bottom: 12px;
	background: rgb(255 255 255 / 2%);
}

.faq-question {
	width: 100%;
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	color: rgb(255,255,255);
	text-align: left;
	transition: color 0.35s ease-in-out;
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--clr-primary);
	transition: transform 0.35s ease-in-out;
}

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

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

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

.faq-answer p {
	padding: 0 24px 24px;
	color: var(--clr-muted);
	line-height: 1.8em;
}


/** Info Table **/

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

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

/* -- FOOTER -- */

.footer_S5roV {
	background: var(--clr-darker);
	padding: 80px 0px 0px;
	border: 1px 0 0 0 solid rgba(255, 255, 255, 0.05);
}

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

.footer_S5roV-col h4 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

.footer_S5roV-col p {
	color: var(--clr-muted);
	line-height: 180%;
}

.footer_S5roV-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer_S5roV-nav a {
	color: var(--clr-muted);
}

.footer_S5roV-nav a:hover {
	color: var(--clr-accent);
}

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

.trust-badges img {
	height: 50px;
	filter: grayscale(100%) brightness(2);
	transition: all 0.35s ease-in-out;
}

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

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

.responsible-gaming h4 {
	font-size: 1rem;
	margin-bottom: 12px;
	color: var(--clr-muted);
}

.responsible-text {
	font-size: 14px;
	color: var(--clr-muted);
	opacity: 0.8;
	margin-bottom: 20px;
}

.resp-logos {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.resp-logos a {
	display: block;
	transition: all 0.35s ease-in-out;
}

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

.resp-logos img {
	height: 40px;
	filter: saturate(0) brightness(1.8);
	transition: all 0.35s ease-in-out;
}

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

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

.footer_S5roV-bottom p {
	font-size: 14px;
	color: var(--clr-muted);
	opacity: 0.7;
	margin-bottom: 8px;
}

.footer_S5roV-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: 12px auto 0;
	opacity: 0.5;
	line-height: 160%;
}

/* HAMBURGER & MOBILE */

.burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	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: 30px;
	height: 3px;
	background: var(--clr-accent);
	transition: all 0.35s ease-in-out;
	border-radius: 2px;
}

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

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

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

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


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

	.splash_Mqmp6-content { order: 1; }
	.splash_Mqmp6-image { order: 2; }
	.splash_Mqmp6-subtitle { margin-left: auto; margin-right: auto; }
	.splash_Mqmp6-ctas { justify-content: center; }
	.splash_Mqmp6-features { justify-content: center; }

	.items_CFmS3--bonuses,
	.items_CFmS3--games,
	.items_CFmS3--providers { grid-template-columns: repeat(2, 1fr); }

	.items_CFmS3--reviews { grid-template-columns: 1fr 1fr; }

	.feature-block { grid-template-columns: 1fr; }
	.feature-block--alt { direction: ltr; }

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

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

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

/* -- RESPONSIVE - MOBILE -- */

@media (max-width: 769px) {
	.nav-wrap_sIrNF {
		padding: 0;
	}

	.nav-wrap_sIrNF .wrapper_e9GJd {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 0.75rem;
	}

	.logo {
		display: none;
	}

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

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(120deg, var(--clr-primary), var(--clr-secondary));
		color: #FFF;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.8px;
		border-radius: var(--rounded-md);
		box-shadow: 0 4px 15px var(--clr-primary-alpha);
	}

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

	.burger {
		display: flex;
	}

	.nav-links_Ln4y9 {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 85%;
		max-width: 360px;
		height: 100vh;
		background: var(--clr-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.35s ease-in-out;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
		border-left: 2px solid var(--clr-primary);
		z-index: 1001;
		gap: 0px;
	}

	.nav-links_Ln4y9.active {
		right: 0px;
	}

	.nav-links_Ln4y9 a {
		font-size: 19px;
		padding: 1rem 0px;
		border-bottom: 1px solid rgb(255 255 255 / 10%);
	}

	.items_CFmS3--bonuses,
	.items_CFmS3--games,
	.items_CFmS3--reviews {
		grid-template-columns: 1fr;
	}

	.items_CFmS3--providers {
		grid-template-columns: repeat(2, 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;
	}

	.zone_ohI9Y-title { font-size: 2rem; }
	.splash_Mqmp6-content h1 { font-size: 2.5rem; }
	.splash_Mqmp6 { padding-top: 100px; }
}

@media (max-width: 500px) {
	.wrapper_e9GJd { padding: 0 16px; }
	.zone_ohI9Y { padding: 60px 0px; }
	.splash_Mqmp6-ctas { flex-direction: column; }
	.splash_Mqmp6-ctas .button_y39lU { width: 100%; }

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