/*!
 * Stylesheet: Midnight Gold
 * Fonts: Playfair Display / Source Sans Pro
 * Date: 2026-09-01T11:32:11.753Z
 */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap");

:root {
    /* Colors */
    --theme-primary: #ca8a04;
    --theme-accent: #fde047;
    --theme-darker: #0d0b02;
    --theme-muted: #facc15;
    --theme-primary-alpha: #ca8a0440;
    --theme-light: #fefce8;
    --theme-secondary-alpha: #eab30840;
    --theme-secondary: #eab308;
    --theme-text: #fef08a;
    --theme-dark: #1a1505;

    /* Typography */
    --typo-body: 'Source Sans Pro', sans-serif;
    --typo-heading: 'Playfair Display', sans-serif;

    /* Spacing */
    --pad-element: 20px;
    --pad-section: 50px;
    --grid-gap: 20px;

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

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

/*! Base */

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--theme-primary);
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--rounded-full);
    z-index: 10000;
    transition: top 0.25s ease-out;
}

.skip-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-motion {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

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



html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--typo-body);
    background: var(--theme-darker);
    color: var(--theme-light);
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--typo-heading);
    font-weight: 800;
    line-height: 115%;
    color: var(--theme-light);
}

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

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

/* Container */

.wrapper_BYpUd {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-right: 48px;
    padding-bottom: 0;
    padding-left: 48px;
}

/* ==================== HEADER ==================== */

.top-bar_nrUBA {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: solid 0 0 1px 0 rgba(255,255,255,0.08);
    transition: all 0.25s ease-out;
}

.top-bar_nrUBA.scrolled {
    background: rgb(0 0 0 / 80%);
    box-shadow: 0 2px 20px rgb(0 0 0 / 30%);
}

.top-bar_nrUBA .wrapper_BYpUd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.top-bar_nrUBA .logo {
    font-family: var(--typo-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--theme-light);
    letter-spacing: -0.3px;
}

.top-bar_nrUBA .logo span {
    color: var(--theme-primary);
}

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

.nav_SrkIu a {
    font-weight: 500;
    color: var(--theme-muted);
    font-size: 0.875rem;
    transition: color 0.25s ease-out;
}

.nav_SrkIu a:hover {
    color: var(--theme-primary);
}

.top-bar_nrUBA-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */

.btn_FAxBk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    font-family: var(--typo-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.btn_FAxBk--primary {
    background: transparent;
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
    box-shadow: 0 4px 14px var(--theme-primary-alpha);
}

.btn_FAxBk--primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px var(--theme-primary-alpha);
    background: var(--theme-primary);
    color: #FFF;
}

.btn_FAxBk--secondary {
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--theme-light);
}

.btn_FAxBk--secondary:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
}

.btn_FAxBk--large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn_FAxBk--small {
    padding-block: 8px;
    padding-inline: 20px;
    font-size: 13px;
}


.hero_F5wEs {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero_F5wEs::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--theme-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.hero_F5wEs::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--theme-secondary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.hero_F5wEs .wrapper_BYpUd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero_F5wEs-content {
}

.hero_F5wEs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
    padding-right: 16px;
    padding-bottom: 6px;
    padding-left: 16px;
    background: var(--theme-primary-alpha);
    border-width: 1px;
    border-style: solid;
    border-color: var(--theme-primary-alpha);
    border-radius: 999px;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 1.5rem;
}

.hero_F5wEs-badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-primary);
}

.hero_F5wEs-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--theme-light);
}

.hero_F5wEs-content h1 em {
    font-style: normal;
    color: var(--theme-primary);
}

.hero_F5wEs-subtitle {
    font-size: 1.063rem;
    color: var(--theme-muted);
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.7;
}

.hero_F5wEs-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero_F5wEs-image {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_F5wEs-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--rounded-lg);
    box-shadow: var(--box-shadow-elevated);
}

/* ===== Stats Bar ===== */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 0;
    padding-right: 48px;
    padding-bottom: 80px;
    padding-left: 48px;
}

