/* Casino Landing Page Styles - Neon Green + Luxury Modern */

@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap";

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

    --font-family-body: 'Raleway', sans-serif;
    --font-family-heading: 'Montserrat', sans-serif;

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


/* -- BASE -- */

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

.jump-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding-block: 12px;
    padding-inline: 24px;
    background: var(--theme-primary);
    color: rgb(255,255,255);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--r-md);
    z-index: 10000;
    transition: top 250ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--theme-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-up {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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



html {
    scroll-behavior: smooth;
}

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

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

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

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


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

/*
 * Header
 */

.site-header_9EohA {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0px;
    z-index: 1000;
    padding-top: 16px;
    padding-right: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
    background: rgb(0 0 0 / 85%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 250ms ease;
}

.site-header_9EohA.scrolled {
    background: rgb(0 0 0 / 90%);
    -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_9EohA .box_FUn7N {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

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

/* BUTTONS */

.cta_APXoS {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-family-body);
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: all 250ms ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.cta_APXoS--primary {
    background: var(--theme-primary);
    border: none;
    box-shadow: 0 0 20px var(--theme-primary-alpha);
    color: rgb(255, 255, 255);
}

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

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

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

.cta_APXoS--large {
    padding-block: 18px;
    padding-inline: 40px;
    font-size: 17px;
}

.cta_APXoS--small {
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 14px;
}


/* -- HERO -- */

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

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

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

.showcase_1RByj-content {
}

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

.showcase_1RByj-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_1RByj-subtitle {
    font-size: 20px;
    color: var(--theme-muted);
    margin-bottom: 32px;
    max-width: 460px;
}

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

.showcase_1RByj-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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


/* --- Sections --- */

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

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

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



.box_bveDL {
    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: rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: var(--element-spacing);
    transition: all 250ms ease;
}

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

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

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

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

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

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

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

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

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

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

.box_bveDL-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 250ms ease;
}

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

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

.box_bveDL-name {
    font-weight: 600;
    color: #FFFFFF;
}

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

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

.box_bveDL--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6) contrast(0.8);
    transition: all 250ms ease;
}

.box_bveDL--provider:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

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

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

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

.box_bveDL--review {
    padding-top: 28px;
    padding-right: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
}

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

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

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

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

.box_bveDL--review p {
    color: var(--theme-muted);
    font-style: italic;
    line-height: 170%;
}

/*! About / Content Layout */

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

.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(--theme-accent);
}

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

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

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


/* ===== CTA Blocks ===== */

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

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

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

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

.block_7l4DY--cta .cta_APXoS {
    position: relative;
    background: rgb(255, 255, 255);
    color: var(--theme-primary);
}

.block_7l4DY--cta .cta_APXoS:hover {
    background: var(--theme-dark);
    color: rgb(255,255,255);
}



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

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

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
    transition: background 250ms ease;
}

.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(--theme-primary-alpha);
    border-radius: var(--r-full);
    font-size: 13px;
    color: var(--theme-accent);
}

/* -- SEO TEXT -- */

.section-content {
    margin-top: 48px;
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--r-lg);
    border: solid 1px rgb(255 255 255 / 5%);
}

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

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

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

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

.seo-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

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

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

/*
 * FAQ
 */

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--theme-primary);
    transition: transform 250ms ease;
}

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

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

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

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

/*! Info Table */

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

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

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

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


/*
 * Footer
 */

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

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

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

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

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

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

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

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

.security-badges img {
    height: 50px;
    filter: grayscale(100%);
    transition: all 250ms ease;
}

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

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

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

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

.gaming-care {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.gaming-care a {
    display: block;
    transition: all 250ms ease;
}

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

.gaming-care img {
    height: 40px;
    filter: saturate(0) brightness(1.8);
    transition: all 250ms ease;
}

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

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

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

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

.footer-update {
    margin-top: 16px;
    opacity: 0.6;
}

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

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


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

.burger span {
    width: 28px;
    height: 3px;
    background: var(--theme-accent);
    transition: all 250ms ease;
    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;
}



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

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

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

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

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

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

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

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

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

@media (max-width: 48rem) {
    .site-header_9EohA {
        padding: 0px;
    }

    .site-header_9EohA .box_FUn7N {
        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: 1.063rem;
        font-weight: 700;
        color: var(--theme-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(90deg, var(--theme-primary), var(--theme-secondary));
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 0.03em;
        border-radius: var(--r-md);
        box-shadow: 0 4px 15px var(--theme-primary-alpha);
    }

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

    .burger {
        display: flex;
    }

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

    .nav_mMS8w.active {
        right: 0px;
    }

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

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

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

@media (max-width: 30rem) {
    .box_FUn7N { padding: 0 16px; }
    .block_7l4DY { padding: 60px 0; }
    .showcase_1RByj-ctas { flex-direction: column; }
    .showcase_1RByj-ctas .cta_APXoS { width: 100%; }

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