/* Auto-generated stylesheet | Crimson & Black | Futuristic */

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

:root {
	--color-light: #fef2f2;
	--color-muted: #f87171;
	--color-text: #fecaca;
	--color-secondary: #f97316;
	--color-accent: #fb923c;
	--color-primary-alpha: #dc262640;
	--color-dark: #1a0a0a;
	--color-primary: #dc2626;
	--color-darker: #0d0505;
	--color-secondary-alpha: #f9731640;

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

	--sp-element: 30px;
	--sp-section: 70px;
	--sp-gap: 25px;
	--rad-md: 6px;
	--rad-full: 4px;
	--rad-lg: 8px;
	--rad-sm: 4px;
	--shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-glow: 0 0 30px;
	--shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
}



/* ===== Base ===== */

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



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

.skip-nav:focus {
	top: 10px;
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--color-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 run-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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


html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all .25s ease;
}



/*
 * Container
 */

.box_AG3aF {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}


/*! Header */

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

.nav-wrap_iAt25.scrolled {
	background: rgb(0 0 0 / 90%);
	backdrop-filter: blur(20px);
	padding: 12px 0;
	box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

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

.nav-wrap_iAt25 .logo {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-links_yAWhe {
	display: flex;
	gap: 32px;
}

.nav-links_yAWhe a {
	font-weight: 500;
	color: var(--color-text);
	opacity: 0.8;
	transition: all .25s ease;
}

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

.nav-wrap_iAt25-actions {
	display: flex;
	gap: 0.75rem;
}


/*! Buttons */

.link-btn_dcrHu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--body-font);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rad-md);
	cursor: pointer;
	transition: all .25s ease;
	text-transform: none;
	letter-spacing: 0.8px;
}

.link-btn_dcrHu--primary {
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	border: none;
	color: white;
}

.link-btn_dcrHu--primary:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
}

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

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

.link-btn_dcrHu--large {
	padding: 18px 40px;
	font-size: 17px;
}

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


/* ==================== HERO ==================== */

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

.splash_98eiu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, var(--color-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--color-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

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

.splash_98eiu-content {
	order: 2;
}

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

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

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

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

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

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

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

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

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

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



/** Sections **/

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

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

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



/*
 * Cards
 */

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

.card_HVeuq:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-primary);
}

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

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

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

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

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

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

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

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

.card_HVeuq--game:hover img {
	transform: scale(1.1);
}

.card_HVeuq-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity .25s ease;
}

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

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

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

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

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

.card_HVeuq--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all .25s ease;
}

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

.card_HVeuq--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	background: linear-gradient(transparent, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity .25s ease;
}

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

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

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

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

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

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

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

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



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

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

.info-row--reverse {
	direction: rtl;
}

.info-row--reverse > * {
	direction: ltr;
}

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

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

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

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



/* CTA BLOCKS */

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

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

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

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

.zone_66buy--cta .link-btn_dcrHu {
	position: relative;
	background: rgb(255,255,255);
	color: var(--color-primary);
}

.zone_66buy--cta .link-btn_dcrHu:hover {
	background: var(--color-dark);
	color: white;
}


/*
 * Payments Table
 */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rad-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: rgba(255,255,255,0.05);
}

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

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

.payments-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--color-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 0.813rem;
	color: var(--color-accent);
}




.seo-block {
	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: 1px solid rgba(255,255,255,0.05);
}

.seo-block h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--color-accent);
}

.seo-block p {
	color: var(--color-muted);
	margin-bottom: 16px;
	line-height: 1.8;
}

.seo-block p:last-child {
	margin-bottom: 0px;
}

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: #fff;
}

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

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



/* -- FAQ -- */

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

.faq-item {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 8%);
	border-radius: var(--rad-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: white;
	text-align: left;
	transition: color .25s ease;
}

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

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

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

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

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 24px 24px;
	color: var(--color-muted);
	line-height: 1.8;
}


/* ===== Info Table ===== */

.info-table {
	width: 100%;
	max-width: 850px;
	margin-inline: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rad-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-top: 20px;
	padding-right: 24px;
	padding-bottom: 20px;
	padding-left: 24px;
	text-align: left;
}

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

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


/* FOOTER */

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

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

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

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

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

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

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

.cert-logos {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

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

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

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

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

.responsible-text {
	font-size: 0.875rem;
	color: var(--color-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;
}

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

.responsible-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	transition: all .25s ease;
}

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

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

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

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

.footer-update {
	margin-top: 16px;
	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: 160%;
}


/* ===== Hamburger & Mobile ===== */

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

.nav-toggle span {
	width: 30px;
	height: 3px;
	background: var(--color-accent);
	transition: all .25s ease;
	border-radius: 2px;
}

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

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

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

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




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

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

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

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

	.info-row { grid-template-columns: 1fr; }
	.info-row--reverse { direction: ltr; }

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

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

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


/*
 * Responsive - Mobile
 */

@media (max-width: 769px) {
	.nav-wrap_iAt25 {
		padding: 0px;
	}

	.nav-wrap_iAt25 .box_AG3aF {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 12px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--heading-font);
		font-size: 17px;
		font-weight: 700;
		color: var(--color-accent);
		text-transform: capitalize;
		text-decoration: none;
		white-space: nowrap;
	}

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
		color: rgb(255,255,255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: capitalize;
		text-decoration: none;
		letter-spacing: 0.3px;
		border-radius: var(--rad-md);
		box-shadow: 0 4px 15px var(--color-primary-alpha);
	}

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

	.nav-toggle {
		display: flex;
	}

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

	.nav-links_yAWhe.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 29.9375rem) {
	.box_AG3aF { padding: 0px 16px; }
	.zone_66buy { padding: 60px 0; }
	.splash_98eiu-ctas { flex-direction: column; }
	.splash_98eiu-ctas .link-btn_dcrHu { width: 100%; }

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