/* ===========================================================
   Spinora — social casino landing
   Palette: deep indigo + royal gold + emerald CTA
   =========================================================== */

:root {
    --indigo-900: #1a1140;
    --indigo-800: #241657;
    --indigo-700: #2f1d70;
    --indigo-600: #3d2790;
    --violet-500: #6d3bd1;
    --violet-400: #8b5cf6;

    --gold-500: #ffce45;
    --gold-400: #ffd966;
    --gold-300: #ffe9a3;

    --emerald-600: #14a866;
    --emerald-500: #1bc77c;
    --emerald-400: #2be591;

    --pink-400: #ff5fa2;

    --ink: #ffffff;
    --ink-soft: #cfc6f0;
    --ink-dim: #9d93c4;

    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.12);

    --bg-deep: #0c0726;
    --cell-top: #1c1450;
    --cell-bot: #100c30;
    --surface-solid: #15103a;

    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --maxw: 1160px;

    --font-head: 'Baloo 2', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(1200px 600px at 80% -10%, color-mix(in srgb, var(--violet-400) 35%, transparent), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, color-mix(in srgb, var(--pink-400) 18%, transparent), transparent 55%),
        linear-gradient(180deg, var(--indigo-900), var(--indigo-800) 60%, var(--indigo-900));
    background-attachment: fixed;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-400); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem;
    padding: 14px 28px; border-radius: 999px; border: 0; cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
    text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-cta {
    color: #06351f; background: linear-gradient(180deg, var(--emerald-400), var(--emerald-600));
    box-shadow: 0 10px 24px rgba(27, 199, 124, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-cta:hover { filter: brightness(1.05); }

.btn-gold {
    color: #4a2f00; background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 10px 24px rgba(255, 206, 69, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-ghost {
    color: var(--ink); background: var(--surface-2); border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn-lg { font-size: 1.18rem; padding: 18px 40px; }

/* ---------- Top compliance bar ---------- */
.topbar {
    display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
    background: var(--bg-deep); color: var(--ink-soft);
    font-size: 0.82rem; padding: 8px 16px; text-align: center;
}
.topbar strong { color: var(--gold-300); }

.badge-18 {
    display: inline-grid; place-items: center; min-width: 34px; height: 34px;
    border-radius: 50%; font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
    color: #fff; background: #e23b5a; border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(226, 59, 90, 0.5); flex: none;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in srgb, var(--bg-deep) 82%, transparent); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; }
.logo:hover { text-decoration: none; }
.logo-mark { font-size: 1.7rem; filter: drop-shadow(0 2px 6px rgba(255, 206, 69, 0.6)); }
.logo-text { background: linear-gradient(90deg, var(--gold-300), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.main-nav { display: flex; gap: 22px; margin-left: 18px; }
.main-nav a { color: var(--ink-soft); font-weight: 600; font-size: 0.98rem; }
.main-nav a:hover, .main-nav a.active { color: #fff; text-decoration: none; }
.header-cta { margin-left: auto; }

.nav-toggle { display: none; background: var(--surface-2); border: 1px solid var(--border); color: #fff; font-size: 1.3rem; border-radius: 10px; padding: 6px 12px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 56px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: center; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; color: var(--gold-300); font-weight: 600;
    margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero h1 .hl { background: linear-gradient(90deg, var(--gold-300), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); margin: 18px 0 26px; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 0.82rem; color: var(--ink-dim); margin-top: 16px; }

.hero-stats { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats .stat { }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--gold-400); }
.hero-stats .lbl { font-size: 0.82rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero art / mascot */
.hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-coin { position: absolute; font-size: 2.2rem; animation: float 5s ease-in-out infinite; filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)); }
.hero-coin.c1 { top: 6%; left: 12%; animation-delay: 0s; }
.hero-coin.c2 { top: 18%; right: 8%; animation-delay: .8s; font-size: 1.6rem; }
.hero-coin.c3 { bottom: 12%; left: 4%; animation-delay: 1.4s; font-size: 1.9rem; }
.hero-coin.c4 { bottom: 20%; right: 14%; animation-delay: 2s; font-size: 1.4rem; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

.mascot {
    width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, rgba(255, 206, 69, 0.35), transparent 65%);
    display: grid; place-items: center; font-size: 9rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* ---------- Section scaffolding ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }
.kicker { color: var(--gold-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; }

/* ---------- Slot machine ---------- */
.slot-section { padding: 48px 0 64px; }
.slot-machine {
    max-width: 760px; margin: 0 auto;
    background: linear-gradient(180deg, var(--indigo-700), var(--indigo-800));
    border: 2px solid rgba(255, 206, 69, 0.45);
    border-radius: 26px; padding: 22px; box-shadow: var(--shadow);
}
.slot-topbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.slot-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; }
.slot-title .tag { font-size: 0.7rem; background: var(--emerald-600); color: #fff; padding: 3px 8px; border-radius: 6px; font-family: var(--font-body); font-weight: 700; }

.slot-meter { display: flex; gap: 10px; flex-wrap: wrap; }
.meter {
    background: var(--bg-deep); border: 1px solid var(--border); border-radius: 12px;
    padding: 8px 14px; min-width: 110px; text-align: center;
}
.meter .meter-lbl { font-size: 0.68rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.meter .meter-val { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--gold-400); }
.meter.win .meter-val { color: var(--emerald-400); }

.reels {
    position: relative;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    max-width: 480px; margin: 0 auto;
    background: var(--bg-deep); border-radius: 16px; padding: 14px;
    border: 1px solid var(--border);
}
.reel { display: grid; grid-template-rows: repeat(3, 1fr); gap: 10px; }
.cell {
    position: relative;
    aspect-ratio: 1; display: grid; place-items: center;
    background: radial-gradient(circle at 50% 40%, var(--cell-top), var(--cell-bot));
    border-radius: 14px; border: 1px solid rgba(255,255,255,.06);
    transition: transform .1s, box-shadow .2s;
}

/* Winning payline overlay */
.payline-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; overflow: visible; }
.payline-svg polyline {
    fill: none; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; opacity: .92;
    filter: drop-shadow(0 0 6px currentColor);
    stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: draw-line .55s ease forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }

/* WILD badge on the fox coin */
.cell.is-wild::after {
    content: 'WILD'; position: absolute; bottom: 7%; left: 50%; transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500)); color: #4a2f00;
    font-family: var(--font-head); font-weight: 800; font-size: 0.6rem; letter-spacing: 0.08em;
    padding: 2px 9px; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,.45);
    z-index: 4; pointer-events: none;
}
.cell img.sym {
    width: 96%; height: 96%; object-fit: contain; pointer-events: none;
    user-select: none; -webkit-user-drag: none;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.45));
}
.cell.spinning { animation: blur .25s linear infinite; }
@keyframes blur { 0% { filter: blur(0); } 50% { filter: blur(3px); transform: translateY(-4px); } 100% { filter: blur(0); } }
.cell.win { box-shadow: 0 0 0 3px var(--gold-500), 0 0 22px rgba(255, 206, 69, 0.8); animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.14); } 100% { transform: scale(1); } }

