/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Midnight Gold
 * Typography: Clean Geometric
 * Generated: 2026-09-12T18:19:01.480Z
 */

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

:root {
	--theme-dark: #1a1505;
	--theme-light: #fefce8;
	--theme-secondary: #eab308;
	--theme-accent: #fde047;
	--theme-muted: #facc15;
	--theme-text: #fef08a;
	--theme-primary: #ca8a04;
	--theme-primary-alpha: #ca8a0440;
	--theme-secondary-alpha: #eab30840;
	--theme-darker: #0d0b02;

	--body-font: 'Open Sans', sans-serif;
	--heading-font: 'Poppins', sans-serif;

	--section-padding: 50px;
	--element-spacing: 20px;
	--gap: 20px;
	--border-radius-sm: 4px;
	--border-radius-md: 16px;
	--border-radius-lg: 24px;
	--border-radius-full: 100px;
	--card-shadow: 0 4px 20px rgba(0,0,0,0.25);
	--glow-shadow: 0 0 30px;
	--elevated-shadow: 0 8px 30px rgba(0,0,0,0.35);
}


/* ==================== BASE ==================== */

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


.skip-nav {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--theme-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-md);
	z-index: 10000;
	transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skip-nav: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;
	}
}

/* --- Animations --- */

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

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

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



html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */

.box_AeDXh {
	max-width: 80rem;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}

/* ==================== HEADER ==================== */

.masthead_FSEoz {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0px 16px 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(12px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.masthead_FSEoz.scrolled {
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(20px);
	padding: 12px 0px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.masthead_FSEoz .box_AeDXh {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.masthead_FSEoz .logo {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

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

.navigation_RCiul a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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


.cta_KfN9j {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--body-font);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta_KfN9j--primary {
	background: var(--theme-primary);
	border: none;
	color: #fff;
}

.cta_KfN9j--primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--elevated-shadow);
}

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

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

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

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

/* ==================== HERO ==================== */

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

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

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

.banner_2baY1-content {
	order: 2;
}

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

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

.banner_2baY1-subtitle {
	font-size: 1.25rem;
	color: var(--theme-muted);
	margin-bottom: 32px;
	max-width: 520px;
}

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

.banner_2baY1-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

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

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

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

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

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


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

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

.area_d1Xyu-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--theme-muted);
	margin-bottom: 3rem;
	max-width: 560px;
	margin-inline: auto;
}

/** Cards **/

.item_zXVuq {
	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(--border-radius-lg);
	padding: var(--element-spacing);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

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

.item_zXVuq-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.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.item_zXVuq--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.item_zXVuq--provider span {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0px;
	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.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

/*
 * About / Content Layout
 */

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

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

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

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

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

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

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

.alt-media img {
	width: 100%;
	max-width: 450px;
	max-height: 300px;
	object-fit: contain;
}


/* CTA BLOCKS */

.area_d1Xyu--cta {
	text-align: center;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(170deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.area_d1Xyu--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
	opacity: 0.15;
}

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

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

.area_d1Xyu--cta .cta_KfN9j {
	position: relative;
	background: white;
	color: var(--theme-primary);
}

.area_d1Xyu--cta .cta_KfN9j: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: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--border-radius-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: rgba(255,255,255,0.05);
}

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

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
	transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/*
 * SEO Text
 */

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

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

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

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

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

.seo-content {
	max-width: 960px;
	margin-inline: auto;
}

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

.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: 800px;
	margin: 0 auto;
}

.faq-item {
	border: 1px rgb(255 255 255 / 8%) solid;
	border-radius: var(--border-radius-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: white;
	text-align: left;
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--theme-primary);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.site-footer_T0VnJ {
	background: var(--theme-darker);
	padding-top: 80px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

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

.trust-seals img {
	height: 50px;
	filter: saturate(0) brightness(1.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.resp-logos a {
	display: block;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.resp-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.site-footer_T0VnJ-bottom p {
	font-size: 0.875rem;
	color: var(--theme-muted);
	opacity: 0.7;
	margin-bottom: 8px;
}

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

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

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

.footer-disclaimer {
	max-width: 650px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6;
}

/* HAMBURGER & MOBILE */

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

.burger span {
	width: 28px;
	height: 3px;
	background: var(--theme-accent);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	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;
}

/** Responsive - Tablet **/

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

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

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

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

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

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

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

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

/* --- Responsive - Mobile --- */

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

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

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--heading-font);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-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(120deg, var(--theme-primary), var(--theme-secondary));
		color: white;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: capitalize;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--border-radius-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.masthead_FSEoz-actions {
		display: none;
	}

	.burger {
		display: flex;
	}

	.navigation_RCiul {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 75%;
		max-width: 400px;
		height: 100vh;
		background: var(--theme-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
		border-left: 2px solid var(--theme-primary);
		z-index: 1001;
		gap: 0px;
	}

	.navigation_RCiul.active {
		right: 0;
	}

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

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

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

@media (max-width: 29.9375em) {
	.box_AeDXh { padding: 0 16px; }
	.area_d1Xyu { padding: 60px 0px; }
	.banner_2baY1-ctas { flex-direction: column; }
	.banner_2baY1-ctas .cta_KfN9j { width: 100%; }

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