/*
 * Theme: Royal Purple & Gold
 * Typography: Bold Impact
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Nunito:wght@400;600&display=swap');

:root {
	--secondary-alpha: #f59e0b40;
	--muted: #a8a3c7;
	--dark: #0f0a1e;
	--light: #f5f3ff;
	--primary: #7c3aed;
	--text: #e2e0ff;
	--darker: #080510;
	--secondary: #f59e0b;
	--accent: #fbbf24;
	--primary-alpha: #7c3aed40;

	--font-body: 'Nunito', sans-serif;
	--font-heading: 'Oswald', sans-serif;

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


/** 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(--primary);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-md);
	z-index: 10000;
	transition: top 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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



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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--darker);
	color: var(--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 300ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==================== CONTAINER ==================== */

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


/* --- Header --- */

.header_GcJv4 {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0;
	z-index: 1000;
	padding: 16px 0px 16px 0;
	background: rgba(0,0,0,0.85);
	backdrop-filter: blur(12px);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header_GcJv4 .inner_zfMC9 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_GcJv4 .logo {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.main-nav_WGNu2 {
	display: flex;
	gap: 32px;
}

.main-nav_WGNu2 a {
	font-weight: 500;
	color: var(--text);
	opacity: 0.8;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav_WGNu2 a:hover {
	opacity: 1;
	color: var(--accent);
}

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


/*! Buttons */

.action_Pd6hO {
	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-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.action_Pd6hO--primary {
	background: var(--primary);
	border: none;
	box-shadow: 0 0 20px var(--primary-alpha);
	color: #fff;
}

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

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

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

.action_Pd6hO--large {
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 18px;
	padding-left: 40px;
	font-size: 17px;
}

.action_Pd6hO--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 0.875rem;
}




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

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

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

.intro_lMhnM-content {
}

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

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

.intro_lMhnM-subtitle {
	font-size: 20px;
	color: var(--muted);
	margin-bottom: 2rem;
	max-width: 500px;
}

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

.intro_lMhnM-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

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

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

.intro_lMhnM-feature span {
	font-size: 1.188rem;
}

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

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




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

.zone_mcqZ3-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 1rem;
	color: #fff;
}

.zone_mcqZ3-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--muted);
	margin-bottom: 48px;
	max-width: 600px;
	margin-inline: auto;
}




.tile_R6ggm {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 8%);
	border-radius: var(--radius-lg);
	padding: var(--element-spacing);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.tile_R6ggm-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.tile_R6ggm--bonus h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--accent);
}

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

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

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

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

.tile_R6ggm--game:hover img {
	transform: scale(1.1);
}

.tile_R6ggm-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.tile_R6ggm-name {
	font-weight: 600;
	color: #fff;
}

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

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

.tile_R6ggm--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tile_R6ggm--provider span {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	opacity: 0;
	transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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



/* -- ABOUT / ZIGZAG -- */

.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: 32px;
	margin-bottom: 20px;
	color: var(--accent);
}

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

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

.zigzag-image img {
	width: 100%;
	max-width: 400px;
	max-height: 300px;
	object-fit: contain;
}


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

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

.zone_mcqZ3--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.3;
}

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

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

.zone_mcqZ3--cta .action_Pd6hO {
	position: relative;
	background: #FFFFFF;
	color: var(--primary);
}

.zone_mcqZ3--cta .action_Pd6hO:hover {
	background: var(--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(--radius-lg);
	overflow: hidden;
}

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

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

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

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

.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: 4px 12px;
	background: var(--primary-alpha);
	border-radius: var(--radius-full);
	font-size: 13px;
	color: var(--accent);
}



/* SEO Text */

.seo-text {
	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(--radius-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

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



/*
 * FAQ
 */

.faq-list {
	max-width: 800px;
	margin-inline: auto;
}

.faq-item {
	border: solid rgb(255 255 255 / 8%) 1px;
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	overflow: hidden;
	background: rgb(255 255 255 / 2%);
}

.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: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--primary);
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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



/*! 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(--radius-lg);
	overflow: hidden;
}

.info-table tr {
	border: 0 0 1px 0 solid 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(--accent);
	background: rgb(255 255 255 / 2%);
}

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


/* --- Footer --- */

.end-section_H2aI6 {
	background: var(--darker);
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border: 1px 0 0 0 solid rgb(255 255 255 / 5%);
}

.end-section_H2aI6-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 3.75rem;
}

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

.end-section_H2aI6-col p {
	color: var(--muted);
	line-height: 1.8;
}

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

.end-section_H2aI6-nav a {
	color: var(--muted);
}

.end-section_H2aI6-nav a:hover {
	color: var(--accent);
}

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

.trust-badges img {
	height: 50px;
	filter: grayscale(100%) brightness(2);
	opacity: 0.7;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.responsible-logos a {
	display: block;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.responsible-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	opacity: 0.5;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.end-section_H2aI6-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-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6;
}


/*
 * 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: 3px;
	background: var(--accent);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	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) {
	.intro_lMhnM .inner_zfMC9 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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



/* Responsive - Mobile */

@media (max-width: 768px) {
	.header_GcJv4 {
		padding: 0;
	}

	.header_GcJv4 .inner_zfMC9 {
		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(--accent);
		text-transform: uppercase;
		text-decoration: none;
		white-space: nowrap;
	}

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

	.header_GcJv4-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.main-nav_WGNu2 {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 400px;
		height: 100vh;
		background: var(--darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--primary);
		z-index: 1001;
		gap: 0;
	}

	.main-nav_WGNu2.active {
		right: 0;
	}

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

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

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

@media (max-width: 480px) {
	.inner_zfMC9 { padding: 0 16px; }
	.zone_mcqZ3 { padding: 60px 0; }
	.intro_lMhnM-ctas { flex-direction: column; }
	.intro_lMhnM-ctas .action_Pd6hO { width: 100%; }

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