﻿/* ═══════════════════════════════════════════════════════
   GATES OF OLYMPUS SUPER SCATTER MX — Design System
   Theme: Ancient Greece — purple / gold / electric blue
   Domain: gates-of-olympus-super-scatter.com.mx
   © 2026 | Desarrollado por deportech-mexico.com.mx
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Nunito:wght@400;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
    --bg: #0A0518;
    --bg2: #0F0820;
    --panel: #160A2A;
    --card: #1C0D35;
    --border: rgba(212, 175, 55, .2);
    --gold: #D4AF37;
    --gold2: #FFD700;
    --gold3: #FFA500;
    --purple: #7B2FBE;
    --purple2: #9B59B6;
    --electric: #4FC3F7;
    --violet: #5B0EA6;
    --white: #FFFFFF;
    --muted: rgba(255, 255, 255, .65);
    --faint: rgba(255, 255, 255, .07);
    --radius: 14px;
    --shadow: 0 8px 40px rgba(0, 0, 0, .6);
    --glow-gold: 0 0 30px rgba(212, 175, 55, .5);
    --glow-purple: 0 0 30px rgba(123, 47, 190, .5);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 15% 50%, rgba(123, 47, 190, .12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(212, 175, 55, .07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(91, 14, 166, .1) 0%, transparent 60%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: .15s;
}

a:hover {
    color: var(--electric);
}

ul {
    list-style: none;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.skip-link:focus {
    left: 12px;
}

/* ── TOPBAR ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 5, 24, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
    position: relative;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .5px;
}

.topbar-logo:hover {
    color: var(--gold2);
}

.topbar-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: var(--glow-gold);
}

.topbar-logo .sup {
    color: var(--electric);
    font-size: .65em;
    vertical-align: super;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    transition: all .17s;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(212, 175, 55, .12);
    color: var(--gold2);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--violet)) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    box-shadow: 0 3px 14px rgba(123, 47, 190, .5);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(123, 47, 190, .7) !important;
    color: #fff !important;
}

/* ── BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    z-index: 200;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .2s;
}

.burger-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .25s ease;
    pointer-events: none;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 90;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: .15s;
}

a:hover {
    color: var(--electric);
}

ul {
    list-style: none;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.skip-link:focus {
    left: 12px;
}

/* ── TOPBAR ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 5, 24, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
    position: relative;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .5px;
}

.topbar-logo:hover {
    color: var(--gold2);
}

.topbar-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: var(--glow-gold);
}

.topbar-logo .sup {
    color: var(--electric);
    font-size: .65em;
    vertical-align: super;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    transition: all .17s;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(212, 175, 55, .12);
    color: var(--gold2);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--violet)) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    box-shadow: 0 3px 14px rgba(123, 47, 190, .5);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(123, 47, 190, .7) !important;
    color: #fff !important;
}

/* ── BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    z-index: 200;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .2s;
}

.burger-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .25s ease;
    pointer-events: none;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 90;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:900px) {
    .burger-btn {
        display: flex;
    }

    /* ── MOBILE DROPDOWN: скрыт по умолчанию ── */
    /* -- MOBILE DROPDOWN: скрыт по умолчанию -- */
    .nav-links {
        display: none;
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
        gap: 0;
        z-index: 9999;
        background: rgba(8, 4, 20, .98);
        border-top: 2px solid rgba(212, 175, 55, .3);
        border-bottom: 0;
        box-shadow: 0 20px 60px rgba(0,0,0,.9);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        overflow: hidden;
    }

    /* .open добавляется JS-ом */
    .nav-links.open {
        display: flex !important;
    }

    /* Каждый пункт */
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* Ссылки — полная ширина, вертикально */
    .nav-links a {
        display: flex !important;
        width: 100% !important;
        align-items: center;
        padding: 16px 24px !important;
        min-height: 54px;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: rgba(255,255,255,.88) !important;
        border-radius: 0 !important;
        background: none !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: background .15s, color .15s, padding-left .15s;
        position: relative;
        text-decoration: none;
        white-space: normal;
    }

    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a.active {
        background: rgba(212,175,55,.1) !important;
        color: var(--gold2) !important;
        padding-left: 32px !important;
    }

    /* CTA Demo */
    .nav-cta {
        margin: 10px 16px 14px !important;
        padding: 14px 24px !important;
        border-radius: 12px !important;
        justify-content: center !important;
        background: linear-gradient(135deg,var(--purple),var(--violet)) !important;
        color: #fff !important;
        min-height: 48px !important;
    }

    .nav-cta::before { display: none !important; }
}

    .breadcrumb-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .78rem;
        color: var(--muted);
    }

    .breadcrumb-inner a {
        color: var(--gold);
    }

    .breadcrumb-inner span {
        color: rgba(212, 175, 55, .4);
    }

    .breadcrumb-current {
        color: var(--white);
        font-weight: 700;
    }

    /* ── HERO ── */
    .hero {
        position: relative;
        overflow: hidden;
        min-height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(ellipse at 50% 60%, rgba(123, 47, 190, .3) 0%, rgba(10, 5, 24, 0) 70%);
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url('../images/hero.png') center/cover no-repeat;
        opacity: .35;
        filter: saturate(1.2);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(10, 5, 24, .2) 0%, rgba(10, 5, 24, .7) 80%, var(--bg) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 60px 24px 40px;
        max-width: 900px;
    }

    .hero-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--purple), var(--violet));
        color: #fff;
        padding: 4px 14px;
        border-radius: 20px;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 16px;
        box-shadow: var(--glow-purple);
    }

    .hero h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.8rem, 5vw, 3.2rem);
        font-weight: 900;
        line-height: 1.15;
        margin-bottom: 14px;
        background: linear-gradient(135deg, var(--gold2), var(--gold), #fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        letter-spacing: .5px;
    }

    .hero-sub {
        font-size: clamp(.9rem, 2.2vw, 1.15rem);
        color: rgba(255, 255, 255, .72);
        margin-bottom: 28px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* ── BUTTONS ── */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--gold), var(--gold3));
        color: #0A0518;
        font-weight: 800;
        padding: 12px 26px;
        border-radius: 12px;
        font-size: .95rem;
        cursor: pointer;
        border: none;
        transition: all .2s;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(212, 175, 55, .4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        color: #0A0518;
        box-shadow: 0 8px 32px rgba(212, 175, 55, .6);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(123, 47, 190, .2);
        color: var(--gold);
        font-weight: 700;
        padding: 12px 26px;
        border-radius: 12px;
        font-size: .95rem;
        cursor: pointer;
        text-decoration: none;
        border: 2px solid rgba(212, 175, 55, .3);
        transition: all .2s;
    }

    .btn-secondary:hover {
        background: rgba(123, 47, 190, .35);
        color: var(--gold2);
        border-color: var(--gold);
        transform: translateY(-1px);
    }

    /* ── SECTION COMMONS ── */
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.3rem, 3vw, 1.9rem);
        font-weight: 700;
        color: var(--gold2);
        margin-bottom: 8px;
        letter-spacing: .5px;
    }

    .section-sub {
        color: var(--muted);
        font-size: .9rem;
        margin-bottom: 32px;
    }

    /* ── STAT CARDS (HERO STATS) ── */
    .stats-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
        margin-top: 32px;
    }

    .stat-card {
        background: rgba(212, 175, 55, .06);
        border: 1px solid rgba(212, 175, 55, .15);
        border-radius: 14px;
        padding: 18px 14px;
        text-align: center;
        transition: all .2s;
    }

    .stat-card:hover {
        border-color: rgba(212, 175, 55, .35);
        background: rgba(212, 175, 55, .1);
    }

    .stat-value {
        font-family: 'Cinzel', serif;
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--gold2);
        line-height: 1.1;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: .7rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ── CARD GRID ── */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
    }

    .card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 22px;
        transition: all .2s;
        position: relative;
        overflow: hidden;
    }

    .card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, .04) 0%, transparent 60%);
        pointer-events: none;
    }

    .card:hover {
        border-color: rgba(212, 175, 55, .4);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .card h3 {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        color: var(--gold2);
        margin-bottom: 8px;
    }

    .card p {
        font-size: .85rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* ── SYMBOLS TABLE ── */
    .symbols-section {
        background: var(--bg2);
    }

    .symbols-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }

    .sym-card {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: all .2s;
    }

    .sym-card:hover {
        border-color: rgba(212, 175, 55, .5);
        background: rgba(212, 175, 55, .05);
    }

    .sym-emoji {
        font-size: 2.4rem;
        min-width: 48px;
        text-align: center;
    }

    .sym-info h4 {
        font-family: 'Cinzel', serif;
        font-size: .9rem;
        color: var(--gold);
        margin-bottom: 4px;
    }

    .sym-info p {
        font-size: .78rem;
        color: var(--muted);
    }

    .sym-mult {
        margin-left: auto;
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--gold2);
        background: rgba(212, 175, 55, .1);
        border: 1px solid rgba(212, 175, 55, .2);
        padding: 4px 10px;
        border-radius: 8px;
        white-space: nowrap;
    }

    /* ── PAY TABLE ── */
    .paytable-wrap {
        overflow-x: auto;
        border-radius: 12px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        font-size: .85rem;
    }

    table caption {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        color: var(--gold2);
        padding-bottom: 12px;
        text-align: left;
        font-weight: 700;
    }

    thead th {
        background: rgba(212, 175, 55, .1);
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-size: .75rem;
        letter-spacing: .8px;
        text-transform: uppercase;
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid var(--border);
    }

    tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        transition: background .15s;
    }

    tbody tr:hover {
        background: rgba(212, 175, 55, .05);
    }

    tbody td {
        padding: 11px 16px;
        color: rgba(255, 255, 255, .8);
    }

    tbody td:first-child {
        color: var(--gold2);
        font-weight: 700;
        font-family: 'Cinzel', serif;
        font-size: .82rem;
    }

    .mult-high {
        color: var(--gold2);
        font-weight: 800;
    }

    .mult-mid {
        color: var(--electric);
        font-weight: 700;
    }

    .mult-low {
        color: var(--muted);
    }

    /* ── RTP / INFO PANELS ── */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .info-panel {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
    }

    .info-panel h3 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        font-size: .85rem;
    }

    .info-row:last-child {
        border-bottom: none;
    }

    .info-row .lbl {
        color: var(--muted);
    }

    .info-row .val {
        color: var(--gold2);
        font-weight: 700;
        font-family: 'Cinzel', serif;
    }

    /* ── DIAGRAM / BAR CHART ── */
    .chart-wrap {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
    }

    .chart-title {
        font-family: 'Cinzel', serif;
        font-size: .95rem;
        color: var(--gold);
        margin-bottom: 18px;
    }

    .bar-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .bar-label {
        font-size: .78rem;
        color: var(--muted);
        min-width: 90px;
    }

    .bar-track {
        flex: 1;
        height: 14px;
        background: rgba(255, 255, 255, .06);
        border-radius: 99px;
        overflow: hidden;
    }

    .bar-fill {
        height: 100%;
        border-radius: 99px;
        background: linear-gradient(90deg, var(--purple), var(--gold));
        transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
        box-shadow: 0 0 10px rgba(212, 175, 55, .3);
    }

    .bar-pct {
        font-size: .78rem;
        color: var(--gold2);
        font-weight: 700;
        min-width: 42px;
        text-align: right;
    }

    /* ── SCATTER CALLOUT ── */
    .scatter-box {
        background: linear-gradient(135deg, rgba(123, 47, 190, .2), rgba(212, 175, 55, .08));
        border: 2px solid rgba(212, 175, 55, .3);
        border-radius: 16px;
        padding: 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .scatter-box::before {
        content: '⚡';
        position: absolute;
        font-size: 8rem;
        opacity: .05;
        top: -10px;
        right: -20px;
        pointer-events: none;
    }

    .scatter-box h3 {
        font-family: 'Cinzel', serif;
        color: var(--gold2);
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .scatter-box p {
        color: var(--muted);
        font-size: .88rem;
    }

    .scatter-count {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin: 16px 0;
        flex-wrap: wrap;
    }

    .sc-chip {
        background: rgba(212, 175, 55, .12);
        border: 1px solid rgba(212, 175, 55, .3);
        border-radius: 10px;
        padding: 8px 16px;
        text-align: center;
        min-width: 80px;
    }

    .sc-chip .sc-num {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        color: var(--gold2);
        font-weight: 700;
    }

    .sc-chip .sc-txt {
        font-size: .65rem;
        color: var(--muted);
        display: block;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    /* ── MULTIPLIER PYRAMID ── */
    .mult-pyramid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .mult-row {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mult-badge {
        background: linear-gradient(135deg, rgba(123, 47, 190, .25), rgba(212, 175, 55, .1));
        border: 1px solid rgba(212, 175, 55, .25);
        border-radius: 10px;
        padding: 8px 14px;
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--gold2);
        transition: all .2s;
    }

    .mult-badge:hover {
        border-color: var(--gold);
        box-shadow: var(--glow-gold);
        transform: scale(1.05);
    }

    .mult-badge.top {
        font-size: 1.4rem;
        background: linear-gradient(135deg, rgba(212, 175, 55, .3), rgba(255, 165, 0, .15));
        border-color: var(--gold);
    }

    /* ── DEMO SECTION ── */
    .demo-section {
        background: var(--bg2);
    }

    .demo-notice {
        background: rgba(212, 175, 55, .08);
        border: 1px solid rgba(212, 175, 55, .2);
        border-radius: 10px;
        padding: 12px 18px;
        font-size: .8rem;
        color: var(--muted);
        text-align: center;
        margin-bottom: 20px;
    }

    /* ── FAQ ── */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    details {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
    }

    details[open] {
        border-color: rgba(212, 175, 55, .35);
    }

    summary {
        padding: 16px 20px;
        cursor: pointer;
        font-weight: 700;
        font-size: .92rem;
        color: var(--white);
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
        user-select: none;
    }

    summary::before {
        content: '⚡';
        font-size: .8rem;
        color: var(--gold);
        flex-shrink: 0;
    }

    summary:hover {
        color: var(--gold2);
    }

    .details-body {
        padding: 0 20px 16px;
        font-size: .85rem;
        color: var(--muted);
        line-height: 1.7;
    }

    /* ── CASINO CARDS ── */
    .casino-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
    }

    .casino-card {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 20px;
        transition: all .2s;
    }

    .casino-card:hover {
        border-color: rgba(212, 175, 55, .5);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .casino-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .casino-icon {
        font-size: 2rem;
        min-width: 44px;
        text-align: center;
    }

    .casino-name {
        font-family: 'Cinzel', serif;
        font-size: .95rem;
        color: var(--gold2);
        font-weight: 700;
    }

    .casino-lic {
        font-size: .7rem;
        color: var(--electric);
        margin-top: 2px;
    }

    .casino-bonus {
        background: rgba(212, 175, 55, .08);
        border: 1px solid rgba(212, 175, 55, .15);
        border-radius: 8px;
        padding: 8px 12px;
        font-size: .78rem;
        color: rgba(255, 255, 255, .75);
        margin-bottom: 12px;
    }

    .casino-btn {
        display: block;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, var(--purple), var(--violet));
        color: #fff;
        font-weight: 700;
        padding: 10px;
        border-radius: 10px;
        font-size: .85rem;
        transition: all .2s;
        box-shadow: 0 3px 12px rgba(123, 47, 190, .4);
    }

    .casino-btn:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(123, 47, 190, .6);
    }

    /* ── SEO CONTENT ── */
    .seo-content {
        background: var(--bg2);
        border-top: 1px solid rgba(212, 175, 55, .1);
    }

    .seo-article {
        max-width: 860px;
        margin: 0 auto;
    }

    .seo-article h2 {
        font-family: 'Cinzel', serif;
        color: var(--gold2);
        font-size: 1.35rem;
        margin-bottom: 12px;
        margin-top: 28px;
    }

    .seo-article h3 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 1rem;
        margin-bottom: 8px;
        margin-top: 20px;
    }

    .seo-article p {
        font-size: .9rem;
        color: rgba(255, 255, 255, .72);
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .text-link {
        color: var(--gold);
        border-bottom: 1px dashed rgba(212, 175, 55, .4);
    }

    .text-link:hover {
        color: var(--electric);
        border-bottom-color: var(--electric);
    }

    /* ── PAGE HEADER ── */
    .page-header {
        padding: 48px 0 24px;
        border-bottom: 1px solid rgba(212, 175, 55, .1);
    }

    .page-header h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.4rem, 3.5vw, 2.2rem);
        color: var(--gold2);
        margin-bottom: 8px;
    }

    .page-header-sub {
        color: var(--muted);
        font-size: .9rem;
    }

    /* ── FOOTER ── */
    footer {
        background: var(--bg2);
        border-top: 2px solid rgba(212, 175, 55, .15);
    }

    .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 40px 24px 24px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 28px;
    }

    .footer-logo {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        color: var(--gold2);
        font-weight: 700;
        margin-bottom: 8px;
    }

    .footer-logo span {
        color: var(--electric);
    }

    .footer-desc {
        font-size: .8rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    footer h4 {
        font-family: 'Cinzel', serif;
        font-size: .82rem;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 12px;
    }

    footer ul li {
        margin-bottom: 7px;
    }

    footer ul a {
        font-size: .82rem;
        color: var(--muted);
        transition: .15s;
    }

    footer ul a:hover {
        color: var(--gold2);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding-top: 16px;
        text-align: center;
    }

    .footer-copy {
        font-size: .75rem;
        color: rgba(255, 255, 255, .3);
        margin-bottom: 4px;
    }

    .footer-legal {
        font-size: .72rem;
        color: rgba(255, 255, 255, .2);
    }

    .footer-developer {
        font-size: .72rem;
        color: rgba(212, 175, 55, .3);
        margin-top: 8px;
    }

    .footer-developer a {
        color: rgba(212, 175, 55, .5);
    }

    .footer-developer a:hover {
        color: var(--gold);
    }

    .age-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(212, 175, 55, .12);
        border: 1px solid rgba(212, 175, 55, .3);
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: .75rem;
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    /* ── NOTICE BAR ── */
    .notice-bar {
        background: rgba(212, 175, 55, .08);
        border-left: 3px solid var(--gold);
        border-radius: 0 8px 8px 0;
        padding: 10px 16px;
        font-size: .78rem;
        color: var(--muted);
        margin-bottom: 20px;
    }

    /* ── HIGHLIGHTS STRIP ── */
    .highlights {
        background: var(--bg2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .highlights-inner {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding: 14px 24px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .hl-item {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        font-size: .8rem;
        color: var(--muted);
    }

    .hl-item strong {
        color: var(--gold2);
        font-family: 'Cinzel', serif;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {
        .info-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width:600px) {
        .container {
            padding: 0 16px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .card-grid {
            grid-template-columns: 1fr;
        }

        .hero {
            min-height: 400px;
        }

        .stats-bar {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* ── PAGE HEADER (inner pages) ── */
    .page-header {
        margin-bottom: 36px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(212, 175, 55, .15);
    }

    .page-header h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.4rem, 3.5vw, 2.1rem);
        font-weight: 900;
        color: var(--gold2);
        margin-bottom: 8px;
        letter-spacing: .3px;
    }

    .page-header-sub {
        color: var(--muted);
        font-size: .9rem;
        max-width: 720px;
    }

    /* ── TEXT LINK ── */
    .text-link {
        color: var(--electric);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-weight: 700;
    }

    .text-link:hover {
        color: var(--gold2);
    }

    /* ── NOTICE BAR ── */
    .notice-bar {
        background: rgba(212, 175, 55, .07);
        border: 1px solid rgba(212, 175, 55, .2);
        border-radius: 10px;
        padding: 12px 18px;
        font-size: .82rem;
        color: rgba(255, 255, 255, .7);
    }

    /* ── SCATTER BOX ── */
    .scatter-box {
        background: linear-gradient(135deg, rgba(123, 47, 190, .15), rgba(91, 14, 166, .1));
        border: 1px solid rgba(212, 175, 55, .25);
        border-radius: 16px;
        padding: 28px;
    }

    .scatter-count {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin: 20px 0;
        justify-content: center;
    }

    .sc-chip {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .sc-num {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--purple), var(--violet));
        color: #fff;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--glow-purple);
    }

    .sc-txt {
        font-size: .72rem;
        color: var(--muted);
        text-align: center;
    }

    /* ── MULT PYRAMID ── */
    .mult-pyramid {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .mult-row {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .mult-badge {
        background: linear-gradient(135deg, rgba(212, 175, 55, .15), rgba(212, 175, 55, .05));
        border: 1px solid rgba(212, 175, 55, .3);
        border-radius: 10px;
        padding: 8px 16px;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        color: var(--gold2);
        font-size: .9rem;
        text-shadow: var(--glow-gold);
        transition: all .2s;
    }

    .mult-badge:hover {
        background: rgba(212, 175, 55, .2);
        transform: scale(1.08);
    }

    .mult-badge.top {
        font-size: 1.1rem;
        border-color: var(--gold);
        box-shadow: var(--glow-gold);
    }

    /* ── CASINO CARDS ── */
    .casino-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .casino-card {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 22px;
        transition: all .2s;
    }

    .casino-card:hover {
        border-color: rgba(212, 175, 55, .4);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .casino-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }

    .casino-icon {
        font-size: 2rem;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(212, 175, 55, .08);
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, .15);
    }

    .casino-name {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 1rem;
        color: var(--gold2);
    }

    .casino-lic {
        font-size: .72rem;
        color: #4FC3F7;
        margin-top: 2px;
    }

    .casino-bonus {
        background: rgba(212, 175, 55, .08);
        border-radius: 8px;
        padding: 8px 12px;
        font-size: .8rem;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, .15);
    }

    .casino-btn {
        display: inline-block;
        color: var(--electric);
        font-size: .8rem;
        font-weight: 700;
        transition: .15s;
        text-decoration: none;
    }

    .casino-btn:hover {
        color: var(--gold2);
    }

    /* ── FAQ ── */
    .faq-list details {
        border: 1px solid rgba(212, 175, 55, .18);
        border-radius: 10px;
        margin-bottom: 10px;
        overflow: hidden;
        background: var(--panel);
        transition: border-color .2s;
    }

    .faq-list details[open] {
        border-color: rgba(212, 175, 55, .4);
    }

    .faq-list summary {
        padding: 16px 20px;
        cursor: pointer;
        font-weight: 700;
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-size: .9rem;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .faq-list summary::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--gold2);
        transition: transform .2s;
        flex-shrink: 0;
    }

    .faq-list details[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-list summary::-webkit-details-marker {
        display: none;
    }

    .details-body {
        padding: 0 20px 16px;
        font-size: .85rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ── SEO CONTENT ── */
    .seo-content {
        background: rgba(10, 5, 24, .5);
    }

    .seo-article h2 {
        font-family: 'Cinzel', serif;
        color: var(--gold2);
        font-size: 1.2rem;
        margin: 28px 0 10px;
    }

    .seo-article h3 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 1rem;
        margin: 20px 0 8px;
    }

    .seo-article p {
        color: rgba(255, 255, 255, .72);
        font-size: .9rem;
        line-height: 1.75;
        margin-bottom: 12px;
    }

    /* ── FOOTER ENHANCED ── */
    .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 60px 24px 32px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(212, 175, 55, .1);
    }

    .footer-logo {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 12px;
    }

    .footer-logo span {
        color: var(--electric);
    }

    .footer-desc {
        color: rgba(255, 255, 255, .5);
        font-size: .8rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .age-badge {
        display: inline-block;
        background: rgba(212, 175, 55, .1);
        border: 1px solid rgba(212, 175, 55, .3);
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: .8rem;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .footer-col h4 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: .85rem;
        margin-bottom: 14px;
        text-transform: uppercase;
        letter-spacing: .8px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col a {
        color: rgba(255, 255, 255, .6);
        font-size: .82rem;
        transition: .15s;
    }

    .footer-col a:hover {
        color: var(--gold);
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-copy {
        font-size: .78rem;
        color: rgba(255, 255, 255, .3);
        margin-bottom: 4px;
    }

    .footer-legal {
        font-size: .72rem;
        color: rgba(255, 255, 255, .25);
        margin-bottom: 4px;
    }

    .footer-developer {
        font-size: .72rem;
        color: rgba(255, 255, 255, .3);
    }

    .footer-developer a {
        color: var(--electric);
    }

    /* ── HIGHLIGHTS STRIP ── */
    .highlights {
        background: rgba(212, 175, 55, .05);
        border-top: 1px solid rgba(212, 175, 55, .12);
        border-bottom: 1px solid rgba(212, 175, 55, .12);
        padding: 14px 0;
        overflow: hidden;
    }

    .highlights-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        font-size: .8rem;
        color: rgba(255, 255, 255, .6);
    }

    .hl-item strong {
        color: var(--gold2);
        font-family: 'Cinzel', serif;
    }

    /* ── RELATED SPORTS (Z-Pattern internal linking) ── */
    .related-sports {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .sport-link {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(212, 175, 55, .06);
        border: 1px solid rgba(212, 175, 55, .18);
        border-radius: 10px;
        padding: 12px 16px;
        color: rgba(255, 255, 255, .75) !important;
        font-size: .82rem;
        text-decoration: none;
        transition: all .18s;
    }

    .sport-link:hover {
        background: rgba(212, 175, 55, .14);
        border-color: rgba(212, 175, 55, .45);
        color: var(--gold2) !important;
        transform: translateY(-2px);
    }

    .sport-link span {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        color: var(--gold);
        display: block;
        font-size: .85rem;
    }

    /* ── SEO NEWS LINKS ── */
    .seo-news-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 16px 0;
    }

    .seo-news-links a {
        color: var(--electric);
        font-size: .85rem;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .seo-news-links a:hover {
        color: var(--gold2);
    }

    /* ═══════════════════════════════════════════
   SVG CHARTS & DIAGRAMS (skill: casino-betting + page-cro)
   ═══════════════════════════════════════════ */

    /* ── SVG Bar Chart ── */
    .svg-chart-wrap {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 28px;
        overflow: hidden;
    }

    .svg-chart-title {
        font-family: 'Cinzel', serif;
        font-size: .95rem;
        color: var(--gold);
        margin-bottom: 6px;
        letter-spacing: .4px;
    }

    .svg-chart-sub {
        font-size: .75rem;
        color: var(--muted);
        margin-bottom: 20px;
    }

    .svg-chart-wrap svg {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    /* ── Donut / Pie ── */
    .donut-wrap {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
    }

    .donut-legend {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .donut-legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .82rem;
        color: var(--muted);
    }

    .donut-legend-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    /* ── Probability Chart ── */
    .prob-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 14px;
    }

    .prob-card {
        background: var(--panel);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px;
        text-align: center;
        transition: all .2s;
        position: relative;
        overflow: hidden;
    }

    .prob-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--purple), var(--gold));
    }

    .prob-card:hover {
        border-color: rgba(212, 175, 55, .4);
        transform: translateY(-2px);
    }

    .prob-value {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--gold2);
        line-height: 1;
        margin-bottom: 4px;
    }

    .prob-label {
        font-size: .72rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .8px;
        margin-bottom: 10px;
    }

    .prob-desc {
        font-size: .78rem;
        color: rgba(255, 255, 255, .6);
        line-height: 1.4;
    }

    /* ── Rating Stars (casino-betting skill) ── */
    .stars-row {
        display: flex;
        gap: 2px;
    }

    .star-filled {
        color: var(--gold2);
    }

    .star-empty {
        color: rgba(255, 255, 255, .2);
    }

    /* ── CRO: Trust Strip (marketing-psychology: Authority bias) ── */
    .trust-strip {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
        padding: 20px;
        background: rgba(212, 175, 55, .04);
        border: 1px solid rgba(212, 175, 55, .12);
        border-radius: 14px;
        margin: 28px 0;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .8rem;
        color: rgba(255, 255, 255, .65);
    }

    .trust-item strong {
        color: var(--gold2);
        font-family: 'Cinzel', serif;
        font-size: .82rem;
    }

    /* ── CRO: Comparison Table (anchoring effect) ── */
    .compare-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        font-size: .85rem;
    }

    .compare-table thead th {
        background: rgba(212, 175, 55, .08);
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-size: .78rem;
        letter-spacing: .8px;
        text-transform: uppercase;
        padding: 14px 18px;
        border-bottom: 2px solid rgba(212, 175, 55, .25);
        text-align: center;
    }

    .compare-table thead th:first-child {
        text-align: left;
        border-radius: 10px 0 0 0;
    }

    .compare-table thead th:last-child {
        border-radius: 0 10px 0 0;
    }

    .compare-table thead th.highlight-col {
        background: rgba(123, 47, 190, .2);
        border-bottom-color: var(--purple);
        color: #fff;
        position: relative;
    }

    .compare-table thead th.highlight-col::before {
        content: '★ Recomendado';
        position: absolute;
        top: -18px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--purple), var(--violet));
        color: #fff;
        font-size: .65rem;
        padding: 2px 10px;
        border-radius: 20px;
        white-space: nowrap;
        font-weight: 700;
    }

    .compare-table tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        transition: background .15s;
    }

    .compare-table tbody tr:hover {
        background: rgba(212, 175, 55, .04);
    }

    .compare-table tbody td {
        padding: 12px 18px;
        color: rgba(255, 255, 255, .75);
        text-align: center;
        vertical-align: middle;
    }

    .compare-table tbody td:first-child {
        text-align: left;
        color: rgba(255, 255, 255, .9);
        font-weight: 600;
    }

    .compare-table .td-yes {
        color: #4caf50;
        font-size: 1.1rem;
    }

    .compare-table .td-no {
        color: rgba(255, 255, 255, .3);
        font-size: 1.1rem;
    }

    .compare-table .td-highlight {
        background: rgba(123, 47, 190, .07);
    }

    /* ── CRO: Urgency / Scarcity callout (marketing-psychology) ── */
    .cro-callout {
        background: linear-gradient(135deg, rgba(212, 175, 55, .12), rgba(123, 47, 190, .08));
        border: 1px solid rgba(212, 175, 55, .3);
        border-radius: 14px;
        padding: 22px 26px;
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .cro-callout-icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .cro-callout-text h4 {
        font-family: 'Cinzel', serif;
        color: var(--gold2);
        font-size: .95rem;
        margin-bottom: 4px;
    }

    .cro-callout-text p {
        font-size: .82rem;
        color: rgba(255, 255, 255, .7);
    }

    /* ── Volatility Meter ── */
    .volatility-meter {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .vol-track {
        height: 12px;
        background: rgba(255, 255, 255, .08);
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    .vol-fill {
        height: 100%;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--electric), var(--purple), var(--gold));
        position: relative;
    }

    .vol-fill::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: var(--gold2);
        border-radius: 50%;
        border: 2px solid var(--bg);
        box-shadow: 0 0 8px var(--gold2);
    }

    /* ── Animated Counter ── */
    .anim-counter {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        font-weight: 900;
        color: var(--gold2);
        line-height: 1;
    }

    /* ── Payment Badges (casino-betting skill) ── */
    .payment-badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .pay-badge {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 8px;
        padding: 6px 12px;
        font-size: .72rem;
        font-weight: 700;
        color: rgba(255, 255, 255, .7);
        letter-spacing: .5px;
    }

    /* ── CRO: Loss Aversion Banner (marketing-psychology) ── */
    .loss-banner {
        background: rgba(255, 93, 56, .08);
        border: 1px solid rgba(255, 93, 56, .25);
        border-radius: 10px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: .85rem;
        color: rgba(255, 255, 255, .8);
    }

    .loss-banner span:first-child {
        font-size: 1.3rem;
    }

    /* ── HowTo Steps (schema: HowTo) ── */
    .howto-steps {
        counter-reset: step-counter;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .howto-step {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .step-num {
        counter-increment: step-counter;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--purple), var(--violet));
        color: #fff;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        font-size: .9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: var(--glow-purple);
    }

    .step-body h4 {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: .9rem;
        margin-bottom: 4px;
    }

    .step-body p {
        font-size: .82rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* ── Responsive charts ── */
    @media(max-width:640px) {
        .donut-wrap {
            flex-direction: column;
            align-items: flex-start;
        }

        .prob-grid {
            grid-template-columns: 1fr 1fr;
        }

        .trust-strip {
            gap: 16px;
        }

        .compare-table {
            font-size: .75rem;
        }

        .compare-table tbody td,
        .compare-table thead th {
            padding: 10px 10px;
        }
    }

    /* ── SVG CHART SIZE CONSTRAINTS ── */
    .svg-chart-wrap {
        max-width: 680px;
        /* не шире 680px */
    }

    .svg-chart-wrap svg {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Donut — фиксированный маленький размер */
    .donut-wrap svg {
        width: 140px !important;
        height: 140px !important;
        flex-shrink: 0;
    }

    /* Volatility bar chart — compact */
    .svg-chart-wrap>svg[viewBox="0 0 520 200"] {
        max-height: 160px;
    }

    /* Два чарта в ряд на широких экранах */
    .charts-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    @media(max-width:700px) {
        .charts-row {
            grid-template-columns: 1fr;
        }

        .svg-chart-wrap {
            max-width: 100%;
        }
    }

    /* ── SR-ONLY (visually hidden but readable by screen readers & SEO) ── */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
/* ============================================================
   BURGER MENU — FINAL OVERRIDE (fixes duplicate CSS issue)
   ============================================================ */
.burger-btn {
    display: none;
}

@media (max-width: 900px) {
    /* Бургер-кнопка: показать */
    .burger-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        z-index: 300;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        flex-shrink: 0;
    }

    .burger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: all .25s ease;
        pointer-events: none;
    }

    .burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Nav-links: СКРЫТ до открытия */
    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        z-index: 9999 !important;
        background: rgba(8, 4, 20, .98) !important;
        border-top: 2px solid rgba(212, 175, 55, .3) !important;
        box-shadow: 0 20px 60px rgba(0,0,0,.9) !important;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* .open -> показать вертикальный дропдаун */
    .nav-links.open {
        display: flex !important;
    }

    /* Каждый <li> — полная ширина */
    .nav-links li {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,.06) !important;
        flex-shrink: 0 !important;
    }

    .nav-links li:last-child {
        border-bottom: none !important;
    }

    /* Ссылки — вертикально, на всю ширину */
    .nav-links a {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
        align-items: center !important;
        padding: 16px 24px !important;
        min-height: 54px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: rgba(255,255,255,.88) !important;
        border-radius: 0 !important;
        background: none !important;
        white-space: normal !important;
        flex-wrap: nowrap !important;
        text-decoration: none !important;
        transition: background .15s, color .15s, padding-left .15s !important;
    }

    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a.active {
        background: rgba(212,175,55,.1) !important;
        color: #FFD700 !important;
        padding-left: 30px !important;
    }

    /* CTA Demo кнопка */
    .nav-links .nav-cta {
        display: flex !important;
        margin: 10px 16px 14px !important;
        padding: 14px 24px !important;
        border-radius: 12px !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #7B2FBE, #4B0082) !important;
        color: #fff !important;
        min-height: 48px !important;
        width: calc(100% - 32px) !important;
        box-sizing: border-box !important;
    }
}

/* ── NAV FLEX FIX: бургер не должен уходить за экран ── */
.topbar-inner {
    flex-wrap: nowrap;
    overflow: visible;
}

.topbar-logo {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

nav[role="navigation"] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.burger-btn {
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 300 !important;
}

@media (max-width: 900px) {
    .topbar-logo span[style] {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════
   TOPBAR BURGER ULTIMATE FIX
   Бургер ВСЕГДА виден справа, лого не выталкивает его
   ═══════════════════════════════════════════════════════ */

/* Topbar-inner: logo слева, nav справа, НЕ wrap */
.topbar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    overflow: hidden !important;
}

/* Лого: занимает место но не толкает nav */
.topbar-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 60px) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

/* Nav (содержит burger + nav-links): всегда справа, не сжимается */
.topbar-inner > nav,
.topbar-inner nav[role="navigation"] {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    overflow: visible !important;
}

/* Burger: ВСЕГДА видим на мобиле, фиксированный размер */
@media (max-width: 900px) {
    .burger-btn {
        display: flex !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        position: static !important;
        margin: 0 !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }
}
