/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Deep Violet
 * Typography: Sporty Bold
 * Generated: 2026-08-25T19:40:51.766Z
 */

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

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

	/* Typography */
	--font-body: 'Lato', sans-serif;
	--font-heading: 'Russo One', sans-serif;

	/* Spacing */
	--sp-section: 40px;
	--sp-gap: 12px;
	--sp-element: 16px;

	/* Border Radius */
	--border-radius-md: 20px;
	--border-radius-full: 50px;
	--border-radius-lg: 28px;
	--border-radius-sm: 12px;

	/* Shadows */
	--sh-elevated: 0 15px 50px rgba(0,0,0,0.5);
	--sh-card: 0 8px 40px rgba(0,0,0,0.4);
	--sh-glow: 0 0 50px;
}

/* --- Base --- */

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

.jump-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--theme-primary);
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-md);
	z-index: 10000;
	transition: top .25s ease-in;
}

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


/* ===== Animations ===== */

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

@keyframes slideUp-anim {
	0% { opacity: 0; transform: translateY(1.5rem); }
	100% { opacity: 1; transform: translateY(0); }
}

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



html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--theme-darker);
	color: var(--theme-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 .25s ease-in;
}


/* -- CONTAINER -- */

.inner_yVpII {
	max-width: 1280px;
	margin: 0px auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}

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

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

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

.top-bar_WUMIo .inner_yVpII {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-bar_WUMIo .logo {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

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

.main-nav_UEIpg a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all .25s ease-in;
}

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

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

/* --- Buttons --- */

.button_wKYvQ {
	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(--border-radius-md);
	cursor: pointer;
	transition: all .25s ease-in;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

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

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

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

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

.button_wKYvQ--small {
	padding: 8px 20px;
	font-size: 14px;
}

/* HERO */

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

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

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

.hero_VMuJj-content {
	order: 2;
}

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

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

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

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

.hero_VMuJj-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

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

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

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

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


/* ===== Sections ===== */

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

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

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

/*! Cards */

.panel_rbgpy {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--border-radius-lg);
	padding: var(--sp-element);
	transition: all .25s ease-in;
}

.panel_rbgpy:hover {
	transform: scale(1.03);
	box-shadow: var(--sh-elevated);
	border-color: var(--theme-primary);
}

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

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

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

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

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

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

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

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

.panel_rbgpy--game:hover img {
	transform: scale(1.03) rotate(1deg);
}

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

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

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

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

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

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

.panel_rbgpy--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all .25s ease-in;
}

.panel_rbgpy--provider:hover img {
	filter: brightness(1) contrast(1);
	transform: scale(1.03) rotate(1deg);
}

.panel_rbgpy--provider span {
	position: absolute;
	bottom: 0;
	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 .25s ease-in;
}

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

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

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

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

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

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

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

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

/* ===== About / Content Layout ===== */

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

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

.pair-row--reversed {
	direction: rtl;
}

.pair-row--reversed > * {
	direction: ltr;
}

.pair-content h3 {
	font-size: 32px;
	margin-bottom: 1.25rem;
	color: var(--theme-accent);
}

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

.pair-image {
	display: flex;
	place-content: center;
	place-items: center;
}

.pair-image img {
	width: 100%;
	max-width: 380px;
	max-height: 320px;
	object-fit: contain;
}



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

.area_CR8TP--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.15;
}

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

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

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

.area_CR8TP--cta .button_wKYvQ:hover {
	background: var(--theme-dark);
	color: rgb(255, 255, 255);
}


.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--border-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(--theme-accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.3px;
}

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

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

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

.section-text {
	margin-top: 3rem;
	padding: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--border-radius-lg);
	border: solid 1px rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

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


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

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

.faq-question {
	width: 100%;
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 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: #FFF;
	text-align: left;
	transition: color .25s ease-in;
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--theme-primary);
	transition: transform .25s ease-in;
}

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

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

.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.8em;
}


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

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

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

.end-section_hSxvW {
	background: var(--theme-darker);
	padding: 80px 0px 0;
	border: rgba(255,255,255,0.05) 1px 0 0 0 solid;
}

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

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

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

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

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

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

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

.security-badges img {
	height: 50px;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all .25s ease-in;
}

.security-badges img:hover {
	filter: brightness(1) contrast(1);
	opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

.footer-update {
	margin-top: 1rem;
	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 */

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

.menu-toggle span {
	width: 26px;
	height: 3px;
	background: var(--theme-accent);
	transition: all .25s ease-in;
	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: 63.9375em) {
	.hero_VMuJj .inner_yVpII {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.pair-row { grid-template-columns: 1fr; }
	.pair-row--reversed { direction: ltr; }

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

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

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


/** Responsive - Mobile **/

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

	.top-bar_WUMIo .inner_yVpII {
		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-heading);
		font-size: 1.063rem;
		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(150deg, var(--theme-primary), var(--theme-secondary));
		color: #FFF;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.3px;
		border-radius: var(--border-radius-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.top-bar_WUMIo-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav_UEIpg {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 420px;
		height: 100vh;
		background: var(--theme-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right .25s ease-in;
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--theme-primary);
		z-index: 1001;
		gap: 0px;
	}

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

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

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

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

@media (max-width: 29.9375em) {
	.inner_yVpII { padding: 0 16px; }
	.area_CR8TP { padding: 60px 0; }
	.hero_VMuJj-ctas { flex-direction: column; }
	.hero_VMuJj-ctas .button_wKYvQ { width: 100%; }

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