/* ==========================================================================
   FOOTBALL.DN.UA — "DEEP PITCH" EDITORIAL / TECH THEME
   Dark ink-navy surfaces · azure & teal accents · restrained lime CTA
   Mobile-first · no HTML changes
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds / surfaces */
    --bg:            #0a1018;
    --bg-deep:       #070c13;
    --surface:       #101a26;
    --surface-2:     #16222f;
    --surface-3:     #1c2c3c;
    --surface-glass: rgba(12, 20, 30, 0.82);

    /* Indigo underlay used for soft gradients */
    --indigo:        #1a2246;
    --indigo-soft:   rgba(58, 78, 168, 0.18);

    /* Text */
    --text:          #eef4fa;
    --text-soft:     #c3d1de;
    --muted:         #8a9cad;
    --muted-2:       #6d7f8f;

    /* Accents */
    --accent:        #35c8f0;   /* azure */
    --accent-2:      #6fe3d4;   /* teal */
    --accent-deep:   #2288c9;
    --cta:           #b6f24a;   /* restrained lime */
    --cta-ink:       #0c1408;

    /* Borders */
    --border:        rgba(140, 190, 225, 0.13);
    --border-strong: rgba(53, 200, 240, 0.34);

    /* Gradients */
    --grad-accent:  linear-gradient(112deg, #35c8f0 0%, #6fe3d4 100%);
    --grad-cta:     linear-gradient(112deg, #b6f24a 0%, #6fe3d4 130%);
    --grad-surface: linear-gradient(160deg, #14202d 0%, #101a26 62%, #0d1620 100%);
    --grad-page:    radial-gradient(1100px 620px at 78% -8%, rgba(53, 200, 240, 0.10), transparent 62%),
                    radial-gradient(900px 560px at 4% 8%, rgba(58, 78, 168, 0.16), transparent 60%);

    /* Shadows */
    --shadow-sm:  0 2px 10px rgba(0, 0, 0, 0.32);
    --shadow:     0 14px 34px -18px rgba(0, 0, 0, 0.85);
    --shadow-lg:  0 28px 60px -26px rgba(0, 0, 0, 0.9);
    --glow:       0 0 0 1px rgba(53, 200, 240, 0.28), 0 12px 34px -16px rgba(53, 200, 240, 0.45);

    /* Radii */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-pill: 999px;

    /* Type */
    --f-display: "Space Grotesk", "Manrope", system-ui, sans-serif;
    --f-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --f-mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, monospace;

    /* Layout */
    --reading: 72ch;
    --wide: 1240px;
    --pad: 18px;
}

/* --------------------------------------------------------------------------
   2. RESET (minimal)
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
    margin: 0;
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-soft);
    background-color: var(--bg);
    background-image: var(--grad-page);
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

::selection { background: rgba(53, 200, 240, 0.28); color: #fff; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.012em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-wrap: pretty;
}

h1 {
    font-size: clamp(19px, 4.4vw, 23px);
    line-height: 1.34;
    margin: 0 0 18px;
    letter-spacing: -0.008em;
}

h2 {
    font-size: clamp(18px, 3.6vw, 21px);
    line-height: 1.38;
    margin: 40px 0 14px;
}

h3 {
    font-size: clamp(16.5px, 3.2vw, 18px);
    line-height: 1.45;
    margin: 30px 0 10px;
    color: var(--text);
}

h4 {
    font-size: 15.5px;
    line-height: 1.5;
    margin: 22px 0 8px;
    font-weight: 600;
}

h5, h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent-2);
    margin: 20px 0 8px;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--text); font-weight: 700; }
em, i { color: var(--text-soft); }

small { font-size: 13px; color: var(--muted); }

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
a:hover { color: var(--accent-2); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

/* Lists */
ul, ol { padding-left: 1.2em; margin: 0 0 1.2em; }
li { margin-bottom: .5em; }
li::marker { color: var(--accent); }
ul ul, ol ol, ul ol, ol ul { margin: .5em 0 .3em; }

/* Quotes */
blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    background: linear-gradient(90deg, rgba(53, 200, 240, 0.08), transparent 70%);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.7;
}
blockquote p:last-child { margin-bottom: 0; }
blockquote cite { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); font-style: normal; }

/* Code */
code, kbd, samp {
    font-family: var(--f-mono);
    font-size: .9em;
    background: rgba(53, 200, 240, 0.09);
    border: 1px solid var(--border);
    color: var(--accent-2);
    padding: .12em .4em;
    border-radius: var(--r-xs);
}

