

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

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

	--font-family-heading: 'Rajdhani', sans-serif;
	--font-family-body: 'Exo 2', sans-serif;

	--element-spacing: 20px;
	--section-padding: 50px;
	--gap: 20px;
	--rounded-sm: 4px;
	--rounded-lg: 8px;
	--rounded-md: 6px;
	--rounded-full: 4px;
	--box-shadow-card: 0 2px 8px rgba(0,0,0,0.15);
	--box-shadow-glow: 0 0 20px;
	--box-shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
}


/*
 * Base
 */

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

.acc-skip {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--c-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-out;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--c-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-fx {
	0% { opacity: 0; transform: translateY(30px); }
	100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer-in {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}


html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-body);
	background: var(--c-darker);
	color: var(--c-text);
	line-height: 1.6em;
	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.3s ease-in-out;
}


/*
 * Container
 */

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

/* HEADER */

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

.top-bar_oBcMt.scrolled {
	background: rgb(0 0 0 / 90%);
	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);
}

.top-bar_oBcMt .inner_HT8Lg {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

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

/* --- Buttons --- */

.button_feqDZ {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--font-family-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rounded-md);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	letter-spacing: 0.05em;
}

.button_feqDZ--primary {
	background: var(--c-primary);
	border: none;
	box-shadow: 0 0 20px var(--c-primary-alpha);
	color: #ffffff;
}

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

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

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

.button_feqDZ--large {
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 18px;
	padding-left: 40px;
	font-size: 17px;
}

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

/* Hero */

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

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

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

.hero_PasDy-content {
	order: 2;
}

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

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

.hero_PasDy-subtitle {
	font-size: 20px;
	color: var(--c-muted);
	margin-bottom: 2rem;
	max-width: 500px;
}

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

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

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

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

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

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

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



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

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

.segment_ddxb2-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--c-muted);
	margin-bottom: 48px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* CARDS */

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

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

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

.item_KoflG--bonus {
	text-align: center;
	padding-top: 40px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-left: 30px;
}

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

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

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

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

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

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

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

.item_KoflG-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

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

.item_KoflG-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));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* 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(--c-accent);
}

.feature-text p {
	color: var(--c-muted);
	margin-bottom: 1rem;
	line-height: 1.8;
}

.feature-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

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


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

.segment_ddxb2--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.25;
}

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

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

.segment_ddxb2--cta .button_feqDZ {
	position: relative;
	background: #FFFFFF;
	color: var(--c-primary);
}

.segment_ddxb2--cta .button_feqDZ:hover {
	background: var(--c-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(--rounded-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(--c-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.8px;
}

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

/** SEO Text **/

.text-block {
	margin-top: 48px;
	padding: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rounded-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

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

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

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

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

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 1.5rem;
	color: #FFF;
}

.seo-content h3 {
	font-size: 1.75rem;
	margin: 32px 0 16px;
	color: var(--c-accent);
}

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


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

.faq-item {
	border: solid 1px rgba(255, 255, 255, 0.08);
	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: 17px;
	font-weight: 600;
	color: #FFFFFF;
	text-align: left;
	transition: color 0.3s ease-in-out;
}

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

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

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

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

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

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


/** Info Table **/

.info-table {
	width: 100%;
	max-width: 750px;
	margin: 0 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-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-top: 20px;
	padding-right: 24px;
	padding-bottom: 20px;
	padding-left: 24px;
	text-align: left;
}

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

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

/** Footer **/

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

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

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

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

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

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

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

.cert-logos {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cert-logos img {
	height: 50px;
	filter: brightness(0.6) contrast(0.8);
	transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.resp-logos a {
	display: block;
	transition: all 0.3s ease-in-out;
}

.resp-logos a:hover {
	transform: translateY(-3px);
}

.resp-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	transition: all 0.3s ease-in-out;
}

.resp-logos a:hover img {
	filter: none;
	opacity: 1;
}

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

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

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

.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.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: 26px;
	height: 3px;
	background: var(--c-accent);
	transition: all 0.3s ease-in-out;
	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: 64em) {
	.hero_PasDy .inner_HT8Lg {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

/* Responsive - Mobile */

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

	.top-bar_oBcMt .inner_HT8Lg {
		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(--c-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(--c-primary), var(--c-secondary));
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.05em;
		border-radius: var(--rounded-md);
		box-shadow: 0 4px 15px var(--c-primary-alpha);
	}

	.top-bar_oBcMt-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

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

	.menu_7RRIS.active {
		right: 0;
	}

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

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

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

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

@media (max-width: 481px) {
	.inner_HT8Lg { padding: 0 16px; }
	.segment_ddxb2 { padding: 60px 0; }
	.hero_PasDy-ctas { flex-direction: column; }
	.hero_PasDy-ctas .button_feqDZ { width: 100%; }

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