/* =========================================================================
   luisafernandaw.co — styles.css
   Editorial / tech dark theme · ink-navy surfaces · azure + indigo accents
   Mobile-first. Breakpoints: 480px / 768px / 1024px / 1280px
   ========================================================================= */

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

/* ------------------------------- tokens -------------------------------- */
:root {
    /* base palette — deep ink navy with a cool graphite drift */
    --bg:            #070c17;
    --bg-deep:       #04070f;
    --bg-veil:       #0a1120;
    --surface:       #0e1729;
    --surface-2:     #132038;
    --surface-3:     #18294a;
    --surface-soft:  rgba(255, 255, 255, 0.035);

    /* text */
    --text:          #e9eefb;
    --text-strong:   #ffffff;
    --muted:         #93a5c4;
    --muted-2:       #6f81a1;

    /* lines & separation */
    --border:        #1d2c48;
    --border-soft:   rgba(148, 175, 224, 0.14);
    --border-strong: #2a3f66;

    /* accents */
    --accent:        #46c6f5;   /* azure  */
    --accent-ink:    #0a2432;
    --accent-2:      #7a6cf0;   /* indigo / deep purple */
    --accent-3:      #2fd8c0;   /* teal   */
    --cta:           #b9f45a;   /* restrained lime */
    --cta-ink:       #10240a;

    /* effects */
    --glow:          0 0 0 1px rgba(70, 198, 245, .22), 0 10px 30px -14px rgba(70, 198, 245, .45);
    --shadow-sm:     0 2px 8px rgba(2, 5, 12, .45);
    --shadow:        0 12px 30px -18px rgba(2, 5, 12, .9), 0 2px 6px rgba(2, 5, 12, .5);
    --shadow-lg:     0 28px 60px -32px rgba(2, 5, 12, .95);

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

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

    --fs-body: 15px;
    --lh-body: 1.72;
    --measure: 72ch;

    /* layout */
    --nav-w: 258px;
    --pad-x: 16px;
    --gap: 22px;
}

/* ------------------------------- reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd,
ul, ol, pre, fieldset, legend, table, th, td {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-color: var(--border-strong) transparent;
}

body {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(1100px 520px at 82% -8%, rgba(122, 108, 240, .18), transparent 62%),
        radial-gradient(760px 420px at -10% 4%, rgba(70, 198, 245, .12), transparent 60%),
        linear-gradient(180deg, #080e1b 0%, var(--bg) 46%, var(--bg-deep) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
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(70, 198, 245, .3); color: #fff; }

a { color: inherit; text-decoration: none; }

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

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

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

h1 {
    font-size: clamp(19px, 4.6vw, 23px);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    max-width: 34ch;
}

h1::after {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-top: 14px;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h2 { font-size: 17px; margin: 30px 0 12px; }
h3 { font-size: 15.5px; margin: 24px 0 10px; color: #dae4f7; }
h4 { font-size: 14px; margin: 20px 0 8px; color: #cbd8ef; }
h5, h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin: 18px 0 8px;
}

p { margin: 0 0 16px; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--text-strong); font-weight: 700; }
em, i { color: #d6e2f7; }
small { font-size: 12.5px; color: var(--muted); }

/* -------------------------- app layout shell --------------------------- */
.site-layout {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: stretch;
}

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

/* ------------------------------ side nav ------------------------------- */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: min(84vw, var(--nav-w));
    height: 100vh;
    height: 100dvh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(122, 108, 240, .12), transparent 220px),
        var(--bg-veil);
    border-right: 1px solid var(--border);
    box-shadow: 24px 0 60px -40px #000;
    transform: translateX(-104%);
    transition: transform .28s ease;
}

.side-nav.open { transform: translateX(0); }

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

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

.side-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 1;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    transition: color .2s ease, border-color .2s ease;
}
.side-close-btn:hover { color: #fff; border-color: var(--accent); }

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

.side-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color .18s ease, background-color .18s ease;
}

