/*
 * Theme: Ocean Blue & Cyan
 * Typography: Clean Geometric
 */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap");

:root {
	--color-secondary-alpha: #06b6d440;
	--color-muted: #7dd3fc;
	--color-secondary: #06b6d4;
	--color-primary: #0ea5e9;
	--color-primary-alpha: #0ea5e940;
	--color-text: #e0f2fe;
	--color-light: #f0f9ff;
	--color-dark: #0a1929;
	--color-darker: #050d15;
	--color-accent: #22d3ee;

	--body-font: 'Open Sans', sans-serif;
	--heading-font: 'Poppins', sans-serif;

	--pad-section: 70px;
	--pad-element: 30px;
	--grid-gap: 25px;
	--border-radius-full: 4px;
	--border-radius-md: 6px;
	--border-radius-sm: 4px;
	--border-radius-lg: 8px;
	--shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-card: 0 4px 20px rgba(0,0,0,0.25);
	--shadow-glow: 0 0 30px;
}


/* 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(--color-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-md);
	z-index: 10000;
	transition: top 0.3s ease-in;
}

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




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

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

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

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

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


/* ===== Container ===== */

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



/* --- Header --- */

.masthead_SLii2 {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(12px);
	transition: all 0.3s ease-in;
}

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

.masthead_SLii2 .inner_hDD61 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.masthead_SLii2 .logo {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-accent);
	text-transform: capitalize;
	letter-spacing: 1.5px;
}

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

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

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

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



/* ===== Buttons ===== */

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

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

.cta_WZdIa--primary:hover {
	transform: scale(1.03);
	box-shadow: var(--shadow-elevated);
	background: var(--color-primary);
	color: #fff;
}

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

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

.cta_WZdIa--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 1.063rem;
}

.cta_WZdIa--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 0.875rem;
}


/*
 * Hero
 */

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

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

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

.showcase_4u9fi-content {
	order: 2;
}

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

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

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

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

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

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

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

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

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

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



/* -- SECTIONS -- */

.block_q2L6P {
	padding: var(--pad-section) 0px;
}

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

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


/* Cards */

.card_cO0bd {
	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: rgb(255 255 255 / 8%);
	border-radius: var(--border-radius-lg);
	padding: var(--pad-element);
	transition: all 0.3s ease-in;
}

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

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

.card_cO0bd--bonus {
	text-align: center;
	padding: 40px 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card_cO0bd--provider span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	opacity: 0;
	transition: opacity 0.3s ease-in;
}

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

.collection_p1pHp--reviews {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--grid-gap);
}

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

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

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

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

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

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




.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(--color-accent);
}

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

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

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



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

.block_q2L6P--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.35;
}

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

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

.block_q2L6P--cta .cta_WZdIa {
	position: relative;
	background: #FFFFFF;
	color: var(--color-primary);
}

.block_q2L6P--cta .cta_WZdIa:hover {
	background: var(--color-dark);
	color: white;
}


/* ==================== PAYMENTS TABLE ==================== */

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

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

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

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

.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-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	background: var(--color-primary-alpha);
	border-radius: var(--border-radius-full);
	font-size: 13px;
	color: var(--color-accent);
}



/*
 * SEO Text
 */

.section-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(--border-radius-lg);
	border: rgb(255 255 255 / 5%) solid 1px;
}

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

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

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

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

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

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

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

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


/* ===== FAQ ===== */

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

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	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: rgb(255, 255, 255);
	text-align: left;
	transition: color 0.3s ease-in;
}

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

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

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

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

.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-left: auto;
	margin-right: 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-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: 20px 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 */

.colophon_OaPV7 {
	background: var(--color-darker);
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	border: 1px 0 0 0 solid rgb(255 255 255 / 5%);
}

.colophon_OaPV7-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3.75rem;
	margin-bottom: 60px;
}

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

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

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

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

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

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

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

.trust-badges 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: 0;
	border: solid rgba(255,255,255,0.05) 1px 0;
}

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

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

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

.responsible-gaming a {
	display: block;
	transition: all 0.3s ease-in;
}

.responsible-gaming a:hover {
	transform: translateY(-4px);
}

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

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

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

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

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

.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: 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: 28px;
	height: 3px;
	background: var(--color-accent);
	transition: all 0.3s ease-in;
	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) {
	.showcase_4u9fi .inner_hDD61 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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



@media (max-width: 767px) {
	.masthead_SLii2 {
		padding: 0px;
	}

	.masthead_SLii2 .inner_hDD61 {
		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: uppercase;
		text-decoration: none;
		white-space: nowrap;
	}

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
		color: #FFF;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.03em;
		border-radius: var(--border-radius-md);
		box-shadow: 0 4px 15px var(--color-primary-alpha);
	}

	.masthead_SLii2-actions {
		display: none;
	}

	.toggle-btn {
		display: flex;
	}

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

	.nav_NTSHm.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 481px) {
	.inner_hDD61 { padding: 0px 16px; }
	.block_q2L6P { padding: 60px 0; }
	.showcase_4u9fi-ctas { flex-direction: column; }
	.showcase_4u9fi-ctas .cta_WZdIa { width: 100%; }

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