/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Electric Pink
 * Typography: Futuristic
 * Generated: 2026-09-15T16:22:26.201Z
 */

@import "https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Titillium+Web:wght@400;600&display=swap";

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

    /* Typography */
    --body-font: 'Titillium Web', sans-serif;
    --heading-font: 'Orbitron', sans-serif;

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

    /* Border Radius */
    --rad-full: 4px;
    --rad-md: 6px;
    --rad-sm: 4px;
    --rad-lg: 8px;

    /* Shadows */
    --shadow-glow: 0 0 30px;
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
}

/* ==================== BASE ==================== */

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

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

.jump-link: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 fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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



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: 700;
    line-height: 1.2em;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

/* CONTAINER */

.inner_iWWki {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

/* ===== Header ===== */

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

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

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

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

.nav-links_uSGva {
    display: flex;
    gap: 32px;
}

.nav-links_uSGva a {
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.8;
    transition: all 0.35s ease;
}

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

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

/* --- Buttons --- */

.link-btn_LP9Xk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rad-md);
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.link-btn_LP9Xk--primary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.link-btn_LP9Xk--primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--color-primary);
    color: #FFF;
}

.link-btn_LP9Xk--secondary {
    background: transparent;
    border: solid 2px var(--color-text);
    color: var(--color-text);
}

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

.link-btn_LP9Xk--large {
    padding: 18px 40px;
    font-size: 1.063rem;
}

.link-btn_LP9Xk--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 0.875rem;
}

/*
 * Hero
 */

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

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

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

.intro_FAmBT-content {
    order: 2;
}

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

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

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

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

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

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

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

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

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

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



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

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

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


/* --- Cards --- */

.tile_rkRDt {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgb(255 255 255 / 2%) 100%);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    border-radius: var(--rad-lg);
    padding: var(--element-spacing);
    transition: all 0.35s ease;
}

.tile_rkRDt:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

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

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

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

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

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

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

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

.tile_rkRDt--game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.tile_rkRDt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    place-content: center;
    place-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

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

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

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

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

.tile_rkRDt--provider img {
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    transition: all 0.35s ease;
}

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

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

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

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

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

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

.reviewer-avatar {
    width: 50px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary));
    display: flex;
    place-content: center;
    place-items: center;
    font-weight: 700;
    color: #FFFFFF;
}

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

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

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

/* About / Content Layout */

.zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

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

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

/*! CTA Blocks */

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

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

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

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

.segment_csn7W--cta .link-btn_LP9Xk {
    position: relative;
    background: rgb(255,255,255);
    color: var(--color-primary);
}

.segment_csn7W--cta .link-btn_LP9Xk:hover {
    background: var(--color-dark);
    color: rgb(255, 255, 255);
}


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

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

.payments-table tbody tr {
    border: 0 0 1px 0 solid rgba(255, 255, 255, 0.05);
    transition: background 0.35s 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-top: 4px;
    padding-right: 12px;
    padding-bottom: 4px;
    padding-left: 12px;
    background: var(--color-primary-alpha);
    border-radius: var(--rad-full);
    font-size: 0.813rem;
    color: var(--color-accent);
}

/*
 * SEO Text
 */

.details-text {
    margin-top: 48px;
    padding: 40px;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.segment_csn7W--seo-text {
    background: var(--color-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: 28px;
    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: 20px;
    line-height: 1.9;
}

/* FAQ */

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

.faq-item {
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    border-radius: var(--rad-md);
    margin-bottom: 12px;
    background: rgba(255,255,255,0.02);
}

.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: #FFF;
    text-align: left;
    transition: color 0.35s ease;
}

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

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

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

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

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

/*
 * Info Table
 */

.info-table {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0;
    background: rgb(255 255 255 / 2%);
    border-radius: var(--rad-lg);
    overflow: hidden;
}

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

.responsible-gaming a {
    display: block;
    transition: all 0.35s ease;
}

.responsible-gaming a:hover {
    transform: translateY(-2px) scale(1.01);
}

.responsible-gaming img {
    height: 40px;
    filter: grayscale(100%);
    transition: all 0.35s ease;
}

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

.footer_onGLT-bottom {
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 24px;
    padding-left: 0;
    text-align: center;
}

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

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

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

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

.footer-disclaimer {
    max-width: 700px;
    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: 24px;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.35s 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;
}


/* ===== Responsive - Tablet ===== */

@media (max-width: 1023px) {
    .intro_FAmBT .inner_iWWki {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

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

@media (max-width: 48em) {
    .nav-wrap_u3BcP {
        padding: 0px;
    }

    .nav-wrap_u3BcP .inner_iWWki {
        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: 1.063rem;
        font-weight: 700;
        color: var(--color-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(to bottom right, var(--color-primary), var(--color-secondary));
        color: #FFFFFF;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0.05em;
        border-radius: var(--rad-md);
        box-shadow: 0 4px 15px var(--color-primary-alpha);
    }

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

    .burger {
        display: flex;
    }

    .nav-links_uSGva {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: var(--color-darker);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.35s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.7);
        border-left: 2px solid var(--color-primary);
        z-index: 1001;
        gap: 0;
    }

    .nav-links_uSGva.active {
        right: 0;
    }

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

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

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

@media (max-width: 30rem) {
    .inner_iWWki { padding: 0 16px; }
    .segment_csn7W { padding: 60px 0; }
    .intro_FAmBT-ctas { flex-direction: column; }
    .intro_FAmBT-ctas .link-btn_LP9Xk { width: 100%; }

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