/*
 * Theme: Emerald Fortune
 * Typography: Bold Impact
 */

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

:root {
	/* Colors */
	--theme-dark: #052e1f;
	--theme-text: #d1fae5;
	--theme-accent: #34d399;
	--theme-darker: #021a11;
	--theme-secondary-alpha: #10b98140;
	--theme-secondary: #10b981;
	--theme-muted: #6ee7b7;
	--theme-primary: #059669;
	--theme-primary-alpha: #05966940;
	--theme-light: #ecfdf5;

	/* Typography */
	--ff-body: 'Nunito', sans-serif;
	--ff-heading: 'Oswald', sans-serif;

	/* Spacing */
	--sp-section: 50px;
	--sp-element: 20px;
	--sp-gap: 20px;

	/* Border Radius */
	--r-lg: 8px;
	--r-sm: 4px;
	--r-full: 4px;
	--r-md: 6px;

	/* Shadows */
	--shadow-lg: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
	--shadow-glow: 0 0 40px;
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
}


/*! Base */

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


.bypass-block {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-block: 12px;
	padding-inline: 24px;
	background: var(--theme-primary);
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 0.35s ease-out;
}

.bypass-block: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 go-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-up {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		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(--ff-body);
	background: var(--theme-darker);
	color: var(--theme-text);
	line-height: 160%;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-heading);
	font-weight: 700;
	line-height: 1.2;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.35s ease-out;
}



.inner_LpZPQ {
	max-width: 80rem;
	margin: 0px auto;
	padding-block: 0;
	padding-inline: 24px;
}



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

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

.top-bar_X22c5.scrolled {
	background: rgb(0 0 0 / 90%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding-block: 12px;
	padding-inline: 0px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.top-bar_X22c5 .logo {
	font-family: var(--ff-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: none;
	letter-spacing: 0.05em;
}

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

.menu_MYKFi a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all 0.35s ease-out;
}

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

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


/* Buttons */

.action_HSooB {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--ff-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: all 0.35s ease-out;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.action_HSooB--primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

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

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

.action_HSooB--large {
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 18px;
	padding-left: 40px;
	font-size: 1.063rem;
}

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



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

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

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

.intro_3YTVI-content {
	order: 2;
}

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

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

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

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

.intro_3YTVI-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

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

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

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

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



/* --- Sections --- */

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

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

.section_35qCT-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--theme-muted);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}




.panel_UNjbH {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: rgba(255,255,255,0.08) solid 1px;
	border-radius: var(--r-lg);
	padding: var(--sp-element);
	transition: all 0.35s ease-out;
}

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

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

.panel_UNjbH--bonus {
	text-align: center;
	padding-block: 40px;
	padding-inline: 30px;
}

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

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

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

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

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

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

.panel_UNjbH--game:hover img {
	transform: scale(1.07);
}

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

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

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

.panel_UNjbH-name {
	font-weight: 600;
	color: #ffffff;
}

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

.panel_UNjbH--provider {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 5/2;
	position: relative;
}

.panel_UNjbH--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s ease-out;
}

.panel_UNjbH--provider:hover img {
	filter: none;
	transform: scale(1.08);
}

.panel_UNjbH--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 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.35s ease-out;
}

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

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

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

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

.reviewer-avatar {
	width: 50px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(145deg, 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: #fff;
}

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

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



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

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

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

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

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

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

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

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



/*! CTA Blocks */

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

.section_35qCT--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.35;
}

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

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

.section_35qCT--cta .action_HSooB {
	position: relative;
	background: #ffffff;
	color: var(--theme-primary);
}

.section_35qCT--cta .action_HSooB: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: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.payments-table th,
.payments-table td {
	padding-block: 20px;
	padding-inline: 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: 0.813rem;
	letter-spacing: 0.8px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 0.35s 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-block: 4px;
	padding-inline: 12px;
	background: var(--theme-primary-alpha);
	border-radius: var(--r-full);
	font-size: 13px;
	color: var(--theme-accent);
}



.section-content {
	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(--r-lg);
	border: solid 1px rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

.seo-content p {
	color: var(--theme-muted);
	margin-bottom: 1.25rem;
	line-height: 1.9;
}



.faq-list {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: var(--r-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: #fff;
	text-align: left;
	transition: color 0.35s ease-out;
}

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

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

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s 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(--theme-muted);
	line-height: 1.8;
}



/* ==================== INFO TABLE ==================== */

.info-table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--r-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(--theme-accent);
	background: rgb(255 255 255 / 2%);
}

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


/* ===== Footer ===== */

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

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

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

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

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

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

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

.badge-strip {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.badge-strip img {
	height: 50px;
	opacity: 0.4;
	transition: all 0.35s ease-out;
}

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

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

.responsible-gaming h4 {
	font-size: 1rem;
	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 0.35s ease-out;
}

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

.responsible-logos img {
	height: 40px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s ease-out;
}

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

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

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

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

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

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

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


/* -- HAMBURGER & MOBILE -- */

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

.toggle-btn span {
	width: 28px;
	height: 3px;
	background: var(--theme-accent);
	transition: all 0.35s ease-out;
	border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

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

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

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

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

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

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

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

	.badge-strip { justify-content: center; }
}



/*! Responsive - Mobile */

@media (max-width: 47.9375rem) {
	.top-bar_X22c5 {
		padding: 0;
	}

	.top-bar_X22c5 .inner_LpZPQ {
		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(--ff-heading);
		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(125deg, var(--theme-primary), var(--theme-secondary));
		color: rgb(255,255,255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--r-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

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

	.toggle-btn {
		display: flex;
	}

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

	.menu_MYKFi.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 29.9375em) {
	.inner_LpZPQ { padding: 0px 16px; }
	.section_35qCT { padding: 60px 0px; }
	.intro_3YTVI-ctas { flex-direction: column; }
	.intro_3YTVI-ctas .action_HSooB { width: 100%; }

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