.highlight-item {
    text-align: center;
    padding-block: 32px;
    padding-inline: 16px;
    position: relative;
}

.highlight-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.key-num {
    font-family: var(--typo-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--theme-light);
    letter-spacing: -0.5px;
}

.key-num em {
    font-style: normal;
    color: var(--theme-primary);
}

.highlight-label {
    font-size: 13px;
    color: var(--theme-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 4px;
}

/* -- SECTIONS -- */

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

.block_0HX8t--gray {
    background: rgba(255,255,255,0.035);
}

.block_0HX8t-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.block_0HX8t-head {
    text-align: center;
    margin-bottom: 56px;
}

.block_0HX8t-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.block_0HX8t-head p {
    font-size: 16px;
    color: var(--theme-muted);
    max-width: 480px;
    margin-inline: auto;
}

.block_0HX8t-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.block_0HX8t-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--theme-muted);
    margin-bottom: 3rem;
    max-width: 480px;
    margin-inline: auto;
}

/* --- Cards --- */

.card_7nK2e {
    background: var(--theme-dark);
    border-radius: 16px;
    padding-top: 32px;
    padding-right: 28px;
    padding-bottom: 32px;
    padding-left: 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.08);
    transition: all 0.25s ease-out;
}

.card_7nK2e:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/*! Bonus Cards */

.listing_dyzJr--bonuses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card_7nK2e--bonus {
    position: relative;
    overflow: hidden;
}

.card_7nK2e--bonus::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
}

.bonus-step {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.card_7nK2e--bonus h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-light);
}

.card_7nK2e--bonus p {
    color: var(--theme-muted);
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 16px;
}

.bonus-badge {
    display: inline-block;
    background: var(--theme-primary-alpha);
    color: var(--theme-primary);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- Game Cards — Portrait 3/4 with overlay --- */

.listing_dyzJr--games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.card_7nK2e--game {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: solid rgba(255,255,255,0.08) 1px;
}

.card_7nK2e--game:hover {
    border-color: var(--theme-primary);
    transform: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.game-thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--theme-dark);
    position: relative;
}

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

.card_7nK2e--game:hover .game-thumb img {
    transform: scale(1.07);
}

.card_7nK2e-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding-top: 20px;
    padding-right: 14px;
    padding-bottom: 12px;
    padding-left: 14px;
    background: linear-gradient(transparent, rgb(0 0 0 / 88%));
}

.card_7nK2e-name {
    font-size: 0.813rem;
    font-weight: 600;
    color: #FFF;
    display: block;
}

.card_7nK2e-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

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

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 18px;
    box-shadow: 0 4px 20px var(--theme-primary-alpha);
    transition: transform 0.25s ease-out;
}

.card_7nK2e--game:hover .play-btn {
    transform: translateY(-4px);
}

/* ==================== PROVIDER CARDS — TEXT-ONLY COMPACT ==================== */

.listing_dyzJr--providers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.card_7nK2e--provider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--theme-muted);
    text-align: center;
    background: var(--theme-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rounded-md);
    transition: all 0.25s ease-out;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: none;
}

.card_7nK2e--provider:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
    background: var(--theme-primary-alpha);
    transform: none;
    box-shadow: none;
}

/*
 * Payments Standalone
 */

.payments-card {
    background: var(--theme-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 36px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.pay-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.813rem;
    color: rgb(255 255 255 / 75%);
    font-weight: 500;
    transition: background 0.25s ease-out;
}

.pay-chip:hover {
    background: rgb(255 255 255 / 15%);
}

.payments-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}

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

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

.payments-table tbody tr {
    border: solid 0 0 1px 0 rgba(255,255,255,0.05);
    transition: background 0.25s ease-out;
}

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


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

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

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

.reviewer-avatar {
    width: 48px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFF;
    flex-shrink: 0;
    font-size: 1rem;
}

.reviewer-info strong {
    display: block;
    color: var(--theme-light);
}

.stars {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 2px;
}

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

/** About **/