pre {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px;
    overflow-x: auto;
    margin: 0 0 1.4em;
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}
pre code {
    background: none;
    border: 0;
    padding: 0;
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.site-wrapper { position: relative; z-index: 1; overflow-x: hidden; }

.full-width {
    width: 100%;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.container-inner {
    width: 100%;
    max-width: var(--wide);
    margin-inline: auto;
}

.site-content { padding-bottom: 52px; }

/* Reading width for prose blocks */
.main-info-section p,
.main-info-section ul,
.main-info-section ol,
.main-info-section h1,
.main-info-section h2,
.main-info-section h3,
.main-info-section h4,
.main-info-section blockquote,
.section-desc {
    max-width: var(--reading);
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-glass);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--border);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    height: 30px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Nav (desktop styles applied at ≥1024px) */
.main-nav { display: flex; align-items: center; }

.nav-links-wrapper {
    display: flex;
    gap: 4px;
}

.main-nav a {
    display: block;
    color: var(--text-soft);
    font-size: 14.5px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--text);
    background: rgba(53, 200, 240, 0.11);
    text-decoration: none;
}

/* Burger */
.burger-menu {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}
.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.burger-menu:hover span { background: var(--accent-2); }

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(86%, 330px);
        transform: translateX(-102%);
        flex-direction: column;
        align-items: stretch;
        background: linear-gradient(180deg, #14202d 0%, #0b131c 100%);
        border-right: 1px solid var(--border);
        box-shadow: 20px 0 60px -20px rgba(0, 0, 0, .9);
        z-index: 2001;
        overflow-y: auto;
        transition: transform .3s ease;
    }
    .main-nav.open { transform: translateX(0); }

    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 18px;
        border-bottom: 1px solid var(--border);
        background: linear-gradient(100deg, rgba(53, 200, 240, .16), rgba(58, 78, 168, .18));
    }

    .menu-title {
        font-family: var(--f-display);
        font-size: 12.5px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--text);
    }

    .close-menu {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 1;
        color: var(--text);
        background: rgba(255, 255, 255, .07);
        border: 1px solid var(--border);
        border-radius: var(--r-pill);
    }
    .close-menu:hover { background: rgba(53, 200, 240, .18); color: #fff; }

    .nav-links-wrapper {
        flex-direction: column;
        gap: 2px;
        padding: 14px;
    }

    .main-nav a {
        font-size: 15.5px;
        padding: 13px 14px;
        border: 1px solid transparent;
    }
    .main-nav a:hover { border-color: var(--border); }
}

.mobile-nav-top { display: none; }

/* Menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 13, .74);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    transition: opacity .25s ease;
}
.menu-overlay.active { display: block; opacity: 1; }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.15;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    transition: transform .18s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-login {
    color: var(--accent);
    background: rgba(53, 200, 240, .07);
    border-color: var(--border-strong);
}
.btn-login:hover {
    color: #fff;
    background: rgba(53, 200, 240, .17);
    border-color: var(--accent);
}

.btn-reg {
    color: var(--cta-ink);
    background: var(--grad-cta);
    box-shadow: 0 10px 26px -14px rgba(182, 242, 74, .8);
}
.btn-reg:hover {
    color: var(--cta-ink);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -14px rgba(182, 242, 74, .95);
}

.btn-play {
    padding: 15px 32px;
    font-size: 14px;
    color: var(--cta-ink);
    background: var(--grad-cta);
    border-radius: var(--r-pill);
    box-shadow: 0 16px 40px -18px rgba(182, 242, 74, .9);
}
.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px -18px rgba(182, 242, 74, 1);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 1px solid rgba(53, 200, 240, .35);
    padding-bottom: 2px;
}
.btn-link:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--border);
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.main-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    z-index: 1;
    filter: brightness(.5) saturate(1.05) contrast(1.05);
}

.hero-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(7, 12, 19, .35) 0%, rgba(7, 12, 19, .88) 100%),
        radial-gradient(700px 300px at 20% 20%, rgba(53, 200, 240, .18), transparent 65%);
}

.banner-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 48px var(--pad);
    text-align: center;
}

.hero-content {
    max-width: 660px;
    margin-inline: auto;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(21px, 5.6vw, 28px);
    font-weight: 700;
    line-height: 1.26;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 10px;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(15px, 3.4vw, 17px);
    font-weight: 600;
    color: var(--accent-2);
    margin: 0 0 8px;
}

.hero-meta {
    font-size: 12.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 24px;
}

/* --------------------------------------------------------------------------
   8. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
    margin: 44px 0 22px;
}

.section-title {
    position: relative;
    font-family: var(--f-display);
    font-size: clamp(18px, 3.8vw, 22px);
    line-height: 1.36;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    padding-left: 14px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28em;
    bottom: .18em;
    width: 3px;
    border-radius: 3px;
    background: var(--grad-accent);
}

.section-desc {
    color: var(--muted);
    font-size: 14.5px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   9. STATS
   -------------------------------------------------------------------------- */
