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

:root {
    /* ── Backgrounds ── */
    --bg-deep:        #04080f;
    --bg-card:        #0a1120;
    --bg-glass:       rgba(8, 15, 32, 0.85);
    --glass-border:   rgba(0, 194, 255, 0.14);

    /* ── Brand: cyan ── */
    --cyan:           #00c2ff;
    --cyan-dim:       #0086b3;
    --cyan-bright:    #40d4ff;
    --cyan-ultra:     #99e8ff;

    /* ── Accent: violet ── */
    --violet:         #8b5cf6;
    --violet-dim:     #6d28d9;
    --violet-bright:  #a78bfa;

    /* ── Warm highlights ── */
    --ice:            #d0f0ff;
    --steel:          #7ea8c4;

    /* ── Text ── */
    --text-primary:   #e8f0f8;
    --text-muted:     #7a94ad;

    /* ── Glows ── */
    --glow-cyan:      0 0 22px rgba(0,194,255,0.40), 0 0 44px rgba(0,194,255,0.15);
    --glow-cyan-btn:  0 0 16px rgba(64,212,255,0.40), 0 4px 14px rgba(0,0,0,0.35);
    --glow-violet:    0 0 18px rgba(139,92,246,0.40);
    --glow-soft:      0 0 20px rgba(0,194,255,0.22);

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

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

/* Deep space gradient background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(0, 194, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 92% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 35% 30% at 8% 85%, rgba(0, 134, 179, 0.04) 0%, transparent 55%),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 44px,
            rgba(0, 194, 255, 0.008) 44px,
            rgba(0, 194, 255, 0.008) 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: 'Playfair Display', Georgia, serif;
    letter-spacing: 0.01em;
}

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(0, 194, 255, 0.25);
}

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

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

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.header {
    background: rgba(4, 8, 15, 0.94);
    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: 'Playfair Display', 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(0, 194, 255, 0.35);
    transition: opacity 0.2s, text-shadow 0.2s;
}

.logo:hover {
    opacity: 0.85;
    text-shadow: 0 0 28px rgba(64, 212, 255, 0.55);
}

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

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

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
@keyframes btn-pulse-gold {
    0%, 100% { box-shadow: 0 0 16px rgba(0,194,255,0.40), 0 4px 14px rgba(0,0,0,0.35); }
    50%       { box-shadow: 0 0 32px rgba(64,212,255,0.70), 0 0 56px rgba(0,194,255,0.20), 0 4px 14px rgba(0,0,0,0.35); }
}

.btn {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-dim) 100%);
    color: #031018;
    padding: 0.7rem 1.4rem;
    border: none;
    border-radius: var(--radius-btn);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-cyan-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(64,212,255,0.55), 0 6px 22px rgba(0,0,0,0.4);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--cyan-bright);
    border: 1px solid rgba(0, 194, 255, 0.35);
    box-shadow: none;
    animation: none;
}

.btn-secondary:hover {
    background: rgba(0, 194, 255, 0.08);
    border-color: rgba(64, 212, 255, 0.6);
    box-shadow: 0 0 18px rgba(0, 194, 255, 0.18);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 0.9rem 1.9rem;
    font-size: 0.97rem;
    background: linear-gradient(135deg, var(--cyan-ultra) 0%, var(--cyan) 50%, var(--cyan-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(--cyan-bright);
    background: rgba(0, 194, 255, 0.08);
}

/* ─────────────────────────────────────────────
   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: var(--bg-deep);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.hero::before { display: none; }
.hero::after  { display: none; }

.hero-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 420px;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,194,255,0.08);
    border: 1px solid rgba(0, 194, 255, 0.22);
    color: var(--cyan-bright);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.hero-code {
    color: var(--cyan-bright);
    background: rgba(0, 194, 255, 0.1);
    padding: 0.12em 0.5em;
    border-radius: 4px;
    border: 1px solid rgba(0, 194, 255, 0.22);
    font-size: 0.9em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero-desc {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.5rem;
}

.hero-trust li {
    color: var(--text-muted);
    font-size: 0.76rem;
    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.76em;
    color: var(--cyan);
}

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

.bonus-amount .fill {
    -webkit-text-fill-color: initial;
    color: var(--cyan-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(0, 194, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.4rem 1.35rem;
    border-radius: var(--radius-card);
    border-left: 3px solid var(--cyan-dim);
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
}

.card:hover {
    border-left-color: var(--cyan-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(0,194,255,0.10);
    transform: translateY(-3px);
    background: rgba(0, 194, 255, 0.05);
}

.card h3 {
    color: var(--ice);
    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 — cyan accents */
.card-bonus {
    border-left-color: var(--cyan);
}

.card-bonus:hover {
    border-left-color: var(--cyan-ultra);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(64,212,255,0.10);
    background: rgba(0, 194, 255, 0.05);
}

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

/* Trust cards — violet left border */
.card-trust { border-left-color: var(--violet); }
.card-trust:hover {
    border-left-color: var(--violet-bright);
    box-shadow: 0 0 26px rgba(0,0,0,0.32), 0 0 16px rgba(139,92,246,0.12);
    background: rgba(139, 92, 246, 0.04);
}
.card-trust h3 { color: var(--ice); }

/* ─────────────────────────────────────────────
   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(0, 194, 255, 0.10);
    background: rgba(8, 15, 32, 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(0,194,255,0.20);
    border-color: rgba(64, 212, 255, 0.40);
}

.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(4,8,15,0.92) 0%, rgba(4,8,15,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(--cyan-ultra), var(--cyan-dim));
    color: #031018;
    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: 'Inter', 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(4, 8, 15, 0.65);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', 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(0, 194, 255, 0.02);
    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(0,194,255,0.35));
}

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

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

table th {
    background: rgba(0, 194, 255, 0.08);
    color: var(--text-primary);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
    font-family: 'Inter', 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(0, 194, 255, 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: 'Inter', sans-serif;
}

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

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid rgba(0, 194, 255, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    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(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.35);
    color: var(--violet-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(4, 10, 22, 0.94) 0%, rgba(10, 20, 42, 0.85) 100%);
    border-color: rgba(0, 194, 255, 0.18);
    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(0,194,255,0.07) 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(139,92,246,0.04) 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(--cyan);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.anchors-block a:hover { color: var(--cyan-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(--cyan);
    font-size: 0.82rem;
}

/* ─────────────────────────────────────────────
   MISC
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   FEATURE BAR
───────────────────────────────────────────── */
.feature-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(6, 14, 30, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    transition: background 0.22s;
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-item:hover {
    background: rgba(0, 194, 255, 0.04);
}

.feature-bar-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid rgba(0, 194, 255, 0.18);
    flex-shrink: 0;
}

.feature-bar-icon svg {
    width: 18px;
    height: 18px;
    color: var(--cyan-bright);
}

.feature-bar-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.feature-bar-label {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.35;
    max-width: 140px;
}

/* ─────────────────────────────────────────────
   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(2, 4, 8, 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(0,194,255,0.30));
    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: 'Inter', sans-serif;
}

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

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

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

    .hero-content {
        padding: 1.25rem 1.25rem 1.75rem;
    }

    .hero-image-wrap {
        max-height: 280px;
    }

    .feature-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bar-item:nth-child(2) {
        border-right: none;
    }

    .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; }
    .feature-bar { grid-template-columns: repeat(2, 1fr); }
    .feature-bar-item:nth-child(2) { border-right: none; }
    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; }
}
