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

:root {
    /* ── Backgrounds ── */
    --bg-deep:        #07040200;
    --bg-deep:        #080503;
    --bg-card:        #0f0904;
    --bg-glass:       rgba(14, 9, 4, 0.82);
    --glass-border:   rgba(195, 148, 40, 0.18);

    /* ── Brand: gold ── */
    --gold:           #c9932a;
    --gold-dim:       #9a6e1a;
    --gold-bright:    #f0c040;
    --gold-ultra:     #fad97a;

    /* ── Accent: crimson ── */
    --crimson:        #b91c1c;
    --crimson-dim:    #7f1d1d;
    --crimson-bright: #ef4444;

    /* ── Warm highlights ── */
    --cream:          #f0d48a;
    --bronze:         #cd7f32;

    /* ── Text ── */
    --text-primary:   #f5e6c8;
    --text-muted:     #9a8060;

    /* ── Glows ── */
    --glow-gold:      0 0 22px rgba(201,147,42,0.50), 0 0 44px rgba(201,147,42,0.20);
    --glow-gold-btn:  0 0 16px rgba(240,192,64,0.45), 0 4px 14px rgba(0,0,0,0.35);
    --glow-crimson:   0 0 18px rgba(185,28,28,0.45);
    --glow-warm:      0 0 20px rgba(240,192,64,0.28);

    /* ── Misc ── */
    --radius-card:    16px;
    --radius-btn:     10px;
}

/* ─────────────────────────────────────────────
   BASE
───────────────────────────────────────────── */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Warm bokeh background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(201, 147, 42, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 92% 75%, rgba(185, 28, 28, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 35% 30% at 8% 85%, rgba(205, 127, 50, 0.04) 0%, transparent 55%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 44px,
            rgba(201, 147, 42, 0.01) 44px,
            rgba(201, 147, 42, 0.01) 45px
        );
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2 {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(1.45rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(201, 147, 42, 0.3);
}

h2 {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--gold-bright);
    text-shadow: var(--glow-warm);
    line-height: 1.3;
}

h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.97rem, 2vw, 1.1rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--cream);
    line-height: 1.4;
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.header {
    background: rgba(8, 5, 3, 0.92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.06em;
    font-weight: 900;
    font-size: 1.55rem;
    line-height: 1;
    text-decoration: none;
    color: var(--text-primary);
    text-shadow: 0 0 18px rgba(201, 147, 42, 0.4);
    transition: opacity 0.2s, text-shadow 0.2s;
}

.logo:hover {
    opacity: 0.85;
    text-shadow: 0 0 28px rgba(240, 192, 64, 0.6);
}

.text-yellow { color: var(--gold-bright); }

.header-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
@keyframes btn-pulse-gold {
    0%, 100% { box-shadow: 0 0 16px rgba(201,147,42,0.50), 0 4px 14px rgba(0,0,0,0.35); }
    50%       { box-shadow: 0 0 32px rgba(240,192,64,0.80), 0 0 56px rgba(201,147,42,0.25), 0 4px 14px rgba(0,0,0,0.35); }
}

.btn {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-dim) 100%);
    color: #1a0e02;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius-btn);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-gold-btn);
    transition: transform 0.22s, box-shadow 0.22s;
    animation: btn-pulse-gold 2.4s ease-in-out infinite;
    letter-spacing: 0.01em;
}

.btn:hover {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 0 40px rgba(240,192,64,0.65), 0 6px 22px rgba(0,0,0,0.4);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--gold-bright);
    border: 1px solid rgba(201, 147, 42, 0.45);
    box-shadow: none;
    animation: none;
}

.btn-secondary:hover {
    background: rgba(201, 147, 42, 0.1);
    border-color: rgba(240, 192, 64, 0.7);
    box-shadow: 0 0 18px rgba(201, 147, 42, 0.2);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 0.9rem 1.9rem;
    font-size: 0.97rem;
    background: linear-gradient(135deg, var(--gold-ultra) 0%, var(--gold) 50%, var(--gold-dim) 100%);
    letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.38rem 0.6rem;
    border-radius: 8px;
    line-height: 1;
}

.nav-menu {
    display: none;
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.nav-menu.active { display: block; }

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.42rem 0.85rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--gold-bright);
    background: rgba(201, 147, 42, 0.1);
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.section {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    margin: 1.75rem auto;
    max-width: 1020px;
    animation: fadeUp 0.45s ease-out both;
}

.section-header { margin-bottom: 1.5rem; }

.section-lead {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-top: 0.3rem;
}