.stats-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px 0 40px;
}

.stat-card {
    position: relative;
    background: var(--grad-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: var(--grad-accent);
    opacity: .35;
    transition: opacity .22s ease;
}

.stat-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.stat-card:hover::after { opacity: 1; }

.stat-icon {
    display: block;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
    filter: saturate(1.05);
}

.stat-number {
    font-family: var(--f-display);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent);
    margin: 4px 0 6px;
}

.stat-label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   10. CONTENT PANELS
   -------------------------------------------------------------------------- */
.main-info-section {
    position: relative;
    background: var(--grad-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    margin: 28px 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.main-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-accent);
    opacity: .8;
}

.main-info-section > h1:first-child,
.main-info-section > h2:first-child,
.main-info-section > h3:first-child { margin-top: 0; }

.main-info-section p { color: var(--text-soft); }

.main-info-section ul,
.main-info-section ol { color: var(--text-soft); }

.license-section {
    background:
        linear-gradient(160deg, rgba(58, 78, 168, .20) 0%, rgba(16, 26, 38, .96) 55%),
        var(--surface);
}

/* --------------------------------------------------------------------------
   11. TABLE OF CONTENTS
   -------------------------------------------------------------------------- */
.toc-box {
    background: linear-gradient(150deg, rgba(53, 200, 240, .07), rgba(16, 26, 38, .9));
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    margin: 28px 0;
}

.toc-title {
    font-family: var(--f-display);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin: 0 0 14px;
}

.toc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.toc-links a {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-soft);
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 8px 14px;
    text-decoration: none;
}

.toc-links a:hover,
.toc-links a:focus-visible {
    color: var(--text);
    background: rgba(53, 200, 240, .16);
    border-color: var(--border-strong);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   12. CARDS GRID
   -------------------------------------------------------------------------- */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px 0 44px;
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--grad-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.bonus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}
.bonus-card:hover::before { transform: scaleX(1); }

.bonus-card.highlight {
    border-color: rgba(182, 242, 74, .32);
    background:
        linear-gradient(160deg, rgba(182, 242, 74, .09) 0%, rgba(16, 26, 38, .96) 58%),
        var(--surface);
}
.bonus-card.highlight::before { background: var(--grad-cta); }
.bonus-card.highlight:hover { border-color: rgba(182, 242, 74, .55); }

.bonus-tag {
    align-self: flex-start;
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(53, 200, 240, .12);
    border: 1px solid var(--border);
    border-radius: var(--r-xs);
    padding: 5px 10px;
    margin-bottom: 12px;
}

.bonus-tag.highlight-tag {
    color: var(--cta);
    background: rgba(182, 242, 74, .12);
    border-color: rgba(182, 242, 74, .3);
}

.bonus-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.4;
}

.bonus-amount {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin: 4px 0 0;
}

.bonus-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 12px 0 18px;
}

.bonus-card .btn-link { margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   13. TABLES
   -------------------------------------------------------------------------- */
.table-section { margin: 40px 0; }

.table-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 14px;
}

thead {
    background: linear-gradient(180deg, rgba(53, 200, 240, .10), rgba(53, 200, 240, .03));
}

th {
    text-align: left;
    padding: 14px 14px;
    font-family: var(--f-display);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-2);
    border-bottom: 1px solid var(--border-strong);
    white-space: nowrap;
}

td {
    padding: 14px 14px;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

tbody tr { transition: background-color .18s ease; }
tbody tr:hover { background: rgba(53, 200, 240, .05); }
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child { color: var(--text); font-weight: 700; }

caption {
    caption-side: bottom;
    padding: 12px 14px;
    font-size: 12.5px;
    color: var(--muted-2);
    text-align: left;
}

.volatility {
    display: inline-block;
    padding: 4px 9px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    white-space: nowrap;
}
.volatility.high {
    background: rgba(244, 114, 108, .13);
    border-color: rgba(244, 114, 108, .3);
    color: #f7a7a2;
}
.volatility.medium {
    background: rgba(240, 190, 90, .13);
    border-color: rgba(240, 190, 90, .3);
    color: #f3d08a;
}
.volatility.low {
    background: rgba(111, 227, 212, .13);
    border-color: rgba(111, 227, 212, .3);
    color: var(--accent-2);
}

/* --------------------------------------------------------------------------
   14. LICENSE / FEATURE ITEMS
   -------------------------------------------------------------------------- */
.license-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.license-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
}
.license-item:last-child { border-bottom: 0; }

.license-icon {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1.3;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(53, 200, 240, .10);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}

.license-item h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--accent-2);
}

.license-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    margin-top: 56px;
    padding: 44px 0 20px;
    background: linear-gradient(180deg, rgba(7, 12, 19, .5), var(--bg-deep));
    border-top: 1px solid var(--border);
    color: var(--text-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 30px;
}

