/* ============================================================
   pickadeli.co — styles.css
   Dark editorial / tech UI
   Mobile-first · CSS variables · a11y-friendly
   ============================================================ */

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

/* ------------------------------------------------------------
   1. TOKENS
------------------------------------------------------------ */
:root {
    /* palette — deep ink navy + azure / indigo + soft lime cta */
    --bg:            #070b15;
    --bg-deep:       #050810;
    --surface:       #0d1422;
    --surface-2:     #121b2c;
    --surface-3:     #17223a;
    --surface-glass: rgba(18, 27, 44, 0.72);

    --text:          #e9eefb;
    --text-strong:   #ffffff;
    --muted:         #8d9bb8;
    --muted-2:       #67748e;

    --border:        #1c2740;
    --border-soft:   #162034;
    --border-strong: #2a3a5c;

    --accent:        #4fc3f7;   /* azure */
    --accent-2:      #7d8cf8;   /* indigo */
    --accent-3:      #34d3c2;   /* teal */
    --accent-ink:    #06263a;

    --cta:           #b6e85f;   /* muted lime */
    --cta-strong:    #c9f77a;
    --cta-ink:       #10250a;

    --shadow-sm:  0 1px 2px rgba(2, 5, 12, .5);
    --shadow-md:  0 8px 24px -10px rgba(2, 5, 12, .85);
    --shadow-lg:  0 24px 60px -28px rgba(2, 5, 12, .95);
    --glow-accent: 0 0 0 1px rgba(79, 195, 247, .35), 0 12px 34px -16px rgba(79, 195, 247, .55);
    --glow-cta:    0 10px 30px -12px rgba(182, 232, 95, .45);

    /* typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    --fs-base: 15px;
    --lh-base: 1.65;
    --reading: 72ch;

    /* geometry */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --pad-x: 16px;
    --gap: 22px;

    --nav-w: 264px;
    --t: .22s cubic-bezier(.4, .12, .2, 1);
}

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

* { margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    tab-size: 4;
}

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(1100px 620px at 8% -8%, rgba(125, 140, 248, .13), transparent 62%),
        radial-gradient(900px 520px at 100% 0%, rgba(79, 195, 247, .10), transparent 60%),
        linear-gradient(180deg, #080d18 0%, var(--bg) 46%, var(--bg-deep) 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    font-feature-settings: "cv05" 1, "ss01" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100%;
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }

button, input, select, textarea { font: inherit; color: inherit; }

button { background: none; border: none; cursor: pointer; }

ul, ol { list-style-position: outside; }

table { border-collapse: collapse; border-spacing: 0; width: 100%; }

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
    margin: 32px 0;
}

