

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

:root {
	--primary-alpha: #05966940;
	--darker: #021a11;
	--primary: #059669;
	--light: #ecfdf5;
	--dark: #052e1f;
	--text: #d1fae5;
	--secondary: #10b981;
	--muted: #6ee7b7;
	--accent: #34d399;
	--secondary-alpha: #10b98140;

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

	--element-spacing: 30px;
	--section-padding: 70px;
	--gap: 25px;
	--radius-sm: 8px;
	--radius-lg: 16px;
	--radius-md: 12px;
	--radius-full: 8px;
	--shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-glow: 0 0 30px;
	--shadow-card: 0 4px 20px rgba(0,0,0,0.25);
}

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

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

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

.skip-link:focus {
	top: 10px;
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--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;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--darker);
	color: var(--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.2;
}

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

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

/*
 * Container
 */

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

/* HEADER */

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

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

.header_7qLvu .content-wrap_rtfNu {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

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

/* --- Buttons --- */

.action_T58wE {
	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(--radius-md);
	cursor: pointer;
	transition: all 250ms ease-in;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

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

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

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

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

.action_T58wE--small {
	padding: 8px 20px;
	font-size: 14px;
}


/* -- HERO -- */

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

.banner_iBqKf::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, var(--primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

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

.banner_iBqKf-content {
	order: 2;
}

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

.banner_iBqKf-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_iBqKf-subtitle {
	font-size: 20px;
	color: var(--muted);
	margin-bottom: 2rem;
	max-width: 500px;
}

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

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

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

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

.banner_iBqKf-feature span {
	font-size: 19px;
}

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

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


/*! Sections */

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel_snXsK--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 250ms ease-in;
}

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

/** CTA Blocks **/

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

.section_7SnDp--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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;
}

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

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

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

.section_7SnDp--cta .action_T58wE:hover {
	background: var(--dark);
	color: #FFF;
}

/* ==================== PAYMENTS TABLE ==================== */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--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(--accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.5px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgba(255,255,255,0.05);
	transition: background 250ms 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: 4px 12px;
	background: var(--primary-alpha);
	border-radius: var(--radius-full);
	font-size: 13px;
	color: var(--accent);
}

/* SEO Text */

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

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

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

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

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

.seo-content {
	max-width: 900px;
	margin-left: auto;
	margin-right: 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(--accent);
}

.seo-content p {
	color: var(--muted);
	margin-bottom: 20px;
	line-height: 1.9;
}


/* --- FAQ --- */

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

.faq-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--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-in;
}

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

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

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

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

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


/* ==================== 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(--radius-lg);
	overflow: hidden;
}

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

.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(--accent);
	background: rgb(255 255 255 / 2%);
}

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


/* Footer */

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

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

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

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

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

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

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

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

.trust-badges img {
	height: 50px;
	filter: grayscale(100%) brightness(2);
	opacity: 0.7;
	transition: all 250ms ease-in;
}

.trust-badges img:hover {
	filter: grayscale(0%) brightness(1);
	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(--muted);
}

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

.responsible-logos {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

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

.responsible-logos a:hover {
	transform: translateY(-2px);
}

.responsible-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	opacity: 0.5;
	transition: all 250ms ease-in;
}

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

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

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

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

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

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

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

/*! Hamburger & Mobile */

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

.hamburger span {
	width: 28px;
	height: 3px;
	background: var(--accent);
	transition: all 250ms 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: 1024px) {
	.banner_iBqKf .content-wrap_rtfNu {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

/* -- RESPONSIVE - MOBILE -- */

@media (max-width: 768px) {
	.header_7qLvu {
		padding: 0px;
	}

	.header_7qLvu .content-wrap_rtfNu {
		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: 1.063rem;
		font-weight: 700;
		color: var(--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(135deg, var(--primary), var(--secondary));
		color: #FFFFFF;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--radius-md);
		box-shadow: 0 4px 15px var(--primary-alpha);
	}

	.header_7qLvu-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

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

	.menu_TVcNQ.active {
		right: 0px;
	}

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

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

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

@media (max-width: 480px) {
	.content-wrap_rtfNu { padding: 0px 16px; }
	.section_7SnDp { padding: 60px 0px; }
	.banner_iBqKf-ctas { flex-direction: column; }
	.banner_iBqKf-ctas .action_T58wE { width: 100%; }

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