.slot-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.bet-control { display: flex; align-items: center; gap: 10px; background: var(--bg-deep); border: 1px solid var(--border); border-radius: 12px; padding: 6px 10px; }
.bet-control button { width: 34px; height: 34px; border-radius: 8px; border: 0; background: var(--surface-2); color: #fff; font-size: 1.2rem; cursor: pointer; font-family: var(--font-head); }
.bet-control button:hover { background: rgba(255,255,255,.18); }
.bet-control .bet-val { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; min-width: 70px; text-align: center; color: var(--gold-300); }
.bet-control .bet-lbl { font-size: 0.7rem; color: var(--ink-dim); text-transform: uppercase; }

.spin-btn { font-size: 1.3rem; padding: 16px 46px; }
.spin-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.slot-msg { text-align: center; margin-top: 14px; min-height: 24px; font-weight: 600; color: var(--gold-300); }
.slot-msg.big { font-size: 1.3rem; color: var(--emerald-400); animation: pop .5s ease; }

.slot-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.slot-foot small { color: var(--ink-dim); font-size: 0.78rem; }

.paytable { margin-top: 22px; }
.paytable summary { cursor: pointer; color: var(--gold-300); font-weight: 600; }
.paytable-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 14px; }
.pay-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px; text-align: center; }
.pay-item img.sym { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 4px; display: block; }
.pay-item .mult { font-family: var(--font-head); font-weight: 700; color: var(--gold-400); font-size: 0.82rem; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255, 206, 69, 0.4); }
.feature-card .cyberknightworld { font-size: 2.4rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Games showcase ---------- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.game-card {
    border-radius: var(--radius); overflow: hidden; position: relative;
    border: 1px solid var(--border); background: var(--surface);
    transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-thumb { aspect-ratio: 4/3; display: grid; place-items: center; font-size: 4rem; position: relative; }
.game-card h3 { font-size: 1.1rem; padding: 14px 16px 4px; }
.game-card p { padding: 0 16px; color: var(--ink-dim); font-size: 0.85rem; }
.game-card .game-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
.game-card .free-tag { background: var(--emerald-600); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; }

/* ---------- Story / text blocks ---------- */
.story-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.story.reverse .story-art { order: 2; }
.story-art {
    aspect-ratio: 1; max-width: 360px; width: 100%; margin: 0 auto; position: relative;
    border-radius: 28px; display: grid; place-items: center;
    background: radial-gradient(circle at 50% 40%, rgba(255, 206, 69, 0.22), transparent 62%),
                linear-gradient(160deg, var(--indigo-700), var(--indigo-800));
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.story-art .art-main { font-size: 7rem; filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.5)); }
.story-art .art-chip {
    position: absolute; font-size: 2rem; background: var(--bg-deep); border: 1px solid var(--border);
    width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
    box-shadow: var(--shadow); animation: float 5s ease-in-out infinite;
}
.story-art .ac1 { top: -14px; left: 24px; }
.story-art .ac2 { bottom: 18px; right: -14px; animation-delay: 1s; }
.story-art .ac3 { bottom: -14px; left: 40px; animation-delay: 2s; }
.story-copy h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin: 10px 0 16px; }
.story-copy p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 14px; }
.story-copy .story-cta { margin-top: 10px; }
.story-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.story-pills span {
    background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
    padding: 7px 16px; font-size: 0.88rem; color: var(--gold-300); font-weight: 600;
}