.footer-brand { display: flex; flex-direction: column; max-width: 380px; }

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    margin-bottom: 16px;
}

.brand-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}

.brand-text strong {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.footer-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.footer-col h4 {
    display: inline-block;
    margin: 0 0 14px;
    padding-bottom: 8px;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    border-bottom: 2px solid var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li { margin-bottom: 9px; }

.footer-col a {
    display: inline-block;
    font-size: 14px;
    color: var(--muted) !important;
    text-decoration: none;
}
.footer-col a:hover,
.footer-col a:focus-visible {
    color: var(--accent) !important;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--muted-2);
}

.footer-bottom p { margin: 0; }

.age-limit {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--cta-ink);
    background: var(--grad-cta);
}

/* --------------------------------------------------------------------------
   16. BREAKPOINTS
   -------------------------------------------------------------------------- */

/* ≥ 480px ---------------------------------------------------------------- */
@media (min-width: 480px) {
    :root { --pad: 22px; }

    body { font-size: 16.5px; }

    .hero-image-container,
    .main-banner-img { min-height: 360px; }

    .banner-overlay { padding: 60px var(--pad); }

    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .main-info-section { padding: 28px 24px; }
    .toc-box { padding: 24px 22px; }
    .bonus-card { padding: 24px 22px; }

    .footer-menu-wrapper { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ≥ 768px ---------------------------------------------------------------- */
@media (min-width: 768px) {
    :root { --pad: 32px; }

    h1 { font-size: clamp(22px, 2.6vw, 26px); }
    h2 { font-size: 21px; margin-top: 46px; }
    h3 { font-size: 18.5px; }

    .header-flex { padding: 14px 0; }
    .header-logo-img { height: 34px; }
    .btn { font-size: 13px; padding: 12px 18px; }

    .hero-image-container,
    .main-banner-img { min-height: 420px; }
    .banner-overlay { padding: 78px var(--pad); }
    .hero-title { font-size: clamp(24px, 3.2vw, 30px); }

    .section-header { margin: 56px 0 26px; }
    .section-title { padding-left: 16px; }

    .stats-bar { margin: 34px 0 48px; }

    .bonuses-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .main-info-section { padding: 36px 34px; margin: 34px 0; }
    .toc-box { padding: 28px 30px; }

    .license-content { grid-template-columns: repeat(2, 1fr); gap: 10px 30px; }
    .license-item { border-bottom: 0; padding: 14px 0; }

    .site-footer { margin-top: 72px; padding: 58px 0 22px; }
    .footer-grid { grid-template-columns: 1.1fr 1.6fr; gap: 44px; padding-bottom: 36px; }

    th, td { padding: 16px 18px; }
    table { font-size: 14.5px; }
}

/* ≥ 1024px --------------------------------------------------------------- */
@media (min-width: 1024px) {
    :root { --pad: 40px; }

    h1 { font-size: clamp(25px, 2.2vw, 30px); }
    h2 { font-size: 22px; }
    h3 { font-size: 19px; }

    .burger-menu { display: none; }
    .mobile-nav-top { display: none; }

    .header-left { gap: 30px; }
    .main-nav {
        position: static;
        transform: none;
        width: auto;
        background: none;
        border: 0;
        box-shadow: none;
        flex-direction: row;
        overflow: visible;
    }
    .nav-links-wrapper { flex-direction: row; padding: 0; gap: 4px; }

    .hero-image-container,
    .main-banner-img { min-height: 470px; }
    .hero-content { max-width: 720px; }
    .hero-title { font-size: clamp(26px, 2.1vw, 32px); }

    .stats-bar { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .stat-card { padding: 26px 20px; }
    .stat-number { font-size: 32px; }

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

    .main-info-section { padding: 44px 46px; }

    .license-content { grid-template-columns: repeat(3, 1fr); }

    .table-wrapper { overflow-x: visible; }
    table { min-width: 0; }

    .footer-menu-wrapper { grid-template-columns: repeat(2, 1fr); gap: 44px; }
}

/* ≥ 1360px --------------------------------------------------------------- */
@media (min-width: 1360px) {
    :root { --pad: 48px; }
    .site-content { padding-bottom: 72px; }
}

/* --------------------------------------------------------------------------
   17. MOTION / PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .btn:hover,
    .stat-card:hover,
    .bonus-card:hover { transform: none; }
}

@media print {
    body { background: #fff; color: #111; }
    .site-header, .site-footer, .menu-overlay, .hero-banner, .btn { display: none !important; }
    .main-info-section, .toc-box, .bonus-card, .table-wrapper {
        background: #fff; border: 1px solid #ccc; box-shadow: none; color: #111;
    }
    a { color: #0b57a4; text-decoration: underline; }
}