.side-menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 0;
    border-radius: var(--r-pill);
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    transform: translateY(-50%);
    transition: height .2s ease;
}

.side-menu-item:hover,
.side-menu-item:focus-visible {
    color: var(--text-strong);
    background: var(--surface-soft);
}
.side-menu-item:hover::before { height: 42%; }

.side-menu-item.active {
    color: var(--text-strong);
    background: linear-gradient(90deg, rgba(70, 198, 245, .14), rgba(122, 108, 240, .07));
    font-weight: 600;
}
.side-menu-item.active::before { height: 62%; }

.side-footer-lang {
    padding: 14px;
    border-top: 1px solid var(--border-soft);
}

.lang-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}
.lang-selector:hover { border-color: var(--border-strong); background: var(--surface-2); }

/* --------------------------- sticky top bar ---------------------------- */
.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: rgba(8, 13, 24, .84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
}

.top-header::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(70, 198, 245, .5), rgba(122, 108, 240, .35), transparent);
    opacity: .7;
}

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

.burger-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--surface);
    transition: border-color .2s ease;
}
.burger-btn:hover { border-color: var(--accent); }
.burger-btn span {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
}
.burger-btn span:nth-child(2) { width: 12px; background: var(--accent); }

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(70, 198, 245, .14);
}

.search-input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: none;
    font-size: 13.5px;
    color: var(--text);
}
.search-input::placeholder { color: var(--muted-2); }

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

/* ------------------------------- buttons ------------------------------- */
.btn-cc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.btn-cc-primary {
    color: var(--cta-ink);
    background: linear-gradient(135deg, var(--cta), #86e06a);
    box-shadow: 0 10px 24px -14px rgba(185, 244, 90, .8);
}
.btn-cc-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -14px rgba(185, 244, 90, .95);
}
.btn-cc-primary:active { transform: translateY(0); }

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

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .01em;
    transition: color .2s ease, gap .2s ease;
}
.btn-link::after { content: "→"; font-size: 13px; }
.btn-link:hover { color: #9be0ff; gap: 10px; }

/* ------------------------------- content ------------------------------- */
.page-content {
    flex: 1 1 auto;
    width: 100%;
    padding: 22px var(--pad-x) 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* horizontal category rail */
.category-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin: 0 calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.category-slider::-webkit-scrollbar { height: 3px; }
.category-slider::-webkit-scrollbar-thumb { background: var(--border-strong); border: 0; }

.category-badge {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.category-badge:hover {
    color: var(--text-strong);
    border-color: var(--border-strong);
    background: var(--surface-2);
}
.category-badge.active {
    color: var(--accent-ink);
    background: linear-gradient(135deg, var(--accent), #63d7f7);
    border-color: transparent;
    box-shadow: 0 10px 24px -16px rgba(70, 198, 245, .95);
}
.search-badge {
    padding: 8px 12px;
    border-radius: 50%;
    line-height: 1;
}

/* section headers */
.section-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    padding-left: 16px;
    margin-bottom: 14px;
}
.section-row-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    border-radius: var(--r-pill);
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.section-badge-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-strong);
}

.link-all {
    flex: 0 0 auto;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.link-all:hover { color: var(--accent); border-color: currentColor; }

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

.game-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .3s ease;
}
.game-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(4, 8, 16, .55));
    opacity: .8;
    pointer-events: none;
}
.game-item:hover,
.game-item:focus-within {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 34px -20px rgba(70, 198, 245, .7), var(--shadow);
}
.game-item:hover img { transform: scale(1.05); filter: saturate(1.1); }

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

