/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Midnight Gold
 * Typography: Luxury Modern
 * Generated: 2026-08-24T20:07:29.618Z
 */

@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap";

:root {
	/* Colors */
	--theme-primary: #ca8a04;
	--theme-secondary: #eab308;
	--theme-accent: #fde047;
	--theme-secondary-alpha: #eab30840;
	--theme-primary-alpha: #ca8a0440;
	--theme-muted: #facc15;
	--theme-light: #fefce8;
	--theme-darker: #0d0b02;
	--theme-dark: #1a1505;
	--theme-text: #fef08a;

	/* Typography */
	--font-family-heading: 'Montserrat', sans-serif;
	--font-family-body: 'Raleway', sans-serif;

	/* Spacing */
	--gap: 20px;
	--section-padding: 50px;
	--element-spacing: 20px;

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

	/* Shadows */
	--shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
	--shadow-glow: 0 0 20px;
	--shadow-card: 0 2px 8px rgba(0,0,0,0.15);
}


/*! 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(--theme-primary);
	color: #FFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 0.35s ease-in-out;
}

.bypass-block: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 {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

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



html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-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-family-heading);
	font-weight: 700;
	line-height: 1.2;
}

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

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

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

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

/*
 * Header
 */

.masthead_gsTDJ {
	position: fixed;
	top: 0;
	left: 0px;
	right: 0;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 16px;
	padding-left: 0;
	background: rgba(0, 0, 0, 0.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: all 0.35s ease-in-out;
}

.masthead_gsTDJ.scrolled {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 12px;
	padding-left: 0px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.masthead_gsTDJ .content-wrap_fUWoq {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

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


.cta_JNjyv {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--font-family-body);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta_JNjyv--primary {
	background: linear-gradient(90deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	border: none;
	color: #ffffff;
}

.cta_JNjyv--primary:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-elevated);
}

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

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

.cta_JNjyv--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 17px;
}

.cta_JNjyv--small {
	padding: 8px 20px;
	font-size: 0.875rem;
}

/* HERO */

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

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

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

.showcase_1aAT4-content {
}

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

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

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

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

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

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

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

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

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

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


/* Sections */

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

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

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


/* -- CARDS -- */

.box_DDhxl {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--r-lg);
	padding: var(--element-spacing);
	transition: all 0.35s ease-in-out;
}

.box_DDhxl:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: var(--shadow-elevated);
	border-color: var(--theme-primary);
}

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

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

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

.box_DDhxl--bonus h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--theme-accent);
}

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

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

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

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

.box_DDhxl--game:hover img {
	transform: scale(1.05);
}

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

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

.box_DDhxl-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0;
	padding: 16px;
	background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

.box_DDhxl-name {
	font-weight: 600;
	color: #FFF;
}

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

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

.box_DDhxl--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.35s ease-in-out;
}

.box_DDhxl--provider:hover img {
	filter: saturate(1) brightness(1);
	transform: scale(1.08);
}

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

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

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

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

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

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

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

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

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

/*! About / Content Layout */

.content-pairs {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

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

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

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

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

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

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

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

/* -- CTA BLOCKS -- */

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

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

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

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

.zone_uszxN--cta .cta_JNjyv {
	position: relative;
	background: #ffffff;
	color: var(--theme-primary);
}

.zone_uszxN--cta .cta_JNjyv:hover {
	background: var(--theme-dark);
	color: rgb(255,255,255);
}

/* Payments Table */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--r-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(--theme-accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.3px;
}

.payments-table tbody tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.05);
	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(--theme-primary-alpha);
	border-radius: var(--r-full);
	font-size: 13px;
	color: var(--theme-accent);
}


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

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

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

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

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

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

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

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



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

.faq-item {
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--r-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: 1.063rem;
	font-weight: 600;
	color: #FFF;
	text-align: left;
	transition: color 0.35s ease-in-out;
}

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

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

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

.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(--theme-muted);
	line-height: 180%;
}


/** Info Table **/

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

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

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

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

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

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


/* FOOTER */

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

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

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

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

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

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

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

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

.security-badges img {
	height: 50px;
	filter: grayscale(100%);
	transition: all 0.35s ease-in-out;
}

.security-badges img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

.responsible-gaming {
	text-align: center;
	padding-top: 40px;
	padding-right: 0px;
	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(--theme-muted);
}

.responsible-text {
	font-size: 14px;
	color: var(--theme-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 0.35s ease-in-out;
}

.safe-play a:hover {
	transform: scale(1.02);
}

.safe-play img {
	height: 40px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.35s ease-in-out;
}

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

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

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

.bottom-bar_78I2c-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: 12px auto 0;
	opacity: 0.5;
	line-height: 160%;
}

/* -- 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: 26px;
	height: 2px;
	background: var(--theme-accent);
	transition: all 0.35s ease-in-out;
	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: 64em) {
	.showcase_1aAT4 .content-wrap_fUWoq {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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


@media (max-width: 48em) {
	.masthead_gsTDJ {
		padding: 0;
	}

	.masthead_gsTDJ .content-wrap_fUWoq {
		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-family-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-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(160deg, var(--theme-primary), var(--theme-secondary));
		color: #FFF;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--r-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.masthead_gsTDJ-actions {
		display: none;
	}

	.toggle-btn {
		display: flex;
	}

	.nav-links_eXVQk {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 75%;
		max-width: 380px;
		height: 100vh;
		background: var(--theme-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(--theme-primary);
		z-index: 1001;
		gap: 0;
	}

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

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

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

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

@media (max-width: 30rem) {
	.content-wrap_fUWoq { padding: 0 16px; }
	.zone_uszxN { padding: 60px 0; }
	.showcase_1aAT4-ctas { flex-direction: column; }
	.showcase_1aAT4-ctas .cta_JNjyv { width: 100%; }

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