

@import 'https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap';

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

	/* Typography */
	--font-body: 'Inter', sans-serif;
	--font-heading: 'Bebas Neue', sans-serif;

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

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

	/* Shadows */
	--shadow-card: 0 4px 20px rgba(0,0,0,0.25);
	--shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-glow: 0 0 30px;
}


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

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

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

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

@keyframes slideUp-fx {
	0% { opacity: 0; transform: translateY(25px); }
	100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}


html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--c-darker);
	color: var(--c-text);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-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 -- */

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

/* HEADER */

.nav-wrap_sWkH3 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 1000;
	padding: 16px 0 16px 0px;
	background: rgb(0 0 0 / 85%);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: all 0.35s ease-in-out;
}

.nav-wrap_sWkH3.scrolled {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 12px;
	padding-left: 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-wrap_sWkH3 .logo {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

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

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

.nav-wrap_sWkH3-actions {
	display: flex;
	gap: 12px;
}

/* Buttons */

.button_2tOQD {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--font-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.3px;
}

.button_2tOQD--primary {
	background: transparent;
	border: 2px solid var(--c-primary);
	color: var(--c-primary);
}

.button_2tOQD--primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-elevated);
	background: var(--c-primary);
	color: white;
}

.button_2tOQD--secondary {
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: var(--c-text);
	color: var(--c-text);
}

.button_2tOQD--secondary:hover {
	background: var(--c-text);
	color: var(--c-dark);
}

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

.button_2tOQD--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 14px;
}

/* Hero */

.intro_ZUlrX {
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding-top: 120px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(120deg, var(--c-dark) 0%, var(--c-darker) 50%, var(--c-dark) 100%);
	position: relative;
	overflow: hidden;
}

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

.intro_ZUlrX .container_6esp1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.intro_ZUlrX-content {
	order: 2;
}

.intro_ZUlrX-badge {
	display: inline-block;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	background: var(--c-primary-alpha);
	border: solid 1px var(--c-primary);
	border-radius: var(--rounded-full);
	font-size: 14px;
	font-weight: 600;
	color: var(--c-accent);
	margin-bottom: 24px;
}

.intro_ZUlrX-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 20px;
	color: #FFF;
	text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.intro_ZUlrX-subtitle {
	font-size: 20px;
	color: var(--c-muted);
	margin-bottom: 32px;
	max-width: 540px;
}

.intro_ZUlrX-subtitle strong {
	color: var(--c-accent);
}

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

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

.intro_ZUlrX-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	color: var(--c-muted);
}

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

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

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

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

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

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

.area_Ffwjy-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--c-muted);
	margin-bottom: 48px;
	max-width: 560px;
	margin: 0px auto;
}

/** Cards **/

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

.box_iyLau:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-elevated);
	border-color: var(--c-primary);
}

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

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

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

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

.box_iyLau--bonus p {
	color: var(--c-muted);
	margin-bottom: 24px;
	line-height: 1.7;
}

.grid_6gAeT--games {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}

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

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

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

.box_iyLau-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

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

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

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

.grid_6gAeT--providers {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--gap);
}

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

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

.box_iyLau--provider:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.06);
}

.box_iyLau--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--c-muted);
	text-align: center;
	background: linear-gradient(transparent, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

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

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

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

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

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

.reviewer-info strong {
	display: block;
	color: #FFFFFF;
}

.stars {
	color: var(--c-accent);
	font-size: 14px;
}

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

/* ABOUT / CONTENT LAYOUT */

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

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

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

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

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

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

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

.two-col-img img {
	width: 100%;
	max-width: 400px;
	max-height: 340px;
	object-fit: contain;
}

/* CTA Blocks */

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

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

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

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

.area_Ffwjy--cta .button_2tOQD {
	position: relative;
	background: rgb(255,255,255);
	color: var(--c-primary);
}

.area_Ffwjy--cta .button_2tOQD:hover {
	background: var(--c-dark);
	color: #ffffff;
}


.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

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

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

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

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

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

.payments-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--c-primary-alpha);
	border-radius: var(--rounded-full);
	font-size: 13px;
	color: var(--c-accent);
}


.seo-text {
	margin-top: 48px;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	background: rgba(255,255,255,0.02);
	border-radius: var(--rounded-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.05);
}

.seo-text h3 {
	font-size: 24px;
	margin-bottom: 1.25rem;
	color: var(--c-accent);
}

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

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

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 1.5rem;
	color: #FFF;
}

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

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

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

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

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

.faq-question {
	width: 100%;
	padding: 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(--c-accent);
}

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--c-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-top: 0;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	color: var(--c-muted);
	line-height: 1.8;
}

/* ===== Info Table ===== */

.info-table {
	width: 100%;
	max-width: 800px;
	margin: 0 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: 0 0 1px 0 rgb(255 255 255 / 5%) solid;
}

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

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

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

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

/* ===== Footer ===== */

.bottom-bar_Hkfxe {
	background: var(--c-darker);
	padding-top: 80px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0;
	border: solid rgba(255,255,255,0.05) 1px 0 0 0;
}

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

.bottom-bar_Hkfxe-col h4 {
	font-size: 20px;
	margin-bottom: 1.25rem;
	color: var(--c-accent);
}

.bottom-bar_Hkfxe-col p {
	color: var(--c-muted);
	line-height: 180%;
}

.bottom-bar_Hkfxe-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bottom-bar_Hkfxe-nav a {
	color: var(--c-muted);
}

.bottom-bar_Hkfxe-nav a:hover {
	color: var(--c-accent);
}

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

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

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

.responsible-gaming {
	text-align: center;
	padding: 40px 0;
	border: 1px 0 solid rgb(255 255 255 / 5%);
}

.responsible-gaming h4 {
	font-size: 16px;
	margin-bottom: 0.75rem;
	color: var(--c-muted);
}

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

.safe-play {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

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

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

.safe-play img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 0.35s ease-in-out;
}

.safe-play a:hover img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

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

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

.bottom-bar_Hkfxe-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: 12px auto 0;
	opacity: 0.5;
	line-height: 1.6;
}

/** Hamburger & Mobile **/

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 0.38rem;
	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;
}

.nav-toggle span {
	width: 24px;
	height: 3px;
	background: var(--c-accent);
	transition: all 0.35s ease-in-out;
	border-radius: 2px;
}

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

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

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

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

/* -- RESPONSIVE - TABLET -- */

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

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

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

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

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

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

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

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

/*
 * Responsive - Mobile
 */

@media (max-width: 48em) {
	.nav-wrap_sWkH3 {
		padding: 0;
	}

	.nav-wrap_sWkH3 .container_6esp1 {
		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(--font-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--c-accent);
		text-transform: capitalize;
		text-decoration: none;
		white-space: nowrap;
	}

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

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

	.nav-toggle {
		display: flex;
	}

	.nav-links_IKcQI {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 90%;
		max-width: 400px;
		height: 100vh;
		background: var(--c-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(--c-primary);
		z-index: 1001;
		gap: 0;
	}

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

	.nav-links_IKcQI a {
		font-size: 19px;
		padding: 1rem 0px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

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

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

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

@media (max-width: 29.9375rem) {
	.container_6esp1 { padding: 0 16px; }
	.area_Ffwjy { padding: 60px 0; }
	.intro_ZUlrX-ctas { flex-direction: column; }
	.intro_ZUlrX-ctas .button_2tOQD { width: 100%; }

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