::selection { background: rgba(79, 195, 247, .28); color: #fff; }

/* scrollbars */
* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
::-webkit-scrollbar { width: 10px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: var(--radius-pill);
    border: 3px solid transparent;
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: #375079; background-clip: padding-box; }

/* ------------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.012em;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(1.16rem, 0.98rem + 1.05vw, 2rem);   /* ~18.5px → 32px */
    line-height: 1.34;
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 32ch;
    margin-bottom: .55em;
}

h2 {
    font-size: clamp(1.02rem, 0.94rem + 0.5vw, 1.32rem);
    margin-bottom: .5em;
}

h3 {
    font-size: clamp(0.96rem, 0.92rem + 0.28vw, 1.1rem);
    margin-bottom: .45em;
}

h4, h5, h6 {
    font-size: .9rem;
    letter-spacing: .02em;
    text-transform: none;
    margin-bottom: .4em;
}

p { margin-bottom: 1.05em; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--text-strong); font-weight: 700; }
em, i { color: #d6dff2; }
small { font-size: .82em; color: var(--muted); }

a {
    color: var(--accent);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color var(--t), background-color var(--t), border-color var(--t), opacity var(--t);
}
a:hover { color: #9adcff; text-decoration: underline; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}
:focus:not(:focus-visible) { outline: none; }

/* lists (content) */
.content-block ul,
.content-block ol {
    margin: 0 0 1.1em 1.15em;
    color: var(--muted);
}
.content-block li { margin-bottom: .5em; padding-left: .25em; }
.content-block li::marker { color: var(--accent); font-weight: 700; }
.content-block ul ul, .content-block ol ol { margin-top: .5em; }

/* quotes */
blockquote {
    margin: 1.4em 0;
    padding: 16px 18px;
    border-left: 3px solid var(--accent);
    background: linear-gradient(90deg, rgba(79, 195, 247, .07), transparent 70%);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #cbd6ea;
    font-style: italic;
}
blockquote p:last-child { margin-bottom: 0; }
blockquote cite { display: block; margin-top: .6em; font-style: normal; font-size: .82em; color: var(--muted-2); }

/* code */
code, kbd, samp, pre { font-family: var(--font-mono); font-size: .86em; }
code {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: .12em .42em;
    color: var(--accent-3);
    overflow-wrap: anywhere;
}
pre {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-2);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 1.3em 0;
    box-shadow: var(--shadow-md);
    line-height: 1.6;
}
pre code { background: none; border: 0; padding: 0; color: #d5e2f5; }
kbd {
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    border-bottom-width: 2px;
    border-radius: var(--radius-xs);
    padding: .1em .45em;
    font-size: .8em;
}

/* tables */
.table-wrap, .content-block table { display: block; overflow-x: auto; }
.content-block table {
    margin: 1.3em 0;
    font-size: .9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 100%;
}
th, td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
}
th {
    background: var(--surface-2);
    color: var(--text-strong);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}
tbody tr { background: rgba(13, 20, 34, .55); }
tbody tr:nth-child(even) { background: rgba(18, 27, 44, .6); }
tbody tr:hover { background: rgba(79, 195, 247, .06); }
tbody tr:last-child td { border-bottom: 0; }
td { color: var(--muted); }

/* ------------------------------------------------------------
   4. LAYOUT
------------------------------------------------------------ */
.site-layout {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
}

.site-main-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.page-content {
    padding: 22px var(--pad-x) 40px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
}

/* ------------------------------------------------------------
   5. SIDEBAR (off-canvas on mobile)
------------------------------------------------------------ */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(var(--nav-w), 84vw);
    height: 100vh;
    height: 100svh;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background:
        linear-gradient(180deg, rgba(125, 140, 248, .10), transparent 220px),
        var(--surface);
    border-right: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateX(-102%);
    transition: transform var(--t);
    will-change: transform;
}
.side-nav.open { transform: translateX(0); }

.side-nav-brand {
    padding: 18px 18px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--border-soft);
}

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

.side-close-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 1;
    color: var(--muted);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--t);
}
.side-close-btn:hover { color: #fff; background: var(--surface-3); border-color: var(--border-strong); }

.side-menu {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    color: var(--muted);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 500;
    font-size: .875rem;
    letter-spacing: .005em;
    position: relative;
    transition: var(--t);
}
.side-menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    border-radius: 2px;
    background: var(--accent);
    transition: height var(--t);
}
.side-menu-item:hover {
    color: var(--text-strong);
    background: var(--surface-2);
    border-color: var(--border-soft);
    text-decoration: none;
}
.side-menu-item:hover::before { height: 46%; }
.side-menu-item.active {
    color: var(--text-strong);
    background: linear-gradient(90deg, rgba(79, 195, 247, .14), rgba(125, 140, 248, .06));
    border-color: rgba(79, 195, 247, .28);
}
.side-menu-item.active::before { height: 60%; }

.side-footer-lang {
    padding: 14px 12px;
    border-top: 1px solid var(--border-soft);
    background: rgba(5, 8, 16, .35);
}

.lang-selector {
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
}
.lang-selector:hover { color: #fff; border-color: var(--border-strong); background: var(--surface-3); }

.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 6, 13, .72);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1050;
}
.menu-backdrop.active { display: block; }

/* ------------------------------------------------------------
   6. TOP HEADER
------------------------------------------------------------ */
.top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px var(--pad-x);
    background: var(--surface-glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--border);
}

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

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--t);
}
.burger-btn:hover { border-color: var(--accent); background: var(--surface-3); }
.burger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--t);
}
.burger-btn:hover span { background: var(--accent); }

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 8px 15px;
    transition: var(--t);
}
.search-box:hover { border-color: var(--border-strong); }
.search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, .14);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    width: 100%;
    min-width: 0;
    font-size: .85rem;
}
.search-input::placeholder { color: var(--muted-2); }

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

/* ------------------------------------------------------------
   7. BUTTONS
------------------------------------------------------------ */
.btn-cc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--t);
}
.btn-cc:hover { text-decoration: none; }
.btn-cc:active { transform: translateY(1px); }

