

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

:root {
	/* Colors */
	--color-primary-alpha: #e11d4840;
	--color-muted: #fecdd3;
	--color-text: #ffe4e6;
	--color-light: #fff1f2;
	--color-primary: #e11d48;
	--color-accent: #fda4af;
	--color-dark: #1c0a10;
	--color-darker: #0e0508;
	--color-secondary: #fb7185;
	--color-secondary-alpha: #fb718540;

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

	/* Spacing */
	--pad-section: 40px;
	--pad-element: 16px;
	--grid-gap: 12px;

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

	/* Shadows */
	--glow-shadow: 0 0 40px;
	--card-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
	--elevated-shadow: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
}

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

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


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

.skip-to-main: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 do-fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-anim {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

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



html {
	scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font);
	font-weight: 800;
	line-height: 120%;
}

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

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


/*
 * Container
 */

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

/*
 * Header
 */

.nav-wrap_k0mdQ {
	position: fixed;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 16px;
	padding-left: 0px;
	background: rgb(0 0 0 / 85%);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrap_k0mdQ.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%);
}

.nav-wrap_k0mdQ .box_raKwZ {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

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

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

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

.nav-wrap_k0mdQ-actions {
	display: flex;
	gap: 0.75rem;
}

/*! Buttons */

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

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

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

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

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

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

.action_iWfKp--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 0.875rem;
}

/* Hero */

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

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

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

.showcase_EDhhD-content {
	order: 2;
}

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

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

.showcase_EDhhD-subtitle {
	font-size: 1.25rem;
	color: var(--color-muted);
	margin-bottom: 2rem;
	max-width: 460px;
}

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

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

.showcase_EDhhD-features {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

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

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

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

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

/* -- SECTIONS -- */

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

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

.segment_PX9mg-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--color-muted);
	margin-bottom: 48px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* -- CARDS -- */

.panel_l9h4p {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255,255,255,0.02) 100%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--radius-lg);
	padding: var(--pad-element);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.panel_l9h4p--bonus p {
	color: var(--color-muted);
	margin-bottom: 1.5rem;
	line-height: 170%;
}

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

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

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

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

.panel_l9h4p-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.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.panel_l9h4p-info {
	position: absolute;
	bottom: 0;
	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_l9h4p-name {
	font-weight: 600;
	color: rgb(255, 255, 255);
}

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

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

.panel_l9h4p--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel_l9h4p--provider:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.03) rotate(1deg);
}

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

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

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

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

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

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

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

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

.panel_l9h4p--review p {
	color: var(--color-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: 32px;
	margin-bottom: 1.25rem;
	color: var(--color-accent);
}

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

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

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


/*
 * CTA Blocks
 */

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

.segment_PX9mg--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.15;
}

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

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

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

.segment_PX9mg--cta .action_iWfKp:hover {
	background: var(--color-dark);
	color: #fff;
}

/*
 * Payments Table
 */

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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.payments-table th,
.payments-table td {
	padding: 20px 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.3px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 0.25s 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: 1rem;
}

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

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

/* ==================== SEO TEXT ==================== */

.content-text {
	margin-top: 3rem;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

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



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

.faq-item {
	border: solid rgb(255 255 255 / 8%) 1px;
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	overflow: hidden;
	background: rgb(255 255 255 / 2%);
}

.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: white;
	text-align: left;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--color-primary);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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


.info-table {
	width: 100%;
	max-width: 800px;
	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: 0 0 1px 0 solid rgb(255 255 255 / 5%);
}

.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 ==================== */

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

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

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

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

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

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

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

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

.trust-seals img {
	height: 50px;
	filter: grayscale(100%);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.responsible-text {
	font-size: 0.875rem;
	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.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-care a:hover {
	transform: translateY(-3px) scale(1.02);
}

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

.gaming-care a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

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

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

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

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

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

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


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

.burger span {
	width: 26px;
	height: 3px;
	background: var(--color-accent);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

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

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

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

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

/*! Responsive - Tablet */

@media (max-width: 64em) {
	.showcase_EDhhD .box_raKwZ {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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

/* ==================== RESPONSIVE - MOBILE ==================== */

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

	.nav-wrap_k0mdQ .box_raKwZ {
		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(--color-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(120deg, var(--color-primary), var(--color-secondary));
		color: rgb(255,255,255);
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.03em;
		border-radius: var(--radius-md);
		box-shadow: 0 4px 15px var(--color-primary-alpha);
	}

	.nav-wrap_k0mdQ-actions {
		display: none;
	}

	.burger {
		display: flex;
	}

	.nav_RUUHV {
		position: fixed;
		top: 0;
		right: -100%;
		width: 90%;
		max-width: 420px;
		height: 100vh;
		background: var(--color-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
		border-left: 2px solid var(--color-primary);
		z-index: 1001;
		gap: 0;
	}

	.nav_RUUHV.active {
		right: 0;
	}

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

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

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

@media (max-width: 500px) {
	.box_raKwZ { padding: 0px 16px; }
	.segment_PX9mg { padding: 60px 0px; }
	.showcase_EDhhD-ctas { flex-direction: column; }
	.showcase_EDhhD-ctas .action_iWfKp { width: 100%; }

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