.section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, rgba(10, 6, 2, 0.96) 0%, rgba(18, 10, 4, 0.88) 100%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 147, 42, 0.22);
    border-radius: 22px;
    padding: 2.75rem;
    margin: 1.75rem auto;
    max-width: 1020px;
    position: relative;
    overflow: hidden;
}

/* warm gold glow blobs */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -15%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,147,42,0.09) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 50%;
    height: 170%;
    background: radial-gradient(ellipse, rgba(185,28,28,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201,147,42,0.2), rgba(201,147,42,0.06));
    border: 1px solid rgba(240, 192, 64, 0.38);
    color: var(--gold-bright);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(240,192,64,0.4);
}

.hero-sub {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0.25rem;
}

.hero-code {
    color: var(--gold-bright);
    background: rgba(201, 147, 42, 0.12);
    padding: 0.1em 0.45em;
    border-radius: 5px;
    border: 1px solid rgba(201, 147, 42, 0.3);
    font-size: 0.95em;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.75rem 0 1.5rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.3rem;
}

.hero-trust li {
    color: var(--gold);
    font-size: 0.81rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding-left: 1.1em;
    position: relative;
}

.hero-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 0.8em;
    color: var(--gold-bright);
}

.hero-image-wrap {
    flex-shrink: 0;
    max-width: 420px;
    width: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(201,147,42,0.22), 0 0 24px rgba(185,28,28,0.12), 0 14px 48px rgba(0,0,0,0.65);
    border: 1px solid rgba(201, 147, 42, 0.2);
    display: block;
}

.bonus-amount {
    font-family: 'Cinzel', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-ultra), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
    filter: drop-shadow(0 0 18px rgba(201,147,42,0.55));
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.bonus-amount .fill {
    -webkit-text-fill-color: initial;
    color: var(--gold-bright);
}

/* ─────────────────────────────────────────────
   GRIDS
───────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 1.1rem;
    margin: 1.25rem 0;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.card {
    background: rgba(201, 147, 42, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.4rem 1.35rem;
    border-radius: var(--radius-card);
    border-left: 3px solid var(--gold-dim);
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
}

.card:hover {
    border-left-color: var(--gold-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(201,147,42,0.12);
    transform: translateY(-3px);
    background: rgba(201, 147, 42, 0.06);
}

.card h3 {
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-size: 1.02rem;
}

.card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
}

/* Bonus cards — gold accents */
.card-bonus {
    border-left-color: var(--gold);
}

.card-bonus:hover {
    border-left-color: var(--gold-ultra);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(240,192,64,0.12);
    background: rgba(201, 147, 42, 0.06);
}

.card-bonus h3 { color: var(--gold-bright); }

/* Trust cards — crimson left border */
.card-trust { border-left-color: var(--crimson); }
.card-trust:hover {
    border-left-color: var(--crimson-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(185,28,28,0.12);
    background: rgba(185, 28, 28, 0.04);
}
.card-trust h3 { color: var(--cream); }

/* ─────────────────────────────────────────────
   SLOTS GRID
───────────────────────────────────────────── */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.75rem;
}

.slot-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(201, 147, 42, 0.12);
    background: rgba(15, 9, 4, 0.85);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.slot-card:hover {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 24px rgba(201,147,42,0.25);
    border-color: rgba(240, 192, 64, 0.45);
}

.slot-img-wrap {
    position: relative;
    overflow: hidden;
}

.slot-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.slot-card:hover .slot-img-wrap img {
    transform: scale(1.07);
}

.slot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,4,2,0.92) 0%, rgba(8,4,2,0.2) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.65rem;
    opacity: 0;
    transition: opacity 0.25s;
}

.slot-card:hover .slot-overlay { opacity: 1; }

.slot-overlay span {
    background: linear-gradient(135deg, var(--gold-ultra), var(--gold-dim));
    color: #150900;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.28rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.slot-name {
    display: block;
    padding: 0.55rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    background: rgba(8, 4, 2, 0.65);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────
   SECTION BUTTONS
───────────────────────────────────────────── */
.section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.section-buttons .btn {
    font-size: 0.88rem;
    padding: 0.65rem 1.3rem;
}

/* ─────────────────────────────────────────────
   PAYMENT ICONS
───────────────────────────────────────────── */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    padding: 1.35rem;
    background: rgba(201, 147, 42, 0.025);
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.payment-icons img {
    height: 34px;
    max-width: 68px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.22s, transform 0.22s, filter 0.22s;
    filter: grayscale(25%) brightness(0.9);
}

.payment-icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: grayscale(0%) brightness(1.15) drop-shadow(0 0 6px rgba(201,147,42,0.4));
}