.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: 28px;
    margin-bottom: 1rem;
    color: var(--theme-light);
}

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

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

.zigzag-image img {
    width: 100%;
    max-width: 380px;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--rounded-lg);
}

/* ===== CTA Blocks — Gradient border card ===== */

.block_0HX8t--cta {
    text-align: center;
    padding: var(--pad-section) 0;
}

.cta-card {
    background: linear-gradient(var(--theme-dark), var(--theme-dark)) padding-box, linear-gradient(135deg, var(--theme-primary), var(--theme-secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    padding-block: 60px;
    padding-inline: 48px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--theme-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--theme-light);
    margin-bottom: 16px;
    position: relative;
}

.cta-card h2 em {
    font-style: normal;
    color: var(--theme-primary);
}

.cta-card p {
    font-size: 18px;
    color: var(--theme-muted);
    margin-bottom: 32px;
    position: relative;
}

.cta-card .btn_FAxBk--primary {
    position: relative;
}


.section-content {
    margin-top: 48px;
    padding: 36px;
    background: var(--theme-dark);
    border-radius: var(--rounded-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.section-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--theme-light);
}

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

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

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

.seo-content {
    max-width: 920px;
    margin-inline: auto;
}

.seo-content h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--theme-light);
}

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

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

/*
 * FAQ
 */

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

.faq-item {
    border: solid 0 0 1px 0 rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    padding-block: 22px;
    padding-inline: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-light);
    text-align: left;
    transition: color 0.25s ease-out;
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--theme-primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: transform 0.25s ease-out;
}

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

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

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

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

/** Info Table **/

.info-table {
    width: 100%;
    max-width: 850px;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 0px;
    background: var(--theme-dark);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

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

.info-table tr:last-child {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background: rgb(255 255 255 / 2%);
}

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

.info-table th {
    width: 40%;
    font-weight: 600;
    color: var(--theme-primary);
    background: rgba(255,255,255,0.03);
}

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


.cta-bottom {
    text-align: center;
    padding-block: 100px;
    padding-inline: 48px;
    background: linear-gradient(var(--theme-dark), var(--theme-dark)) padding-box, linear-gradient(135deg, var(--theme-primary), var(--theme-secondary)) border-box;
    border: 1px solid transparent;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, var(--theme-primary-alpha) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bottom h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    position: relative;
}

.cta-bottom h2 em {
    font-style: normal;
    color: var(--theme-primary);
}

.cta-bottom p {
    color: var(--theme-muted);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
}

/** Footer — 4 columns **/

.end-section_bD8mN {
    background: var(--theme-darker);
    padding-top: 60px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.end-section_bD8mN-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 48px;
}

.end-section_bD8mN-col h4 {
    font-size: 13px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.end-section_bD8mN-col p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 14px;
}

.end-section_bD8mN-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.end-section_bD8mN-nav a {
    color: rgb(255 255 255 / 60%);
    font-size: 0.875rem;
}

.end-section_bD8mN-nav a:hover {
    color: var(--theme-light);
}

.badge-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-strip img {
    height: 28px;
    width: auto;
    filter: brightness(0.6) contrast(0.8);
    transition: all 0.25s ease-out;
}

.badge-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.responsible-logos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.responsible-logos a {
    display: block;
    transition: all 0.25s ease-out;
}

.responsible-logos a:hover {
    transform: translateY(-4px);
}

.responsible-logos img {
    height: 28px;
    width: auto;
    opacity: 0.4;
    transition: all 0.25s ease-out;
}

.responsible-logos a:hover img {
    filter: brightness(1) contrast(1);
    opacity: 1;
}

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

.end-section_bD8mN-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.end-section_bD8mN-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.6em;
}

/* Hamburger */

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

.mobile-nav-btn span {
    width: 24px;
    height: 2px;
    background: var(--theme-light);
    transition: all 0.25s ease-out;
    border-radius: 2px;
}

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

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

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

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

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

