/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Crimson & Black
 * Typography: Sporty Bold
 * Generated: 2026-02-22T10:12:00.925Z
 */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Lato:wght@400;700&display=swap');

:root {
	--theme-primary: #dc2626;
	--theme-secondary: #f97316;
	--theme-secondary-alpha: #f9731640;
	--theme-primary-alpha: #dc262640;
	--theme-accent: #fb923c;
	--theme-dark: #1a0a0a;
	--theme-darker: #0d0505;
	--theme-light: #fef2f2;
	--theme-muted: #f87171;
	--theme-text: #fecaca;

	--typo-heading: 'Russo One', sans-serif;
	--typo-body: 'Lato', sans-serif;

	--pad-section: 70px;
	--pad-element: 30px;
	--grid-gap: 25px;
	--r-md: 16px;
	--r-sm: 4px;
	--r-lg: 24px;
	--r-full: 100px;
	--sh-card: 0 8px 40px rgba(0,0,0,0.4);
	--sh-elevated: 0 15px 50px rgba(0,0,0,0.5);
	--sh-glow: 0 0 50px;
}


/* ==================== 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(--theme-primary);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 0.35s ease;
}

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


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

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


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

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



html {
	scroll-behavior: smooth;
}

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

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

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

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

/* --- Container --- */

.container_clhR4 {
	max-width: 1280px;
	margin-inline: auto;
	padding: 0 24px;
}

/* Header */

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

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

.masthead_y521U .container_clhR4 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.masthead_y521U .logo {
	font-family: var(--typo-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: none;
	letter-spacing: 0.08em;
}

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

.menu_wfT0F a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all 0.35s ease;
}

.menu_wfT0F a:hover {
	opacity: 1;
	color: var(--theme-accent);
}

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


.action_ZK7Ct {
	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: 15px;
	font-weight: 600;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: all 0.35s ease;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.action_ZK7Ct--primary {
	background: linear-gradient(to right, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	border: none;
	color: white;
}

.action_ZK7Ct--primary:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh-elevated);
}

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

.action_ZK7Ct--secondary:hover {
	background: var(--theme-text);
	color: var(--theme-dark);
}

.action_ZK7Ct--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 17px;
}

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



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

.splash_O86dz::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, var(--theme-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--theme-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

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

.splash_O86dz-content {
}

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

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

.splash_O86dz-subtitle {
	font-size: 20px;
	color: var(--theme-muted);
	margin-bottom: 32px;
	max-width: 460px;
}

.splash_O86dz-subtitle strong {
	color: var(--theme-accent);
}

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

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

.splash_O86dz-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--theme-muted);
}

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

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

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

/*
 * Sections
 */

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

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

.zone_ZxjHa-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--theme-muted);
	margin-bottom: 48px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}


/** Cards **/

.panel_O1uvb {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
	border-radius: var(--r-lg);
	padding: var(--pad-element);
	transition: all 0.35s ease;
}

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

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

.panel_O1uvb--bonus {
	text-align: center;
	padding: 40px 30px;
}

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

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

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

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

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

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

.panel_O1uvb--game:hover img {
	transform: scale(1.06);
}

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

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

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

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

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

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

.panel_O1uvb--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s ease;
}

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

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

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

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

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

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

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

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

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

.panel_O1uvb--review p {
	color: var(--theme-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(--theme-accent);
}

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

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

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

/** CTA Blocks **/

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

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

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

.zone_ZxjHa--cta p {
	font-size: 1.188rem;
	color: rgb(255 255 255 / 90%);
	margin-bottom: 32px;
	position: relative;
}

.zone_ZxjHa--cta .action_ZK7Ct {
	position: relative;
	background: rgb(255,255,255);
	color: var(--theme-primary);
}

.zone_ZxjHa--cta .action_ZK7Ct:hover {
	background: var(--theme-dark);
	color: #FFFFFF;
}

/*! Payments Table */

.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(--r-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(--theme-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.05em;
}

.payments-table tbody tr {
	border: rgba(255, 255, 255, 0.05) 0 0 1px 0 solid;
	transition: background 0.35s ease;
}

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

.payment-method {
	display: flex;
	align-items: center;
	gap: 1rem;
}

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

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



.description-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(--r-lg);
	border: 1px solid rgb(255 255 255 / 5%);
}

.description-text h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--theme-accent);
}

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

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

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

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

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

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

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

/* --- FAQ --- */

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

.faq-item {
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
	border-radius: var(--r-md);
	margin-bottom: 0.75rem;
	overflow: hidden;
	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: 1.063rem;
	font-weight: 600;
	color: #ffffff;
	text-align: left;
	transition: all 0.35s ease;
}

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

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--theme-primary);
	transition: transform 0.35s ease;
}

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

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

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


.info-table {
	width: 100%;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--r-lg);
	overflow: hidden;
}

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

.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(--theme-accent);
	background: rgba(255, 255, 255, 0.02);
}

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

/* -- FOOTER -- */

.footer_OWt8U {
	background: var(--theme-darker);
	padding: 80px 0 0px 0px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

.footer_OWt8U-col p {
	color: var(--theme-muted);
	line-height: 1.8em;
}

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

.footer_OWt8U-nav a {
	color: var(--theme-muted);
}

.footer_OWt8U-nav a:hover {
	color: var(--theme-accent);
}

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

.trust-badges img {
	height: 50px;
	filter: saturate(0) brightness(1.8);
	transition: all 0.35s ease;
}

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

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

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

.responsible-text {
	font-size: 0.875rem;
	color: var(--theme-muted);
	opacity: 0.8;
	margin-bottom: 1.25rem;
}

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

.responsible-logos a {
	display: block;
	transition: all 0.35s ease;
}

.responsible-logos a:hover {
	transform: translate(0, -3px);
}

.responsible-logos img {
	height: 40px;
	opacity: 0.4;
	transition: all 0.35s ease;
}

.responsible-logos a:hover img {
	filter: brightness(1) contrast(1);
	opacity: 1;
}

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

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

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

.footer-update {
	margin-top: 16px;
	opacity: 0.6;
}

.footer-legal {
	font-weight: 500;
}

.footer-disclaimer {
	max-width: 720px;
	margin: 12px auto 0;
	opacity: 0.5;
	line-height: 160%;
}

/*! Hamburger & Mobile */

.hamburger {
	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;
}

.hamburger span {
	width: 28px;
	height: 2px;
	background: var(--theme-accent);
	transition: all 0.35s ease;
	border-radius: 2px;
}

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

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

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

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

/* Responsive - Tablet */

@media (max-width: 1024px) {
	.splash_O86dz .container_clhR4 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

/* -- RESPONSIVE - MOBILE -- */

@media (max-width: 770px) {
	.masthead_y521U {
		padding: 0px;
	}

	.masthead_y521U .container_clhR4 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 12px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--typo-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-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(90deg, var(--theme-primary), var(--theme-secondary));
		color: rgb(255,255,255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.03em;
		border-radius: var(--r-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.masthead_y521U-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

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

	.menu_wfT0F.active {
		right: 0px;
	}

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

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

	.grid_M6WAN--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_ZxjHa-title { font-size: 2rem; }
	.splash_O86dz-content h1 { font-size: 2.5rem; }
	.splash_O86dz { padding-top: 100px; }
}

@media (max-width: 479px) {
	.container_clhR4 { padding: 0 16px; }
	.zone_ZxjHa { padding: 60px 0; }
	.splash_O86dz-ctas { flex-direction: column; }
	.splash_O86dz-ctas .action_ZK7Ct { width: 100%; }

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