

@import 'https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&family=Rubik:wght@400;500&display=swap';

:root {
	/* Colors */
	--color-dark: #052e16;
	--color-secondary-alpha: #4ade8040;
	--color-primary: #22c55e;
	--color-text: #dcfce7;
	--color-light: #f0fdf4;
	--color-darker: #021a0d;
	--color-accent: #86efac;
	--color-muted: #86efac;
	--color-primary-alpha: #22c55e40;
	--color-secondary: #4ade80;

	/* Typography */
	--font-body: 'Rubik', sans-serif;
	--font-heading: 'Teko', sans-serif;

	/* Spacing */
	--sp-gap: 25px;
	--sp-element: 30px;
	--sp-section: 70px;

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

	/* Shadows */
	--shadow-glow: 0 0 50px;
	--shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
	--shadow-sm: 0 8px 40px rgba(0,0,0,0.4);
}

/* Base */

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

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

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

/*! Animations */

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

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

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



html {
	scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	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 **/

.container_8sYxz {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
}

/* Header */

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

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

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

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

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

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

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

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

/* BUTTONS */

.action_wZkb8 {
	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-body);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: var(--rounded-md);
	cursor: pointer;
	transition: all 0.3s ease-in;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.action_wZkb8--primary {
	background: var(--color-primary);
	border: none;
	color: #fff;
}

.action_wZkb8--primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--shadow-lg);
}

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

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

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

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

/* --- Hero --- */

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

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

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

.intro_Ac3fg-content {
}

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

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

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

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

.intro_Ac3fg-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

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

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

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

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

/*
 * Sections
 */

.block_7VPij {
	padding: var(--sp-section) 0;
}

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

.block_7VPij-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--color-muted);
	margin-bottom: 48px;
	max-width: 680px;
	margin: 0px auto;
}

/* ===== Cards ===== */

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

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

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

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

.panel_FHUqt-icon {
	font-size: 56px;
	margin-bottom: 1.25rem;
}

.panel_FHUqt--bonus h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: var(--color-accent);
}

.panel_FHUqt--bonus p {
	color: var(--color-muted);
	margin-bottom: 1.5rem;
	line-height: 1.7em;
}

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

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

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

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

.panel_FHUqt-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-in;
}

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

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

.panel_FHUqt-name {
	font-weight: 600;
	color: white;
}

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

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

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

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

.panel_FHUqt--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 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;
}

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

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

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

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

.reviewer-avatar {
	width: 48px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
	display: flex;
	place-content: center;
	place-items: center;
	font-weight: 700;
	color: #FFFFFF;
}

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

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

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

/* ABOUT / CONTENT LAYOUT */

.split-layout {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

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

.split-row--flipped {
	direction: rtl;
}

.split-row--flipped > * {
	direction: ltr;
}

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

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

.split-media {
	display: flex;
	place-content: center;
	place-items: center;
}

.split-media img {
	width: 100%;
	max-width: 380px;
	max-height: 300px;
	object-fit: contain;
}

/* CTA BLOCKS */

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

.block_7VPij--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.2;
}

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

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

.block_7VPij--cta .action_wZkb8 {
	position: relative;
	background: rgb(255, 255, 255);
	color: var(--color-primary);
}

.block_7VPij--cta .action_wZkb8:hover {
	background: var(--color-dark);
	color: #FFFFFF;
}

/* ===== Payments Table ===== */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rounded-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.05em;
}

.payments-table tbody tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: 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: 1rem;
}

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding-block: 4px;
	padding-inline: 12px;
	background: var(--color-primary-alpha);
	border-radius: var(--rounded-full);
	font-size: 0.813rem;
	color: var(--color-accent);
}

/** SEO Text **/

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

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

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

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

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: rgb(255, 255, 255);
}

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


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

.faq-item {
	border: solid rgba(255, 255, 255, 0.08) 1px;
	border-radius: var(--rounded-md);
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.02);
}

.faq-question {
	width: 100%;
	padding: 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.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(90deg);
}

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

/* ==================== INFO TABLE ==================== */

.info-table {
	width: 100%;
	max-width: 850px;
	margin-inline: auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rounded-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: 20px 24px;
	text-align: left;
}

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--color-accent);
	background: rgb(255 255 255 / 2%);
}

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

/* -- FOOTER -- */

.colophon_ihdbY {
	background: var(--color-darker);
	padding-top: 80px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

.gaming-care img {
	height: 40px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 0.3s ease-in;
}

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

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

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

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


.hamburger {
	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;
}

.hamburger span {
	width: 28px;
	height: 2px;
	background: var(--color-accent);
	transition: all 0.3s ease-in;
	border-radius: 2px;
}

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

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

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

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

/* ===== Responsive - Tablet ===== */

@media (max-width: 1025px) {
	.intro_Ac3fg .container_8sYxz {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.split-row { grid-template-columns: 1fr; }
	.split-row--flipped { direction: ltr; }

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

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

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

/** Responsive - Mobile **/

@media (max-width: 47.9375em) {
	.site-header_bKXd9 {
		padding: 0;
	}

	.site-header_bKXd9 .container_8sYxz {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 0.75rem;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--font-heading);
		font-size: 1.063rem;
		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(170deg, 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(--rounded-md);
		box-shadow: 0 4px 15px var(--color-primary-alpha);
	}

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

	.hamburger {
		display: flex;
	}

	.navigation_hL3dn {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 420px;
		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: 0;
	}

	.navigation_hL3dn.active {
		right: 0;
	}

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

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

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

@media (max-width: 480px) {
	.container_8sYxz { padding: 0px 16px; }
	.block_7VPij { padding: 60px 0px; }
	.intro_Ac3fg-ctas { flex-direction: column; }
	.intro_Ac3fg-ctas .action_wZkb8 { width: 100%; }

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