/* ---------- Testimonials / social proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.quote .stars { color: var(--gold-400); letter-spacing: 2px; margin-bottom: 10px; }
.quote p { color: var(--ink-soft); font-style: italic; }
.quote .who { margin-top: 14px; font-weight: 700; color: #fff; font-style: normal; }

/* ---------- Responsible gaming band ---------- */
.care-band {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.care-inner { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 40px 0; }
.care-inner .care-cyberknightworld { font-size: 3.4rem; }
.care-inner h2 { font-size: 1.6rem; margin-bottom: 8px; }
.care-inner p { color: var(--ink-soft); }
.care-inner .care-links { display: flex; gap: 18px; margin-top: 12px; flex-wrap: wrap; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; padding: 72px 0; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3rem); }
.cta-final p { color: var(--ink-soft); margin: 14px auto 28px; max-width: 480px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; }
.footer-brand .logo--footer { margin-bottom: 12px; }
.footer-tagline { color: var(--ink-soft); margin-bottom: 14px; }
.footer-company { color: var(--ink-dim); font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--ink-soft); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-300); }
.footer-care p { color: var(--ink-soft); font-size: 0.9rem; }
.care-links { list-style: none; margin-top: 12px; }
.care-links li { margin-bottom: 8px; }

.footer-disclaimer {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 16px 18px; margin: 30px 0 18px;
}
.footer-disclaimer p { color: var(--ink-dim); font-size: 0.82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--ink-dim); font-size: 0.82rem; border-top: 1px solid var(--border); padding-top: 18px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100;
    max-width: 720px; margin: 0 auto;
    background: var(--surface-solid); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; } /* beats .cookie-banner{display:flex} so hidden actually hides */
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); flex: 1 1 320px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- Legal / content pages ---------- */
.page-hero { padding: 48px 0 24px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--ink-soft); margin-top: 10px; }
.legal { padding: 40px 0 64px; }
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 1.4rem; margin: 30px 0 10px; color: var(--gold-300); }
.legal-body h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 12px; }
.legal-body a { color: var(--gold-400); }
.legal-callout {
    background: var(--surface); border: 1px solid rgba(255, 206, 69, 0.35); border-left: 4px solid var(--gold-500);
    border-radius: var(--radius-sm); padding: 16px 20px; margin: 24px 0;
}
.legal-callout p { color: var(--ink); margin: 0; }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 30px; }
.toc h4 { margin-bottom: 10px; }
.toc ul { list-style: none; }
.toc li { margin-bottom: 6px; }
.updated { color: var(--ink-dim); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .story-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .story.reverse .story-art { order: -1; }
    .story-art { max-width: 260px; }
    .story-art .art-main { font-size: 5.2rem; }
    .story-pills { justify-content: center; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-art { order: -1; min-height: 240px; }
    .mascot { font-size: 6rem; width: 220px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .care-inner { grid-template-columns: 1fr; text-align: center; }
    .care-inner .care-links { justify-content: center; }
}

@media (max-width: 680px) {
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .main-nav.open {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--indigo-800); padding: 16px 20px; gap: 14px; border-bottom: 1px solid var(--border);
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .cell { font-size: 2rem; }
    .slot-controls { justify-content: center; }
}
