/* Casino Landing Page Styles - Rose Gold + Tech Future */

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

:root {
	--theme-muted: #fecdd3;
	--theme-primary: #e11d48;
	--theme-dark: #1c0a10;
	--theme-darker: #0e0508;
	--theme-text: #ffe4e6;
	--theme-secondary: #fb7185;
	--theme-accent: #fda4af;
	--theme-secondary-alpha: #fb718540;
	--theme-light: #fff1f2;
	--theme-primary-alpha: #e11d4840;

	--font-heading: 'Rajdhani', sans-serif;
	--font-body: 'Exo 2', sans-serif;

	--pad-element: 20px;
	--grid-gap: 20px;
	--pad-section: 50px;
	--border-radius-md: 16px;
	--border-radius-full: 100px;
	--border-radius-sm: 4px;
	--border-radius-lg: 24px;
	--sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--sh-card: 0 4px 20px rgba(0,0,0,0.25);
	--sh-glow: 0 0 30px;
}

/* --- Base --- */

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

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

.skip-nav: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 fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

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

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



html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 250ms ease;
}

/*! Container */

.inner_P8E2c {
	max-width: 1280px;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}

/** Header **/

.masthead_meC7w {
	position: fixed;
	top: 0px;
	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);
	backdrop-filter: blur(12px);
	transition: all 250ms ease;
}

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

.masthead_meC7w .inner_P8E2c {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.nav_yOFzD {
	display: flex;
	gap: 2rem;
}

.nav_yOFzD a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all 250ms ease;
}

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

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

/*! Buttons */

.cta_Agvvr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	transition: all 250ms ease;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

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

.cta_Agvvr--primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--sh-elevated);
}

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

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

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

.cta_Agvvr--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 14px;
}

/** Hero **/

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

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

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

.banner_WLVkt-content {
}

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

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

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

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

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

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

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

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

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

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

/* ===== Sections ===== */

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

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

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


.tile_5E9r8 {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--border-radius-lg);
	padding: var(--pad-element);
	transition: all 250ms ease;
}

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

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

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

.tile_5E9r8-icon {
	font-size: 3.5rem;
	margin-bottom: 1.25rem;
}

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

.tile_5E9r8--bonus p {
	color: var(--theme-muted);
	margin-bottom: 1.5rem;
	line-height: 170%;
}

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

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

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

.tile_5E9r8--game:hover img {
	transform: scale(1.03) rotate(1deg);
}

.tile_5E9r8-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 250ms ease;
}

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

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

.tile_5E9r8-name {
	font-weight: 600;
	color: rgb(255,255,255);
}

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

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

.tile_5E9r8--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 250ms ease;
}

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

.tile_5E9r8--provider span {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--theme-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	opacity: 0;
	transition: opacity 250ms ease;
}

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

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

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

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

.reviewer-avatar {
	width: 52px;
	height: 52px;
	border-radius: 40%;
	background: linear-gradient(to right, var(--theme-primary), var(--theme-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(--theme-accent);
	font-size: 14px;
}

.tile_5E9r8--review p {
	color: var(--theme-muted);
	font-style: italic;
	line-height: 170%;
}


.content-pairs {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

.pair-row--reversed {
	direction: rtl;
}

.pair-row--reversed > * {
	direction: ltr;
}

.pair-content h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--theme-accent);
}

.pair-content p {
	color: var(--theme-muted);
	margin-bottom: 1rem;
	line-height: 1.8;
}

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

.pair-image img {
	width: 100%;
	max-width: 400px;
	max-height: 300px;
	object-fit: contain;
}

/*
 * CTA Blocks
 */

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

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

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

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

.block_5dHgn--cta .cta_Agvvr {
	position: relative;
	background: #FFF;
	color: var(--theme-primary);
}

.block_5dHgn--cta .cta_Agvvr:hover {
	background: var(--theme-dark);
	color: #FFF;
}

/* -- PAYMENTS TABLE -- */

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

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

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

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

.payments-table tbody tr:hover {
	background: rgb(255 255 255 / 3%);
}

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

.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(--border-radius-full);
	font-size: 0.813rem;
	color: var(--theme-accent);
}

/* SEO TEXT */

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

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

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

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

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

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

/** FAQ **/

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

.faq-item {
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--border-radius-md);
	margin-bottom: 12px;
	overflow: hidden;
	background: rgb(255 255 255 / 2%);
}

.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: all 250ms ease;
}

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

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--theme-primary);
	transition: transform 250ms ease;
}

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

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

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

/* --- Info Table --- */

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

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

/*
 * Footer
 */

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

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

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

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

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

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

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

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

.badge-strip img {
	height: 50px;
	filter: saturate(0) brightness(1.8);
	transition: all 250ms ease;
}

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

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

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

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

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

.responsible-gaming a {
	display: block;
	transition: all 250ms ease;
}

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

.responsible-gaming img {
	height: 40px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 250ms ease;
}

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

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

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

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

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

/*
 * Hamburger & Mobile
 */

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

.menu-toggle span {
	width: 28px;
	height: 3px;
	background: var(--theme-accent);
	transition: all 250ms ease;
	border-radius: 2px;
}

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

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

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

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

/* RESPONSIVE - TABLET */

@media (max-width: 1023px) {
	.banner_WLVkt .inner_P8E2c {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.pair-row { grid-template-columns: 1fr; }
	.pair-row--reversed { direction: ltr; }

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

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

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

/* ===== Responsive - Mobile ===== */

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

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

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--font-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-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(--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(--border-radius-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.masthead_meC7w-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

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

	.nav_yOFzD.active {
		right: 0px;
	}

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

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

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

@media (max-width: 30em) {
	.inner_P8E2c { padding: 0px 16px; }
	.block_5dHgn { padding: 60px 0px; }
	.banner_WLVkt-ctas { flex-direction: column; }
	.banner_WLVkt-ctas .cta_Agvvr { width: 100%; }

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