/* ─────────────────────────────────────────────
   TABLE
───────────────────────────────────────────── */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 9, 4, 0.55);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table th {
    background: rgba(201, 147, 42, 0.1);
    color: var(--text-primary);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
    font-family: 'DM Sans', sans-serif;
}

table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

table tr:last-child td { border-bottom: none; }
table tbody tr:hover { background: rgba(201, 147, 42, 0.03); }
table td:first-child { color: var(--text-primary); font-weight: 600; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.1rem 0;
}

.faq-item:first-of-type { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-question {
    color: var(--text-primary);
    font-size: 0.99rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.2s;
    user-select: none;
    font-family: 'DM Sans', sans-serif;
}

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

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: rgba(201, 147, 42, 0.1);
    border: 1px solid rgba(201, 147, 42, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 900;
    line-height: 26px;
    text-align: center;
    transition: background 0.2s, transform 0.25s, border-color 0.2s;
}

.faq-question.active::after {
    content: '−';
    background: rgba(185, 28, 28, 0.14);
    border-color: rgba(185, 28, 28, 0.4);
    color: var(--crimson-bright);
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.75;
    display: none;
    font-size: 0.93rem;
    padding-top: 0.85rem;
}

.faq-answer.active { display: block; }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.section-cta {
    text-align: center;
    background: linear-gradient(140deg, rgba(12, 7, 2, 0.94) 0%, rgba(20, 11, 4, 0.85) 100%);
    border-color: rgba(201, 147, 42, 0.22);
    padding: 2.75rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 55% at 50% 105%, rgba(201,147,42,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.section-cta::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 45%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(185,28,28,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.35rem, 3.2vw, 1.95rem);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 0.97rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────
   SEO CONTENT
───────────────────────────────────────────── */
.anchors-block {
    margin-bottom: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.anchors-block a {
    color: var(--gold);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.anchors-block a:hover { color: var(--gold-bright); text-decoration: underline; }

.seo-content ul {
    margin: 0.75rem 0 1.25rem 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.seo-content ul li {
    color: var(--text-muted);
    font-size: 0.93rem;
    padding-left: 1.1rem;
    position: relative;
}

.seo-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.82rem;
}

/* ─────────────────────────────────────────────
   MISC
───────────────────────────────────────────── */
.disclaimer-text {
    color: var(--text-muted);
    font-size: 0.81rem;
    margin-top: 1rem;
    opacity: 0.7;
    line-height: 1.55;
}

.feature-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-with-image .feature-content { flex: 1; min-width: 260px; }
.feature-with-image .feature-img-wrap { flex-shrink: 0; max-width: 320px; }

.feature-with-image .feature-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
    background: rgba(4, 2, 1, 0.98);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 20px;
    margin-top: 2rem;
    text-align: center;
}

.footer-payments {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-payments-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-payments .payment-icons {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    gap: 0.9rem;
}

.footer-payments .payment-icons img {
    height: 28px;
    max-width: 58px;
    opacity: 0.5;
    filter: grayscale(40%) brightness(0.85);
}

.footer-payments .payment-icons img:hover {
    opacity: 0.9;
    filter: grayscale(0%) brightness(1.1) drop-shadow(0 0 5px rgba(201,147,42,0.35));
    transform: translateY(-1px);
}

.footer-note {
    font-size: 0.83rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    font-family: 'DM Sans', sans-serif;
}

.footer-note strong { color: var(--gold); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 14px; }

    .section {
        padding: 1.5rem;
        margin: 1.25rem auto;
    }

    .hero { padding: 1.75rem 1.5rem; }

    .hero-inner {
        flex-direction: column;
        gap: 1.75rem;
    }

    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-trust  { justify-content: center; }
    .hero-image-wrap { max-width: 100%; }

    .mobile-menu-toggle { display: block; }

    .header-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .header-btns .btn {
        width: 100%;
        text-align: center;
    }

    table { font-size: 0.8rem; }
    table th, table td { padding: 0.65rem 0.5rem; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .section-buttons { flex-direction: column; align-items: stretch; }
    .section-buttons .btn { width: 100%; text-align: center; }

    .feature-with-image { flex-direction: column; gap: 1rem; }
    .feature-with-image .feature-img-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
    .section { padding: 1.25rem; }
    .hero { padding: 1.35rem; }
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.15rem; }
    h3 { font-size: 0.97rem; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-amount { font-size: 1.55rem; }
}