.provider-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 18px 12px;
    text-align: center;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.provider-pill:hover {
    transform: translateY(-3px);
    border-color: var(--accent-3);
    box-shadow: 0 16px 30px -22px rgba(47, 216, 192, .9);
}
.provider-pill strong { font-size: 13px; color: var(--text-strong); font-weight: 600; }
.provider-pill span { font-size: 11px; color: var(--muted-2); letter-spacing: .04em; }

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

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 18px 14px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
    opacity: .75;
}
.stat-icon { font-size: 22px; line-height: 1; }
.stat-number {
    margin: 8px 0 4px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted-2);
    line-height: 1.5;
}

/* --------------------------- editorial block --------------------------- */
.content-block {
    padding: 22px 18px;
    background:
        radial-gradient(900px 300px at 100% 0%, rgba(122, 108, 240, .09), transparent 65%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

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

.content-block h2 {
    font-size: 17px;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft);
}
.content-block > h2:first-child,
.content-block > h1:first-child,
.content-block > h3:first-child { margin-top: 0; }

.content-block h3 { font-size: 15px; color: #d9e5fa; }

.content-block p {
    color: #bccbe3;
    line-height: 1.78;
    margin-bottom: 16px;
}

/* in-content links */
.content-block a:not(.btn-cc):not(.btn-link):not(.category-badge) {
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1px solid rgba(70, 198, 245, .35);
    transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
.content-block a:not(.btn-cc):not(.btn-link):not(.category-badge):hover {
    color: #9fe4ff;
    border-bottom-color: currentColor;
}

/* lists */
.content-block ul,
.content-block ol {
    margin: 0 0 18px;
    padding-left: 4px;
    color: #bccbe3;
    max-width: var(--measure);
}
.content-block li { position: relative; padding-left: 22px; margin-bottom: 9px; }

.content-block ul > li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .68em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.content-block ol { counter-reset: li-counter; }
.content-block ol > li { padding-left: 30px; }
.content-block ol > li::before {
    counter-increment: li-counter;
    content: counter(li-counter);
    position: absolute;
    left: 0;
    top: .1em;
    min-width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(70, 198, 245, .1);
    border: 1px solid rgba(70, 198, 245, .25);
    border-radius: var(--r-xs);
}
.content-block li > ul,
.content-block li > ol { margin: 8px 0 0; }

/* quotes */
blockquote {
    position: relative;
    margin: 22px 0;
    padding: 16px 18px 16px 22px;
    color: #d3dff2;
    font-size: 15px;
    line-height: 1.7;
    background: linear-gradient(90deg, rgba(122, 108, 240, .1), transparent 70%);
    border-left: 3px solid var(--accent-2);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    max-width: var(--measure);
}
blockquote p { color: inherit; }
blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 12.5px;
    color: var(--muted-2);
}

/* code */
code, kbd, samp {
    font-family: var(--font-mono);
    font-size: .88em;
}
:not(pre) > code {
    padding: 2px 6px;
    color: #8fe9d8;
    background: rgba(47, 216, 192, .09);
    border: 1px solid rgba(47, 216, 192, .2);
    border-radius: var(--r-xs);
    overflow-wrap: anywhere;
}
pre {
    margin: 20px 0;
    padding: 16px;
    overflow-x: auto;
    color: #cfe0f5;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-3);
    border-radius: var(--r-md);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, .35);
    line-height: 1.6;
    max-width: 100%;
}
pre code { color: inherit; background: none; border: 0; padding: 0; }

/* tables */
table {
    margin: 20px 0;
    font-size: 13.5px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
thead th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(70, 198, 245, .07);
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-strong);
}
tbody td {
    padding: 12px 14px;
    color: #bccbe3;
    border-bottom: 1px solid var(--border-soft);
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, .025); color: var(--text); }

/* ------------------------------- bonuses ------------------------------- */
.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    background: linear-gradient(160deg, var(--surface-2), var(--surface) 70%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.bonus-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.bonus-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c8bdff;
    background: rgba(122, 108, 240, .14);
    border: 1px solid rgba(122, 108, 240, .3);
    border-radius: var(--r-xs);
}
.bonus-amount {
    margin: 4px 0 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--text-strong);
}
.bonus-desc {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.62;
    color: var(--muted);
}
.bonus-card .btn-link { margin-top: auto; }

