/*
 * Theme: Sunset Orange
 * Typography: Elegant Serif
 */

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

:root {
	/* Colors */
	--theme-text: #fed7aa;
	--theme-light: #fff7ed;
	--theme-dark: #1a0f05;
	--theme-secondary: #f97316;
	--theme-muted: #fb923c;
	--theme-primary-alpha: #ea580c40;
	--theme-secondary-alpha: #f9731640;
	--theme-accent: #fdba74;
	--theme-primary: #ea580c;
	--theme-darker: #0d0802;

	/* Typography */
	--heading-font: 'Playfair Display', sans-serif;
	--body-font: 'Source Sans Pro', sans-serif;

	/* Spacing */
	--grid-gap: 20px;
	--pad-section: 50px;
	--pad-element: 20px;

	/* Border Radius */
	--r-md: 12px;
	--r-sm: 8px;
	--r-full: 8px;
	--r-lg: 16px;

	/* Shadows */
	--sh-card: 0 8px 40px rgba(0,0,0,0.4);
	--sh-elevated: 0 15px 50px rgba(0,0,0,0.5);
	--sh-glow: 0 0 50px;
}


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


.skip-to-main {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--theme-primary);
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 250ms ease-in-out;
}

.skip-to-main: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 go-slideUp {
	0% { opacity: 0; transform: translateY(1.5rem); }
	100% { opacity: 1; transform: translateY(0); }
}



html {
	scroll-behavior: smooth;
}

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

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

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

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

/*! Container */

.inner_KgK1x {
	max-width: 1320px;
	margin: 0px auto;
	padding: 0 24px;
}


/** Header **/

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

.site-header_kW6vG.scrolled {
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(20px);
	padding: 12px 0;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-header_kW6vG .inner_KgK1x {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header_kW6vG .logo {
	font-family: var(--heading-font);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

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

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

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

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


/*
 * Buttons
 */

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

.btn_47Nn4--primary {
	background: var(--theme-primary);
	border: none;
	box-shadow: 0 0 20px var(--theme-primary-alpha);
	color: #FFFFFF;
}

.btn_47Nn4--primary:hover {
	transform: scale(1.03);
	box-shadow: var(--sh-elevated);
}

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

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

.btn_47Nn4--large {
	padding: 18px 40px;
	font-size: 1.063rem;
}

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


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

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

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

.intro_C0GvG-content {
	order: 2;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

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

.panel_mVrmP {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
	padding: var(--pad-element);
	transition: all 250ms ease-in-out;
}

.panel_mVrmP:hover {
	transform: translateY(-6px);
	box-shadow: var(--sh-elevated);
	border-color: var(--theme-primary);
}

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

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

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

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

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

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

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

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

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

.panel_mVrmP-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 250ms ease-in-out;
}

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

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

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

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

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

.panel_mVrmP--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	opacity: 0.4;
	transition: all 250ms ease-in-out;
}

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

.panel_mVrmP--provider span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0;
	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 250ms ease-in-out;
}

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

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

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

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

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

.reviewer-info strong {
	display: block;
	color: rgb(255,255,255);
}

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

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


.info-layout {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

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

.info-row--reverse {
	direction: rtl;
}

.info-row--reverse > * {
	direction: ltr;
}

.info-text h3 {
	font-size: 32px;
	margin-bottom: 1.25rem;
	color: var(--theme-accent);
}

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

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

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


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

.section_T6lwt--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: none;
	opacity: 0.35;
}

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

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

.section_T6lwt--cta .btn_47Nn4 {
	position: relative;
	background: white;
	color: var(--theme-primary);
}

.section_T6lwt--cta .btn_47Nn4: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: 0.813rem;
	letter-spacing: 0.8px;
}

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

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

/** SEO Text **/

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

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

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

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

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

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

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

.seo-content h3 {
	font-size: 28px;
	margin-top: 32px;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 0;
	color: var(--theme-accent);
}

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

/*! FAQ */

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

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--r-md);
	margin-bottom: 0.75rem;
	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 250ms ease-in-out;
}

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

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

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 250ms 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: 1.8;
}

/*
 * Info Table
 */

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

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

.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(--theme-accent);
	background: rgba(255,255,255,0.02);
}

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


.end-section_k97iW {
	background: var(--theme-darker);
	padding: 80px 0px 0px 0;
	border: 1px 0 0 0 solid rgba(255,255,255,0.05);
}

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

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

.end-section_k97iW-col p {
	color: var(--theme-muted);
	line-height: 180%;
}

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

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

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

.badge-strip {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.badge-strip img {
	height: 50px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 250ms ease-in-out;
}

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

.responsible-gaming {
	text-align: center;
	padding-block: 40px;
	padding-inline: 0px;
	border: 1px 0 solid rgba(255, 255, 255, 0.05);
}

.responsible-gaming h4 {
	font-size: 1rem;
	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 250ms ease-in-out;
}

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

.safe-play img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	transition: all 250ms ease-in-out;
}

.safe-play a:hover img {
	filter: none;
	opacity: 1;
}

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

.end-section_k97iW-bottom p {
	font-size: 0.875rem;
	color: var(--theme-muted);
	opacity: 0.7;
	margin-bottom: 0.5rem;
}

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

.footer-update {
	margin-top: 16px;
	opacity: 0.6;
}

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

.footer-disclaimer {
	max-width: 720px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6em;
}

/* Hamburger & Mobile */

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

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

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

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

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

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



@media (max-width: 63.9375rem) {
	.intro_C0GvG .inner_KgK1x {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.info-row { grid-template-columns: 1fr; }
	.info-row--reverse { direction: ltr; }

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

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

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


/*
 * Responsive - Mobile
 */

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

	.site-header_kW6vG .inner_KgK1x {
		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(--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(150deg, var(--theme-primary), var(--theme-secondary));
		color: rgb(255, 255, 255);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: capitalize;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--r-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.site-header_kW6vG-actions {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.navigation_CNBys {
		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 250ms ease-in-out;
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--theme-primary);
		z-index: 1001;
		gap: 0;
	}

	.navigation_CNBys.active {
		right: 0px;
	}

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

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

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

@media (max-width: 500px) {
	.inner_KgK1x { padding: 0px 16px; }
	.section_T6lwt { padding: 60px 0; }
	.intro_C0GvG-ctas { flex-direction: column; }
	.intro_C0GvG-ctas .btn_47Nn4 { width: 100%; }

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