/*
 * Theme: Deep Violet
 * Typography: Industrial
 */

@import 'https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;500;700&display=swap';

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

	/* Typography */
	--body-font: 'Roboto', sans-serif;
	--heading-font: 'Anton', sans-serif;

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

	/* Border Radius */
	--rounded-lg: 24px;
	--rounded-md: 16px;
	--rounded-sm: 4px;
	--rounded-full: 100px;

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


/*! Base */

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



.bypass-block {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--c-primary);
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rounded-md);
	z-index: 10000;
	transition: top 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bypass-block:focus {
	top: 10px;
	outline: 3px solid var(--c-accent);
	outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--c-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 go-slideUp {
	from {
		opacity: 0;
		transform: translateY(1.5rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}



html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--body-font);
	background: var(--c-darker);
	color: var(--c-text);
	line-height: 1.6;
	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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}



/* -- CONTAINER -- */

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




.top-bar_Uojrn {
	position: fixed;
	top: 0;
	left: 0px;
	right: 0;
	z-index: 1000;
	padding: 16px 0px 16px 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(12px);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar_Uojrn.scrolled {
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(20px);
	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_Uojrn .inner_A3BwG {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-bar_Uojrn .logo {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

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

.main-nav_iX9Zp a {
	font-weight: 500;
	color: var(--c-text);
	opacity: 0.8;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.top-bar_Uojrn-actions {
	display: flex;
	gap: 0.75rem;
}



/* Buttons */

.link-btn_Gu8Z4 {
	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: 0.938rem;
	font-weight: 600;
	border-radius: var(--rounded-md);
	cursor: pointer;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.link-btn_Gu8Z4--primary {
	background: transparent;
	border: 2px solid var(--c-primary);
	color: var(--c-primary);
}

.link-btn_Gu8Z4--primary:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
	background: var(--c-primary);
	color: #FFF;
}

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

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

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

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


/*
 * Hero
 */

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

.splash_mEpA8::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, var(--c-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--c-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

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

.splash_mEpA8-content {
	order: 2;
}

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

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

.splash_mEpA8-subtitle {
	font-size: 1.25rem;
	color: var(--c-muted);
	margin-bottom: 32px;
	max-width: 520px;
}

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

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

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

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

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

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

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


/* -- SECTIONS -- */

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

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

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



/* ==================== CARDS ==================== */

.item_tBinb {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 8%);
	border-radius: var(--rounded-lg);
	padding: var(--element-space);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item_tBinb:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--c-primary);
}

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

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

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

.item_tBinb--bonus h3 {
	font-size: 24px;
	margin-bottom: 1rem;
	color: var(--c-accent);
}

.item_tBinb--bonus p {
	color: var(--c-muted);
	margin-bottom: 24px;
	line-height: 170%;
}

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

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

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

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

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

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

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

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

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

.item_tBinb--provider {
	display: flex;
	place-content: center;
	place-items: center;
	padding: 0px;
	overflow: hidden;
	aspect-ratio: 5/2;
	position: relative;
}

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

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

.item_tBinb--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--c-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
	opacity: 0;
	transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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




.feature-grid {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

.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: 1.25rem;
	color: var(--c-accent);
}

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

.feature-visual {
	display: flex;
	place-content: center;
	place-items: center;
}

.feature-visual img {
	width: 100%;
	max-width: 400px;
	max-height: 320px;
	object-fit: contain;
}


/** CTA Blocks **/

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

.section_11LYr--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.25;
}

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

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

.section_11LYr--cta .link-btn_Gu8Z4 {
	position: relative;
	background: #ffffff;
	color: var(--c-primary);
}

.section_11LYr--cta .link-btn_Gu8Z4:hover {
	background: var(--c-dark);
	color: #fff;
}



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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255,255,255,0.02);
	border-radius: var(--rounded-lg);
	overflow: hidden;
}

.payments-table th,
.payments-table td {
	padding: 20px 24px;
	text-align: left;
}

.payments-table thead {
	background: rgba(255,255,255,0.05);
}

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

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 350ms 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(--c-primary-alpha);
	border-radius: var(--rounded-full);
	font-size: 0.813rem;
	color: var(--c-accent);
}



/* SEO TEXT */

.seo-block {
	margin-top: 48px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rounded-lg);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

.seo-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: rgb(255,255,255);
}

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

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



/* FAQ */

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

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

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--c-primary);
	transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 350ms 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(--c-muted);
	line-height: 1.8;
}



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

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

.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(--c-accent);
	background: rgb(255 255 255 / 2%);
}

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



/*! Footer */

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

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

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

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

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

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

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

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

.cert-logos img {
	height: 50px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.responsible-gaming {
	text-align: center;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 40px;
	padding-left: 0px;
	border-width: 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

.safe-play {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.safe-play a {
	display: block;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.safe-play a:hover {
	transform: translateY(-2px);
}

.safe-play img {
	height: 40px;
	filter: grayscale(100%);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.colophon_uMNqP-bottom {
	padding: 24px 0;
	text-align: center;
}

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

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

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

.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: 24px;
	height: 2px;
	background: var(--c-accent);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
	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: 64rem) {
	.splash_mEpA8 .inner_A3BwG {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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



/* RESPONSIVE - MOBILE */

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

	.top-bar_Uojrn .inner_A3BwG {
		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: 1.063rem;
		font-weight: 700;
		color: var(--c-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(to bottom right, var(--c-primary), var(--c-secondary));
		color: #ffffff;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.3px;
		border-radius: var(--rounded-md);
		box-shadow: 0 4px 15px var(--c-primary-alpha);
	}

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

	.toggle-btn {
		display: flex;
	}

	.main-nav_iX9Zp {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 400px;
		height: 100vh;
		background: var(--c-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 350ms cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--c-primary);
		z-index: 1001;
		gap: 0;
	}

	.main-nav_iX9Zp.active {
		right: 0px;
	}

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

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

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

@media (max-width: 30rem) {
	.inner_A3BwG { padding: 0px 16px; }
	.section_11LYr { padding: 60px 0; }
	.splash_mEpA8-ctas { flex-direction: column; }
	.splash_mEpA8-ctas .link-btn_Gu8Z4 { width: 100%; }

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