/* -------------------------------- footer ------------------------------- */
.site-footer {
    margin-top: auto;
    padding: 32px var(--pad-x) 26px;
    background: linear-gradient(180deg, rgba(10, 17, 32, .6), var(--bg-deep));
    border-top: 1px solid var(--border);
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 26px;
}

.providers-text-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0 22px;
}
.provider-bubble {
    padding: 6px 12px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted-2);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    transition: color .18s ease, border-color .18s ease;
}
.provider-bubble:hover { color: var(--text); border-color: var(--border-strong); }

.support-box h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
}
.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px 8px 0;
    padding: 10px 15px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.support-link:hover {
    border-color: var(--accent);
    background: var(--surface-2);
    transform: translateY(-1px);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links-list a {
    font-size: 13px;
    color: var(--muted);
    transition: color .18s ease, padding-left .18s ease;
}
.footer-links-list a:hover { color: var(--accent); padding-left: 4px; }

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

.age-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    color: #ffd9d9;
    background: rgba(224, 92, 92, .12);
    border: 1px solid rgba(224, 92, 92, .35);
    border-radius: var(--r-xs);
}

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

/* =============================== 480px ================================= */
@media (min-width: 480px) {
    :root { --pad-x: 22px; --fs-body: 15.5px; }

    h1 { font-size: clamp(21px, 3.2vw, 25px); }
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(126px, 1fr)); gap: 14px; }
    .providers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .content-block { padding: 26px 22px; }
    .footer-bottom-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* =============================== 768px ================================= */
@media (min-width: 768px) {
    :root { --pad-x: 30px; --fs-body: 16px; --gap: 28px; }

    h1 { font-size: clamp(24px, 2.6vw, 28px); margin-bottom: 16px; }
    h2 { font-size: 20px; }
    h3 { font-size: 17px; }

    .page-content { padding: 28px var(--pad-x) 56px; gap: 34px; }
    .top-header { padding: 12px var(--pad-x); gap: 20px; }
    .btn-cc { padding: 10px 20px; font-size: 13px; }

    .section-badge-title { font-size: 18px; }
    .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
    .providers-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .stats-bar { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
    .stat-card { padding: 22px 16px; }
    .stat-number { font-size: 24px; }

    .bonuses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .content-block { padding: 34px 32px; }
    .content-block h2 { font-size: 19px; }

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

    table { display: table; white-space: normal; }
}

/* =============================== 1024px ================================ */
@media (min-width: 1024px) {
    :root { --pad-x: 38px; }

    /* persistent sidebar */
    .side-nav {
        position: sticky;
        top: 0;
        height: 100vh;
        height: 100dvh;
        width: var(--nav-w);
        transform: none;
        box-shadow: none;
    }
    .side-close-btn,
    .burger-btn { display: none; }
    .menu-backdrop,
    .menu-backdrop.active { display: none; }

    h1 { font-size: clamp(26px, 1.9vw, 30px); }

    .page-content {
        padding: 34px var(--pad-x) 64px;
        gap: 40px;
        width: 100%;
        max-width: 1180px;
        margin-inline: auto;
    }

    .games-grid { grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); }
    .providers-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .bonuses-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .site-footer > * {
        width: 100%;
        max-width: 1180px;
        margin-inline: auto;
    }
    .footer-top-row { grid-template-columns: 2.2fr 1fr; gap: 56px; }
    .content-block { padding: 40px 40px; }
}

/* =============================== 1280px ================================ */
@media (min-width: 1280px) {
    :root { --pad-x: 48px; --nav-w: 268px; }
    h1 { font-size: 31px; }
    .page-content { max-width: 1260px; }
    .site-footer > * { max-width: 1260px; }
}

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

@media print {
    body { background: #fff; color: #111; }
    .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: #111; }
}