@media (max-width: 63.9375rem) {
    .hero_F5wEs .wrapper_BYpUd {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero_F5wEs-content { order: 1; }
    .hero_F5wEs-image { order: 2; max-width: 380px; margin: 0 auto; }
    .hero_F5wEs-subtitle { margin-left: auto; margin-right: auto; }
    .hero_F5wEs-ctas { justify-content: center; }

    .wrapper_BYpUd { padding-left: 32px; padding-right: 32px; }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 32px;
        padding-right: 32px;
    }

    .listing_dyzJr--bonuses { grid-template-columns: 1fr; }
    .listing_dyzJr--games { grid-template-columns: repeat(4, 1fr); }
    .listing_dyzJr--providers { grid-template-columns: repeat(5, 1fr); }
    .listing_dyzJr--reviews { grid-template-columns: repeat(2, 1fr); }

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

    .cta-bottom {
        padding-left: 32px;
        padding-right: 32px;
    }

    .end-section_bD8mN-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* Responsive - Mobile */

@media (max-width: 767px) {
    .top-bar_nrUBA .wrapper_BYpUd {
        height: auto;
        padding: 12px 20px;
        gap: 10px;
    }

    .logo {
        display: none;
    }

    .logo-mobile {
        display: block;
        font-family: var(--typo-heading);
        font-size: 1.063rem;
        font-weight: 800;
        color: var(--theme-light);
        text-decoration: none;
        white-space: nowrap;
    }

    .logo-mobile span {
        color: var(--theme-primary);
    }

    .mobile-cta {
        display: block;
        flex: 1;
        max-width: 160px;
        padding: 9px 16px;
        background: var(--theme-primary);
        color: #FFF;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 999px;
        box-shadow: 0 4px 14px var(--theme-primary-alpha);
    }

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

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

    .nav_SrkIu {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: var(--theme-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.25s ease-out;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
        border-left: 2px solid var(--theme-primary);
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .nav_SrkIu.active {
        right: 0;
    }

    .nav_SrkIu a {
        font-size: 1.125rem;
        padding: 0.8rem 0px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: var(--theme-light);
    }

    .hero_F5wEs { padding-top: 48px; padding-bottom: 32px; }
    .hero_F5wEs-image { max-width: 340px; }
    .hero_F5wEs-content h1 { font-size: 2rem; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 48px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .block_0HX8t { padding: 60px 0; }
    .wrapper_BYpUd { padding: 0 20px; }
    .block_0HX8t-title { font-size: 1.75rem; }
    .block_0HX8t-head h2 { font-size: 1.75rem; }
    .cta-bottom { padding: 60px 20px; border-radius: 12px; }
    .cta-card { padding: 40px 24px; border-radius: 14px; }

    .listing_dyzJr--bonuses { grid-template-columns: 1fr; }
    .listing_dyzJr--games { grid-template-columns: repeat(3, 1fr); }
    .listing_dyzJr--providers { grid-template-columns: repeat(4, 1fr); }
    .listing_dyzJr--reviews { grid-template-columns: 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;
    }

    .payments-card { padding: 28px 24px; border-radius: 14px; }

    .card_7nK2e { padding: 24px 20px; }
    .card_7nK2e--review { padding: 20px; }

    .section-content { padding: 24px 20px; }

    .info-table th,
    .info-table td { padding: 14px 16px; }

    .end-section_bD8mN-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 481px) {
    .wrapper_BYpUd { padding: 0 16px; }
    .hero_F5wEs-ctas { flex-direction: column; }
    .hero_F5wEs-ctas .btn_FAxBk { width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .listing_dyzJr--games { grid-template-columns: repeat(2, 1fr); }
    .listing_dyzJr--providers { grid-template-columns: repeat(3, 1fr); }

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

    .cta-bottom { padding: 48px 16px; }
    .cta-bottom h2 { font-size: 1.75rem; }
    .cta-card { padding: 36px 20px; }

    .card_7nK2e { padding: 20px 16px; }
    .section-content { padding: 20px 16px; }

    .info-table th,
    .info-table td { padding: 12px 14px; }

    .info-table th { width: 45%; }
}