.btn-cc-primary {
    background: linear-gradient(135deg, var(--cta-strong), var(--cta));
    color: var(--cta-ink);
    box-shadow: var(--glow-cta);
}
.btn-cc-primary:hover {
    color: var(--cta-ink);
    background: linear-gradient(135deg, #d5ff92, var(--cta-strong));
    transform: translateY(-1px);
}

.btn-cc-secondary {
    background: var(--surface-2);
    color: var(--text);
    border-color: var(--border);
}
.btn-cc-secondary:hover {
    color: var(--text-strong);
    background: var(--surface-3);
    border-color: var(--accent);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .01em;
}
.btn-link::after { content: "→"; transition: transform var(--t); }
.btn-link:hover { color: #9adcff; text-decoration: none; }
.btn-link:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------------
   8. CATEGORY SLIDER
------------------------------------------------------------ */
.category-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-inline: calc(var(--pad-x) * -1);
    padding-inline: var(--pad-x);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.category-slider::-webkit-scrollbar { height: 4px; }
.category-slider::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; border: 0; }

.category-badge {
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
    color: var(--muted);
    transition: var(--t);
}
.category-badge:hover {
    color: var(--text-strong);
    border-color: var(--border-strong);
    background: var(--surface-3);
    text-decoration: none;
}
.category-badge.active {
    color: #032031;
    background: linear-gradient(135deg, var(--accent), #3aa9e0);
    border-color: rgba(79, 195, 247, .5);
    box-shadow: 0 8px 22px -12px rgba(79, 195, 247, .8);
}
.search-badge {
    border-radius: 50%;
    padding: 8px 11px;
    line-height: 1;
}

/* ------------------------------------------------------------
   9. SECTION HEADERS
------------------------------------------------------------ */
.section-row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-left: 16px;
    position: relative;
}
.section-row-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28em;
    width: 4px;
    height: 1.05em;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.section-badge-title {
    font-size: clamp(1rem, .94rem + .4vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--text-strong);
}

.link-all {
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
}
.link-all:hover { color: var(--accent); text-decoration: none; }

/* ------------------------------------------------------------
   10. GAMES GRID
------------------------------------------------------------ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 10px;
}

.game-item {
    position: relative;
    display: block;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.game-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(4, 8, 16, .55));
    opacity: .7;
    pointer-events: none;
    transition: opacity var(--t);
}
.game-item:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 195, 247, .55);
    box-shadow: var(--glow-accent);
}
.game-item:hover img { transform: scale(1.05); }
.game-item:hover::after { opacity: .25; }

/* ------------------------------------------------------------
   11. PROVIDERS
------------------------------------------------------------ */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.provider-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    padding: 18px 12px;
    background:
        linear-gradient(180deg, rgba(125, 140, 248, .06), transparent 70%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--t);
}
.provider-pill:hover {
    background: var(--surface-2);
    border-color: rgba(52, 211, 194, .45);
    transform: translateY(-2px);
    text-decoration: none;
}
.provider-pill strong {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-strong);
    letter-spacing: -.005em;
}
.provider-pill span {
    font-size: .7rem;
    color: var(--muted-2);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ------------------------------------------------------------
   12. STATS
------------------------------------------------------------ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.stat-card {
    position: relative;
    padding: 20px 14px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--t);
}
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
    opacity: .6;
}
.stat-card:hover { border-color: var(--border-strong); background: var(--surface-2); }

.stat-icon { font-size: 22px; line-height: 1; opacity: .9; }

.stat-number {
    font-size: clamp(1.15rem, 1rem + .7vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 8px 0 4px;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
}

/* ------------------------------------------------------------
   13. CONTENT BLOCK (editorial)
------------------------------------------------------------ */
.content-block {
    background:
        linear-gradient(180deg, rgba(125, 140, 248, .05), transparent 180px),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    box-shadow: var(--shadow-md);
}

.content-block > * { max-width: var(--reading); }
.content-block > h1,
.content-block > h2,
.content-block > h3 { max-width: 46ch; }

.content-block h1 { margin-bottom: .7em; }

.content-block h2 {
    margin-top: 1.5em;
    padding-bottom: .35em;
    border-bottom: 1px solid var(--border-soft);
}
.content-block h2:first-child,
.content-block h1 + h2 { margin-top: 0; }

.content-block h3 { margin-top: 1.4em; color: #d3e2f5; }

.content-block p {
    color: var(--muted);
    line-height: 1.78;
}
.content-block p + p { margin-top: -.15em; }

.content-block a { font-weight: 600; border-bottom: 1px solid rgba(79, 195, 247, .35); }
.content-block a:hover { border-bottom-color: currentColor; text-decoration: none; }

.content-block img { border-radius: var(--radius-md); margin: 1.2em 0; border: 1px solid var(--border); }

/* ------------------------------------------------------------
   14. BONUSES
------------------------------------------------------------ */
.bonuses-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
    background:
        radial-gradient(420px 180px at 100% 0%, rgba(125, 140, 248, .12), transparent 70%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--t);
}
.bonus-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.bonus-tag {
    display: inline-block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-3);
    background: rgba(52, 211, 194, .1);
    border: 1px solid rgba(52, 211, 194, .28);
    padding: 4px 9px;
    border-radius: var(--radius-xs);
    margin-bottom: 12px;
}

