/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Deep Violet
 * Typography: Clean Geometric
 * Generated: 2026-08-15T12:18:36.510Z
 */

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

:root {
	--c-primary-alpha: #8b5cf640;
	--c-secondary: #a78bfa;
	--c-secondary-alpha: #a78bfa40;
	--c-dark: #1e1033;
	--c-light: #f5f3ff;
	--c-accent: #c4b5fd;
	--c-muted: #c4b5fd;
	--c-primary: #8b5cf6;
	--c-darker: #0f0819;
	--c-text: #ede9fe;

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

	--spacing-section: 50px;
	--spacing-element: 20px;
	--spacing-gap: 20px;
	--rounded-full: 50px;
	--rounded-lg: 28px;
	--rounded-sm: 12px;
	--rounded-md: 20px;
	--shadow-glow: 0 0 30px;
	--shadow-card: 0 4px 20px rgba(0,0,0,0.25);
	--shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
}


/** Base **/

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

.bypass-block {
	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: rgb(255,255,255);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rounded-md);
	z-index: 10000;
	transition: top 350ms ease-out;
}

.bypass-block: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;
	}
}


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

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

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


html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-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-family-heading);
	font-weight: 700;
	line-height: 1.2em;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 350ms ease-out;
}

/*! Container */

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

/* --- Header --- */

.site-header_cclst {
	position: fixed;
	top: 0;
	left: 0px;
	right: 0px;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0;
	background: rgba(0,0,0,0.85);
	backdrop-filter: blur(12px);
	transition: all 350ms ease-out;
}

.site-header_cclst.scrolled {
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
	box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.site-header_cclst .box_LQtpm {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header_cclst .logo {
	font-family: var(--font-family-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-accent);
	text-transform: none;
	letter-spacing: 1px;
}

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

.navigation_lCYpw a {
	font-weight: 500;
	color: var(--c-text);
	opacity: 0.8;
	transition: all 350ms ease-out;
}

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

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


/* BUTTONS */

.button_85mFB {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--font-family-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rounded-md);
	cursor: pointer;
	transition: all 350ms ease-out;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.button_85mFB--primary {
	background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-secondary) 100%);
	border: none;
	color: #FFF;
}

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

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

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

.button_85mFB--large {
	padding: 18px 40px;
	font-size: 1.063rem;
}

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


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

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

.showcase_Rs6Ga::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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;
}

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

.showcase_Rs6Ga-content {
	order: 2;
}

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

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

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

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

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

.showcase_Rs6Ga-features {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.showcase_Rs6Ga-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--c-muted);
}

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

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

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


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

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

.segment_hg4Xp-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--c-muted);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/*
 * Cards
 */

.tile_jS8jJ {
	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 350ms ease-out;
}

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

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

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

.tile_jS8jJ-icon {
	font-size: 56px;
	margin-bottom: 1.25rem;
}

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

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

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

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

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

.tile_jS8jJ--game:hover img {
	transform: scale(1.08);
}

.tile_jS8jJ-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 350ms ease-out;
}

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

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

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

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

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

.tile_jS8jJ--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: saturate(0) brightness(1.8);
	transition: all 350ms ease-out;
}

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

.tile_jS8jJ--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0px;
	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 350ms ease-out;
}

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

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

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

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

.reviewer-avatar {
	width: 46px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(150deg, var(--c-primary), var(--c-secondary));
	display: flex;
	place-content: center;
	place-items: center;
	font-weight: 700;
	color: #FFF;
}

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

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

.tile_jS8jJ--review p {
	color: var(--c-muted);
	font-style: italic;
	line-height: 170%;
}


/* --- About / Content Layout --- */

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

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

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

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

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

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

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

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

/* CTA Blocks */

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

.segment_hg4Xp--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.25;
}

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

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

.segment_hg4Xp--cta .button_85mFB {
	position: relative;
	background: #FFFFFF;
	color: var(--c-primary);
}

.segment_hg4Xp--cta .button_85mFB:hover {
	background: var(--c-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: rgba(255, 255, 255, 0.02);
	border-radius: var(--rounded-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(--c-accent);
	text-transform: capitalize;
	font-size: 0.813rem;
	letter-spacing: 0.05em;
}

.payments-table tbody tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
	transition: background 350ms ease-out;
}

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

/* ===== SEO Text ===== */

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

.section-content h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--c-accent);
}

.section-content p {
	color: var(--c-muted);
	margin-bottom: 16px;
	line-height: 180%;
}

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

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: rgb(255, 255, 255);
}

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

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

/*! FAQ */

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

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--rounded-md);
	margin-bottom: 0.75rem;
	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 350ms ease-out;
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--c-primary);
	transition: transform 350ms ease-out;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 350ms ease-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-left: auto;
	margin-right: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rounded-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: 20px 24px;
	text-align: left;
}

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--c-accent);
	background: rgb(255 255 255 / 2%);
}

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


/* -- FOOTER -- */

.end-section_byAyR {
	background: var(--c-darker);
	padding: 80px 0px 0px;
	border: solid 1px 0 0 0 rgb(255 255 255 / 5%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.responsible-logos a {
	display: block;
	transition: all 350ms ease-out;
}

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

.responsible-logos img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 350ms ease-out;
}

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

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

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

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

.footer-update {
	margin-top: 1rem;
	opacity: 0.6;
}

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

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


/* ==================== HAMBURGER & MOBILE ==================== */

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

.menu-toggle span {
	width: 24px;
	height: 3px;
	background: var(--c-accent);
	transition: all 350ms ease-out;
	border-radius: 2px;
}

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

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

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

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

/* ===== Responsive - Tablet ===== */

@media (max-width: 64rem) {
	.showcase_Rs6Ga .box_LQtpm {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

/* -- RESPONSIVE - MOBILE -- */

@media (max-width: 47.9375em) {
	.site-header_cclst {
		padding: 0;
	}

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

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--font-family-heading);
		font-size: 1.063rem;
		font-weight: 700;
		color: var(--c-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(--c-primary), var(--c-secondary));
		color: rgb(255, 255, 255);
		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(--c-primary-alpha);
	}

	.site-header_cclst-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.navigation_lCYpw {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 85%;
		max-width: 420px;
		height: 100vh;
		background: var(--c-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 350ms ease-out;
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--c-primary);
		z-index: 1001;
		gap: 0;
	}

	.navigation_lCYpw.active {
		right: 0;
	}

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

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

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

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

@media (max-width: 29.9375rem) {
	.box_LQtpm { padding: 0px 16px; }
	.segment_hg4Xp { padding: 60px 0; }
	.showcase_Rs6Ga-ctas { flex-direction: column; }
	.showcase_Rs6Ga-ctas .button_85mFB { width: 100%; }

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