/* Casino Landing Page Styles - Electric Pink + Modern Sharp */

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

:root {
	--theme-primary: #ec4899;
	--theme-text: #fce7f3;
	--theme-muted: #f9a8d4;
	--theme-primary-alpha: #ec489940;
	--theme-dark: #1a0a14;
	--theme-accent: #f9a8d4;
	--theme-secondary: #f472b6;
	--theme-darker: #0d0509;
	--theme-secondary-alpha: #f472b640;
	--theme-light: #fdf2f8;

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

	--spacing-gap: 20px;
	--spacing-section: 50px;
	--spacing-element: 20px;
	--border-radius-md: 16px;
	--border-radius-sm: 4px;
	--border-radius-lg: 24px;
	--border-radius-full: 100px;
	--sh-card: 0 4px 20px rgba(0,0,0,0.25);
	--sh-glow: 0 0 30px;
	--sh-elevated: 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 300ms 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;
	}
}


@keyframes run-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

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



html {
	scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font);
	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);
}



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

/* -- HEADER -- */

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

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

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

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

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

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

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

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

/* ===== Buttons ===== */

.link-btn_dA0uz {
	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 300ms cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.link-btn_dA0uz--primary {
	background: var(--theme-primary);
	border: none;
	box-shadow: 0 0 20px var(--theme-primary-alpha);
	color: rgb(255, 255, 255);
}

.link-btn_dA0uz--primary:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-elevated);
}

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

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

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

.link-btn_dA0uz--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 0.875rem;
}


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

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

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

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

.showcase_lWOx0-content {
}

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

.showcase_lWOx0-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_lWOx0-subtitle {
	font-size: 1.25rem;
	color: var(--theme-muted);
	margin-bottom: 32px;
	max-width: 500px;
}

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

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

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

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

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

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

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


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

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

.segment_f1Kyo-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--theme-muted);
	margin-bottom: 48px;
	max-width: 640px;
	margin-inline: auto;
}

/** Cards **/

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

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

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

.tile_ySYFn--bonus {
	text-align: center;
	padding-top: 40px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-left: 30px;
}

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

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

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

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

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

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

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

.tile_ySYFn-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

.reviewer-avatar {
	width: 54px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(45deg, var(--theme-primary), var(--theme-secondary));
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: #FFF;
}

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

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

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


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

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

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

.split-row--flipped {
	direction: rtl;
}

.split-row--flipped > * {
	direction: ltr;
}

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

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

.split-media {
	display: flex;
	justify-content: center;
	align-items: center;
}

.split-media img {
	width: 100%;
	max-width: 420px;
	max-height: 280px;
	object-fit: contain;
}

/* --- CTA Blocks --- */

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

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

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

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

.segment_f1Kyo--cta .link-btn_dA0uz {
	position: relative;
	background: rgb(255,255,255);
	color: var(--theme-primary);
}

.segment_f1Kyo--cta .link-btn_dA0uz:hover {
	background: var(--theme-dark);
	color: #fff;
}


/* 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(--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: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
	border: solid 0 0 1px 0 rgba(255,255,255,0.05);
	transition: background 300ms 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: 13px;
	color: var(--theme-accent);
}

/* SEO Text */

.text-content {
	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(--border-radius-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 1.5rem;
	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: 190%;
}

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

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

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--border-radius-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: 1.063rem;
	font-weight: 600;
	color: rgb(255,255,255);
	text-align: left;
	transition: color 300ms 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 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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-top: 0;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	color: var(--theme-muted);
	line-height: 180%;
}

/* --- Info Table --- */

.info-table {
	width: 100%;
	max-width: 800px;
	margin: 0 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: 20px 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 --- */

.bottom-bar_SyCPr {
	background: var(--theme-darker);
	padding: 80px 0px 0px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

.cert-logos {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cert-logos img {
	height: 50px;
	opacity: 0.4;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-logos img:hover {
	filter: none;
	opacity: 1;
}

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

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

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

.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: scale(1.05);
}

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

.responsible-logos a:hover img {
	filter: none;
	opacity: 1;
}

.bottom-bar_SyCPr-bottom {
	padding-top: 24px;
	padding-right: 0;
	padding-bottom: 24px;
	padding-left: 0;
	text-align: center;
}

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

.bottom-bar_SyCPr-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.6em;
}


.mobile-nav-btn {
	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;
}

.mobile-nav-btn span {
	width: 30px;
	height: 2px;
	background: var(--theme-accent);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

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

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

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

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


@media (max-width: 63.9375em) {
	.showcase_lWOx0 .inner_T8V2V {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.split-row { grid-template-columns: 1fr; }
	.split-row--flipped { direction: ltr; }

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

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

	.cert-logos { justify-content: center; }
}

/* Responsive - Mobile */

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

	.site-header_ovPD9 .inner_T8V2V {
		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(--heading-font);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-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(180deg, var(--theme-primary), var(--theme-secondary));
		color: #FFFFFF;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.03em;
		border-radius: var(--border-radius-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

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

	.mobile-nav-btn {
		display: flex;
	}

	.menu_n6PIE {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 80%;
		max-width: 380px;
		height: 100vh;
		background: var(--theme-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 300ms 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;
	}

	.menu_n6PIE.active {
		right: 0;
	}

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

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

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

@media (max-width: 479px) {
	.inner_T8V2V { padding: 0px 16px; }
	.segment_f1Kyo { padding: 60px 0; }
	.showcase_lWOx0-ctas { flex-direction: column; }
	.showcase_lWOx0-ctas .link-btn_dA0uz { width: 100%; }

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