.bonus-amount {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text-strong);
    margin-bottom: 8px;
}

.bonus-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.62;
    margin-bottom: 16px;
}

.bonus-card .btn-link { margin-top: auto; }

/* ------------------------------------------------------------
   15. FOOTER
------------------------------------------------------------ */
.site-footer {
    margin-top: auto;
    padding: 34px var(--pad-x) 26px;
    background: linear-gradient(180deg, rgba(5, 8, 16, .35), rgba(5, 8, 16, .85));
    border-top: 1px solid var(--border);
}

.footer-top-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 26px;
    max-width: 1360px;
    margin-inline: auto;
}

.footer-top-row h4,
.support-box h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 12px;
}

.providers-text-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 10px 0 22px;
}

.provider-bubble {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted-2);
    transition: var(--t);
}
.provider-bubble:hover { color: var(--text); border-color: var(--border-strong); }

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0 8px 8px 0;
    transition: var(--t);
}
.support-link:hover {
    color: var(--text-strong);
    border-color: var(--accent);
    background: var(--surface-2);
    text-decoration: none;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links-list a { color: var(--muted); font-size: .82rem; }
.footer-links-list a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 1360px;
    margin-inline: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    font-size: .74rem;
    color: var(--muted-2);
    line-height: 1.6;
}

.age-badge {
    display: inline-block;
    background: rgba(182, 232, 95, .1);
    border: 1px solid rgba(182, 232, 95, .35);
    color: var(--cta-strong);
    padding: 3px 10px;
    border-radius: var(--radius-xs);
    font-weight: 800;
    letter-spacing: .04em;
}

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

/* ≥ 480px — small phones / large phones */
@media (min-width: 480px) {
    :root { --pad-x: 22px; }

    .games-grid { grid-template-columns: repeat(auto-fill, minmax(122px, 1fr)); gap: 12px; }
    .providers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .content-block { padding: 28px 24px; }
    .footer-bottom-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ≥ 768px — tablets */
@media (min-width: 768px) {
    :root { --fs-base: 15.5px; --pad-x: 30px; }

    .top-header { padding: 13px var(--pad-x); }
    .page-content { padding: 28px var(--pad-x) 52px; gap: 42px; }

    .games-grid { grid-template-columns: repeat(auto-fill, minmax(136px, 1fr)); gap: 14px; }
    .providers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stats-bar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .bonuses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

    .content-block { padding: 34px 32px; }

    .site-footer { padding: 46px var(--pad-x) 30px; }
    .footer-top-row { grid-template-columns: 1.9fr 1fr; gap: 40px; }
}

/* ≥ 1024px — desktop: static sidebar */
@media (min-width: 1024px) {
    .side-nav {
        position: sticky;
        top: 0;
        left: auto;
        transform: none;
        width: var(--nav-w);
        box-shadow: none;
    }
    .side-close-btn { display: none; }
    .burger-btn { display: none; }
    .menu-backdrop, .menu-backdrop.active { display: none; }

    .top-header-left { gap: 0; }
    .bonuses-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
    .content-block { padding: 40px; }
}

/* ≥ 1280px */
@media (min-width: 1280px) {
    :root { --pad-x: 40px; }
    .providers-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .page-content { gap: 50px; }
}

/* ------------------------------------------------------------
   17. PREFERENCES / 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;
    }
    .game-item:hover,
    .bonus-card:hover,
    .provider-pill:hover,
    .btn-cc-primary:hover { transform: none; }
}

@media print {
    body { background: #fff; color: #000; }
    .side-nav, .top-header, .menu-backdrop, .category-slider, .site-footer { display: none !important; }
    .content-block { border: 0; box-shadow: none; background: none; padding: 0; }
    a { color: #000; text-decoration: underline; }
}