/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Teal Wave
 * Typography: Modern Sharp
 * Generated: 2026-08-20T13:56:50.623Z
 */

@import "https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap";

:root {
	--color-secondary-alpha: #2dd4bf40;
	--color-light: #f0fdfa;
	--color-darker: #021716;
	--color-muted: #5eead4;
	--color-primary: #14b8a6;
	--color-accent: #5eead4;
	--color-primary-alpha: #14b8a640;
	--color-text: #ccfbf1;
	--color-dark: #042f2e;
	--color-secondary: #2dd4bf;

	--font-family-body: 'Inter', sans-serif;
	--font-family-heading: 'Bebas Neue', sans-serif;

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


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

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


.acc-skip {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--color-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--border-radius-md);
	z-index: 10000;
	transition: top 0.3s ease-out;
}

.acc-skip: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 go-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-anim {
	from {
		opacity: 0;
		transform: translateY(1.5rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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



html {
	scroll-behavior: smooth;
}

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

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

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

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

/*
 * Container
 */

.content-wrap_g1pF1 {
	max-width: 80rem;
	margin-inline: auto;
	padding: 0 24px;
}

/* Header */

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

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

.header_Lt9gw .content-wrap_g1pF1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

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

/*! Buttons */

.link-btn_OlA2v {
	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: 15px;
	font-weight: 600;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	transition: all 0.3s ease-out;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.link-btn_OlA2v--primary {
	background: linear-gradient(125deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	border: none;
	color: #FFFFFF;
}

.link-btn_OlA2v--primary:hover {
	transform: translateY(-4px);
	box-shadow: var(--elevated-shadow);
}

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

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

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

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

/* Hero */

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

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

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

.banner_rbhkp-content {
	order: 2;
}

.banner_rbhkp-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: 14px;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 24px;
}

.banner_rbhkp-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_rbhkp-subtitle {
	font-size: 1.25rem;
	color: var(--color-muted);
	margin-bottom: 32px;
	max-width: 540px;
}

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

.banner_rbhkp-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

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

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

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

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

/*! Sections */

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

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

.area_enqfn-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--color-muted);
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.box_Ebu2e {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgb(255 255 255 / 2%) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: var(--border-radius-lg);
	padding: var(--element-space);
	transition: all 0.3s ease-out;
}

.box_Ebu2e:hover {
	transform: translateY(-8px);
	box-shadow: var(--elevated-shadow);
	border-color: var(--color-primary);
}

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

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

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

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

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

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

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

.box_Ebu2e--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease-in-out;
}

.box_Ebu2e--game:hover img {
	transform: scale(1.08);
}

.box_Ebu2e-overlay {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

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

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

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

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

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

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

.box_Ebu2e--provider:hover img {
	filter: none;
	transform: scale(1.06);
}

.box_Ebu2e--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 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 0.3s ease-out;
}

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

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

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

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

.reviewer-avatar {
	width: 48px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: white;
}

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

.stars {
	color: var(--color-accent);
	font-size: 0.875rem;
}

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

/* --- About / Content Layout --- */

.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: 400px;
	max-height: 340px;
	object-fit: contain;
}


/* ===== CTA Blocks ===== */

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

.area_enqfn--cta::before {
	content: '';
	position: absolute;
	inset: 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.35;
}

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

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

.area_enqfn--cta .link-btn_OlA2v {
	position: relative;
	background: #fff;
	color: var(--color-primary);
}

.area_enqfn--cta .link-btn_OlA2v:hover {
	background: var(--color-dark);
	color: rgb(255,255,255);
}


/* 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: 20px 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: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
}

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

/* SEO TEXT */

.seo-content {
	margin-top: 3rem;
	padding: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--border-radius-lg);
	border: rgba(255,255,255,0.05) 1px solid;
}

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

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

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

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

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

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

.seo-content h3 {
	font-size: 1.75rem;
	margin-top: 32px;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 0;
	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-inline: auto;
}

.faq-item {
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--border-radius-md);
	margin-bottom: 12px;
	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: #FFF;
	text-align: left;
	transition: color 0.3s ease-out;
}

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

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

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

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

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

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

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

.info-table {
	width: 100%;
	max-width: 900px;
	margin-inline: auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
}

.info-table tr {
	border: solid 0 0 1px 0 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(--color-accent);
	background: rgba(255, 255, 255, 0.02);
}

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

/* Footer */

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

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

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

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

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

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

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

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

.cert-logos img {
	height: 50px;
	opacity: 0.4;
	transition: all 0.3s ease-out;
}

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

.responsible-gaming {
	text-align: center;
	padding: 40px 0;
	border: 1px 0 solid rgb(255 255 255 / 5%);
}

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

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

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

.gaming-care a {
	display: block;
	transition: all 0.3s ease-out;
}

.gaming-care a:hover {
	transform: translateY(-5px);
}

.gaming-care img {
	height: 40px;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.3s ease-out;
}

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

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

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

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

.footer-update {
	margin-top: 1rem;
	opacity: 0.6;
}

.footer-legal {
	font-weight: 500;
}

.footer-disclaimer {
	max-width: 750px;
	margin: 12px auto 0;
	opacity: 0.5;
	line-height: 1.6em;
}

/*
 * Hamburger & Mobile
 */

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

.menu-toggle span {
	width: 24px;
	height: 3px;
	background: var(--color-accent);
	transition: all 0.3s ease-out;
	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_rbhkp .content-wrap_g1pF1 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

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

@media (max-width: 770px) {
	.header_Lt9gw {
		padding: 0px;
	}

	.header_Lt9gw .content-wrap_g1pF1 {
		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(--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(to bottom, var(--color-primary), var(--color-secondary));
		color: rgb(255,255,255);
		font-size: 13px;
		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);
	}

	.header_Lt9gw-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links_Q6oFP {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 380px;
		height: 100vh;
		background: var(--color-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.3s ease-out;
		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_Q6oFP.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 29.9375em) {
	.content-wrap_g1pF1 { padding: 0px 16px; }
	.area_enqfn { padding: 60px 0px; }
	.banner_rbhkp-ctas { flex-direction: column; }
	.banner_rbhkp-ctas .link-btn_OlA2v { width: 100%; }

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