/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Royal Purple & Gold
 * Typography: Futuristic
 * Generated: 2026-08-28T19:38:49.988Z
 */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap");

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

	--typo-body: 'Titillium Web', sans-serif;
	--typo-heading: 'Orbitron', sans-serif;

	--element-space: 20px;
	--section-space: 50px;
	--item-gap: 20px;
	--rad-full: 4px;
	--rad-sm: 4px;
	--rad-md: 6px;
	--rad-lg: 8px;
	--elevated-shadow: 0 4px 16px rgba(0,0,0,0.2);
	--card-shadow: 0 2px 8px rgba(0,0,0,0.15);
	--glow-shadow: 0 0 20px;
}

/*
 * Base
 */

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

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

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

/* ANIMATIONS */

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

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

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



html {
	scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--typo-heading);
	font-weight: 600;
	line-height: 120%;
}

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

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


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

/** Header **/

.nav-wrap_JThhO {
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0px;
	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-in-out;
}

.nav-wrap_JThhO.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 rgb(0 0 0 / 30%);
}

.nav-wrap_JThhO .wrapper_2MVwW {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

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

/* ==================== BUTTONS ==================== */

.action_Kihuk {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--typo-body);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: var(--rad-md);
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.action_Kihuk--primary {
	background: var(--primary);
	border: none;
	color: #FFFFFF;
}

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

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

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

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

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


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

.intro_OXf9x::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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_OXf9x .wrapper_2MVwW {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.intro_OXf9x-content {
}

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

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

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

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

.intro_OXf9x-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

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

.intro_OXf9x-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted);
}

.intro_OXf9x-feature span {
	font-size: 19px;
}

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

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

/*
 * Sections
 */

.segment_d61ZP {
	padding: var(--section-space) 0;
}

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

.segment_d61ZP-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--muted);
	margin-bottom: 48px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* --- Cards --- */

.item_dXkk9 {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
	border-radius: var(--rad-lg);
	padding: var(--element-space);
	transition: all 0.35s ease-in-out;
}

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

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

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

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

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

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

.grid_8KgUp--games {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--item-gap);
}

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

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

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

.item_dXkk9-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-in-out;
}

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

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

.item_dXkk9-name {
	font-weight: 600;
	color: #FFFFFF;
}

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

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

.item_dXkk9--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	opacity: 0.4;
	transition: all 0.35s ease-in-out;
}

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

.item_dXkk9--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, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity 0.35s ease-in-out;
}

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

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

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

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

.reviewer-avatar {
	width: 50px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(to bottom, var(--primary), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #FFF;
}

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

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

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

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

.feature-text p {
	color: var(--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: 420px;
	max-height: 300px;
	object-fit: contain;
}

/* CTA BLOCKS */

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

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

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

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

.segment_d61ZP--cta .action_Kihuk {
	position: relative;
	background: #fff;
	color: var(--primary);
}

.segment_d61ZP--cta .action_Kihuk:hover {
	background: var(--dark);
	color: #FFF;
}

/** Payments Table **/

.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 2.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* --- FAQ --- */

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

.faq-item {
	border: 1px rgba(255, 255, 255, 0.08) solid;
	border-radius: var(--rad-md);
	margin-bottom: 0.75rem;
	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: #ffffff;
	text-align: left;
	transition: color 0.35s ease-in-out;
}

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

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

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

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

/* Info Table */

.info-table {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rad-lg);
	overflow: hidden;
}

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table th,
.info-table td {
	padding-top: 20px;
	padding-right: 24px;
	padding-bottom: 20px;
	padding-left: 24px;
	text-align: left;
}

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--accent);
	background: rgba(255,255,255,0.02);
}

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

/** Footer **/

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

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

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

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

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

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

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

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

.cert-logos img {
	height: 50px;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all 0.35s ease-in-out;
}

.cert-logos img:hover {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

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

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

.gaming-care {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.gaming-care a {
	display: block;
	transition: all 0.35s ease-in-out;
}

.gaming-care a:hover {
	transform: translateY(-3px) scale(1.02);
}

.gaming-care img {
	height: 40px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 0.35s ease-in-out;
}

.gaming-care a:hover img {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

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

.end-section_m8TUr-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.6em;
}

/*
 * Hamburger & Mobile
 */

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

.hamburger span {
	width: 30px;
	height: 3px;
	background: var(--accent);
	transition: all 0.35s ease-in-out;
	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: 63.9375em) {
	.intro_OXf9x .wrapper_2MVwW {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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


@media (max-width: 48rem) {
	.nav-wrap_JThhO {
		padding: 0;
	}

	.nav-wrap_JThhO .wrapper_2MVwW {
		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(--typo-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(90deg, var(--primary), var(--secondary));
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--rad-md);
		box-shadow: 0 4px 15px var(--primary-alpha);
	}

	.nav-wrap_JThhO-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.menu_funia {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 75%;
		max-width: 380px;
		height: 100vh;
		background: var(--darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.35s ease-in-out;
		box-shadow: -8px 0 32px rgba(0,0,0,0.7);
		border-left: 2px solid var(--primary);
		z-index: 1001;
		gap: 0px;
	}

	.menu_funia.active {
		right: 0px;
	}

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

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

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

@media (max-width: 30rem) {
	.wrapper_2MVwW { padding: 0 16px; }
	.segment_d61ZP { padding: 60px 0; }
	.intro_OXf9x-ctas { flex-direction: column; }
	.intro_OXf9x-ctas .action_Kihuk { width: 100%; }

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