

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

:root {
	/* Colors */
	--dark: #1a0a14;
	--primary: #ec4899;
	--primary-alpha: #ec489940;
	--secondary-alpha: #f472b640;
	--secondary: #f472b6;
	--light: #fdf2f8;
	--accent: #f9a8d4;
	--darker: #0d0509;
	--text: #fce7f3;
	--muted: #f9a8d4;

	/* Typography */
	--ff-body: 'Exo 2', sans-serif;
	--ff-heading: 'Rajdhani', sans-serif;

	/* Spacing */
	--element-spacing: 16px;
	--gap: 12px;
	--section-padding: 40px;

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 16px;
	--radius-full: 100px;
	--radius-lg: 24px;

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

/* Base */

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

.skip-to-main {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-block: 12px;
	padding-inline: 24px;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--radius-md);
	z-index: 10000;
	transition: top 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== Animations ===== */

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

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

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



html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== CONTAINER ==================== */

.inner_clXkK {
	max-width: 1320px;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}

/* Header */

.top-bar_4w2xL {
	position: fixed;
	top: 0;
	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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.menu_ulQOd a {
	font-weight: 500;
	color: var(--text);
	opacity: 0.8;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/** Buttons **/

.action_4dCp5 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--ff-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.action_4dCp5--primary {
	background: var(--primary);
	border: none;
	color: rgb(255,255,255);
}

.action_4dCp5--primary:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-lg);
}

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

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

.action_4dCp5--large {
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 18px;
	padding-left: 40px;
	font-size: 1.063rem;
}

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

/* ==================== HERO ==================== */

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

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

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

.showcase_kENaR-content {
}

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

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

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

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

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

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

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

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

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

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


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

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

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

/* --- Cards --- */

.item_mue3n {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: var(--element-spacing);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.item_mue3n:hover {
	transform: scale(1.03);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

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

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

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

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

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

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

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

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

.item_mue3n--game:hover img {
	transform: scale(1.03) rotate(1deg);
}

.item_mue3n-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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.item_mue3n--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.item_mue3n--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--muted);
	text-align: center;
	background: linear-gradient(transparent, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

/*
 * 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: 2rem;
	margin-bottom: 20px;
	color: var(--accent);
}

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

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

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


.zone_M1s1i--cta {
	text-align: center;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(150deg, var(--primary) 0%, var(--secondary) 100%);
	position: relative;
	overflow: hidden;
}

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

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

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

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

.zone_M1s1i--cta .action_4dCp5:hover {
	background: var(--dark);
	color: rgb(255,255,255);
}


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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255,255,255,0.02);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.payments-table th,
.payments-table td {
	padding-block: 20px;
	padding-inline: 24px;
	text-align: left;
}

.payments-table thead {
	background: rgb(255 255 255 / 5%);
}

.payments-table th {
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.03em;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgba(255,255,255,0.05);
	transition: background 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.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-block: 4px;
	padding-inline: 12px;
	background: var(--primary-alpha);
	border-radius: var(--radius-full);
	font-size: 0.813rem;
	color: var(--accent);
}


.section-content {
	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);
}

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

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

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

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

.seo-content {
	max-width: 920px;
	margin: 0 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: 190%;
}

/* --- FAQ --- */

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

.faq-item {
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--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: #FFFFFF;
	text-align: left;
	transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--primary);
	transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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


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

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

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

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


.end-section_0Expp {
	background: var(--darker);
	padding: 80px 0 0px 0px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.05);
}

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

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

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

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

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

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

.security-badges {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.security-badges img {
	height: 50px;
	filter: grayscale(100%);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.security-badges img:hover {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

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

.responsible-text {
	font-size: 14px;
	color: var(--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 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gaming-care img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover img {
	filter: none;
	opacity: 1;
}

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

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

.end-section_0Expp-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-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 160%;
}

/* ===== Hamburger & Mobile ===== */

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

.mobile-nav-btn span {
	width: 30px;
	height: 3px;
	background: var(--accent);
	transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

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

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

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

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


@media (max-width: 1024px) {
	.showcase_kENaR .inner_clXkK {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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


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

	.top-bar_4w2xL .inner_clXkK {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 12px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--ff-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--accent);
		text-transform: none;
		text-decoration: none;
		white-space: nowrap;
	}

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(90deg, var(--primary), var(--secondary));
		color: #fff;
		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);
	}

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

	.mobile-nav-btn {
		display: flex;
	}

	.menu_ulQOd {
		position: fixed;
		top: 0;
		right: -100%;
		width: 90%;
		max-width: 360px;
		height: 100vh;
		background: var(--darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 350ms cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--primary);
		z-index: 1001;
		gap: 0px;
	}

	.menu_ulQOd.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 29.9375rem) {
	.inner_clXkK { padding: 0 16px; }
	.zone_M1s1i { padding: 60px 0px; }
	.showcase_kENaR-ctas { flex-direction: column; }
	.showcase_kENaR-ctas .action_4dCp5 { width: 100%; }

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