@charset "UTF-8";
/* ==========================================================================
   YONO GAMES - "INDEX"
   --------------------------------------------------------------------------
   Near-black catalogue. The chrome is monochrome so the app artwork carries
   every bit of colour on the page. Accent green is lifted from the logo.

   DESIGN_VARIANCE 7 / MOTION_INTENSITY 5 / VISUAL_DENSITY 6

   SHAPE RULE (locked, applied everywhere):
     - layout surfaces, plates, panels ....... radius 0
     - app artwork only ...................... radius 4px
     - interactive pills, badges, avatars .... radius 999px
   COLOUR RULE (locked):
     - one accent: --acid (brand green). Amber appears only on the 18+ /
       responsible-gaming band, where it is semantic, not decorative.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    color-scheme: dark;

    /* Ground - near-black, never #000 */
    --ink-0:   #050506;
    --ink-1:   #0a0a0c;
    --ink-2:   #101013;
    --ink-3:   #17181b;
    --ink-4:   #202126;

    /* Type */
    --bone:    #f4f4f2;
    --grey:    #93949b;
    --dim:     #7e7f88;
    --faint:   #3a3b41;   /* decorative only: leaders, empty stars, chevrons */

    /* Accent - taken from the logo gradient */
    --acid:    #31e07a;
    --acid-dk: #17a355;
    --acid-w:  rgba(49, 224, 122, .14);

    /* Semantic only */
    --amber:   #e8b53c;

    /* Rules */
    --rule:    rgba(255, 255, 255, .09);
    --rule-2:  rgba(255, 255, 255, .16);

    /* Shape */
    --r-art:   4px;
    --r-pill:  999px;

    /* Rhythm */
    --pad:     20px;
    --pad-lg:  40px;
    --bay:     60px;   /* vertical gap between page sections */
    --max:     1320px;

    /* Type stacks */
    --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

    /* Motion */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --t1:   160ms var(--ease);
    --t2:   280ms var(--ease);
}

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

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

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--ink-0);
    color: var(--bone);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.62;
    font-feature-settings: "ss01", "cv01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.08;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--acid); color: var(--ink-0); }

:where(a, button, [tabindex]):focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 3px;
}

.u-hide { display: none !important; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Shell
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.site-main { flex: 1 0 auto; }

.apk__side::-webkit-scrollbar,
.toc::-webkit-scrollbar { width: 0; height: 0; }

.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* Mono figures - used for every number on the site */
.fig {
    font-family: var(--mono);
    font-feature-settings: "tnum";
    letter-spacing: -.02em;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--r-pill);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: background var(--t1), color var(--t1), border-color var(--t1), transform var(--t1);
}
.btn .ico { font-size: 18px; }
.btn:active { transform: scale(.98); }

/* Primary is bone-on-black: the highest-contrast pairing available here. */
.btn--fill {
    background: var(--bone);
    color: var(--ink-0);
}
.btn--fill:hover { background: #fff; }

.btn--line {
    border: 1px solid var(--rule-2);
    color: var(--bone);
}
.btn--line:hover { border-color: var(--bone); background: rgba(255, 255, 255, .05); }

.btn--acid {
    background: var(--acid);
    color: #04240f;
}
.btn--acid:hover { background: #45ec8a; }

.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.top {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(5, 5, 6, .86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--rule);
}

.top__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 64px;
}

.mark { display: flex; align-items: center; gap: 10px; }
.mark img {
    width: 30px; height: 30px;
    border-radius: var(--r-art);
}
.mark b {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.035em;
}

.menu { display: flex; align-items: center; gap: 26px; }

.menu a {
    position: relative;
    color: var(--grey);
    font-size: 14.5px;
    letter-spacing: -.01em;
    transition: color var(--t1);
}
.menu a:hover { color: var(--bone); }

.menu a.on { color: var(--bone); }
.menu a.on::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -22px;
    height: 2px;
    background: var(--acid);
}

.menu__go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1px solid var(--rule-2);
    border-radius: var(--r-pill);
    color: var(--bone) !important;
    font-weight: 500;
    transition: border-color var(--t1), background var(--t1);
}
.menu__go:hover { border-color: var(--bone); background: rgba(255, 255, 255, .05); }
.menu__go::after { display: none !important; }
.menu__go .ico { font-size: 15px; color: var(--acid); }

.burger {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
}
.burger .ico { font-size: 20px; }
.burger .ico--x { display: none; }
.burger[aria-expanded="true"] .ico--m { display: none; }
.burger[aria-expanded="true"] .ico--x { display: block; }

/* --------------------------------------------------------------------------
   6. Hero - asymmetric split, text left / featured plate right
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}
.hero::before {
    /* one soft ground light, low opacity, keeps the black from going flat */
    content: "";
    position: absolute;
    left: -10%; top: -40%;
    width: 70%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(49, 224, 122, .09), transparent 66%);
    pointer-events: none;
}

.hero__in {
    position: relative;
    display: grid;
    gap: 44px;
    padding-block: var(--bay);
}

.hero__say { align-self: center; }

.hero h1 {
    font-size: clamp(2.5rem, 8.4vw, 4.4rem);
    letter-spacing: -.045em;
    text-wrap: balance;
}
.hero h1 i { font-style: normal; color: var(--acid); }

.hero__sub {
    margin-top: 22px;
    color: var(--grey);
    font-size: clamp(1rem, 2.4vw, 1.12rem);
    text-wrap: pretty;
}

.hero__act { margin-top: 34px; }

/* Featured plate ----------------------------------------------------------- */
/* In the hero the card sits on photography, so it goes translucent and lets
   the scene show through instead of punching a solid hole in the image. */
.hero .plate {
    background: rgba(8, 9, 11, .62);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-color: rgba(255, 255, 255, .14);
}
.hero .plate__art { box-shadow: 0 18px 50px -18px rgba(0, 0, 0, .9); }

.plate {
    position: relative;
    display: block;
    border: 1px solid var(--rule);
    background: var(--ink-1);
    padding: 18px;
    transition: border-color var(--t2);
}
.plate:hover { border-color: var(--rule-2); }

.plate__art {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--r-art);
    background: var(--ink-2);
}
.plate__art img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}
.plate:hover .plate__art img { transform: scale(1.04); }

.plate__tag {
    position: absolute;
    left: 12px; top: 12px;
    padding: 5px 11px;
    border-radius: var(--r-pill);
    background: rgba(5, 5, 6, .78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--acid);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plate__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}
.plate__meta h3 {
    font-size: 1.32rem;
    letter-spacing: -.035em;
}
.plate__meta h3 a { transition: color var(--t1); }
.plate:hover .plate__meta h3 a { color: var(--acid); }
.plate__meta p {
    margin-top: 5px;
    color: var(--dim);
    font-size: 13px;
}
.plate__num {
    margin: 0;
    text-align: right;
    color: var(--acid);
    font-size: 1.3rem;
}
.plate__num small {
    display: block;
    color: var(--dim);
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* Generated casino backdrop. The image runs at full strength; legibility is
   bought with a gradient plate under the copy column rather than by dimming
   the whole frame. */
.hero__bg,
.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero__bg {
    background-size: cover;
    background-position: center right;
    opacity: 1;
}
.hero__scrim {
    background:
        /* keeps the copy column dark enough for AA text */
        /* shade band behind the copy block, transparent above and below so the
           casino scene still reads at the top and bottom of the hero */
        linear-gradient(to bottom,
            rgba(5, 5, 6, 0) 0%,
            rgba(5, 5, 6, .6) 18%,
            rgba(5, 5, 6, .6) 78%,
            rgba(5, 5, 6, 0) 96%),
        linear-gradient(100deg,
            rgba(5, 5, 6, .95) 0%,
            rgba(5, 5, 6, .92) 38%,
            rgba(5, 5, 6, .5) 58%,
            rgba(5, 5, 6, .14) 78%,
            rgba(5, 5, 6, .04) 100%),
        /* seats the band into the page above and below */
        linear-gradient(to bottom,
            rgba(5, 5, 6, .42) 0%,
            rgba(5, 5, 6, .04) 28%,
            rgba(5, 5, 6, .1) 66%,
            var(--ink-0) 100%);
}
/* the CSS-only ground light is redundant once a photo is behind everything */
.hero--shot::before { display: none; }
/* hero copy sits on photography, so it runs brighter than default body text */
.hero--shot .hero__sub { color: #dfe0e4; }

/* --------------------------------------------------------------------------
   6b. APK page hero
   -------------------------------------------------------------------------- */
.apkhero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}
.apkhero__bg,
.apkhero__scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.apkhero__bg {
    background-size: cover;
    background-position: center;
}
.apkhero__scrim {
    background:
        /* a horizontal band of shade exactly where the copy sits, so the
           image can stay vivid above, below and to the right of it */
        linear-gradient(to bottom,
            rgba(5, 5, 6, 0) 0%,
            rgba(5, 5, 6, .72) 16%,
            rgba(5, 5, 6, .72) 74%,
            rgba(5, 5, 6, 0) 94%),
        linear-gradient(100deg,
            rgba(5, 5, 6, .9) 0%,
            rgba(5, 5, 6, .84) 40%,
            rgba(5, 5, 6, .5) 66%,
            rgba(5, 5, 6, .12) 84%,
            rgba(5, 5, 6, .04) 100%),
        linear-gradient(to bottom,
            rgba(5, 5, 6, .4) 0%,
            rgba(5, 5, 6, .06) 30%,
            rgba(5, 5, 6, .42) 72%,
            rgba(5, 5, 6, .82) 90%,
            var(--ink-0) 100%);
}
.apkhero__in {
    position: relative;
    z-index: 1;
    padding-block: 14px var(--bay);
}
.apkhero .crumbs {
    border-bottom: 0;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
}
.apkhero .crumbs ol { color: #c9cbd2; }
.apkhero .crumbs a { color: #dfe0e4; }
.apkhero .crumbs a:hover { color: var(--acid); }
.apkhero .crumbs .ico { color: #8f9199; }
.apkhero .crumbs [aria-current] { color: #fff; }
.apkhero__flags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.apkhero h1 {
    margin-top: 16px;
    font-size: clamp(1.75rem, 5vw, 2.6rem);
    letter-spacing: -.042em;
    text-wrap: balance;
}
.apkhero__blurb {
    margin-top: 12px;
    color: #dfe0e4;
    font-size: clamp(.95rem, 2.2vw, 1.05rem);
}

/* --------------------------------------------------------------------------
   7. Figure strip
   -------------------------------------------------------------------------- */
.strip { border-bottom: 1px solid var(--rule); }
.strip__in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.strip__cell {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
}
.strip__cell:nth-child(odd) { padding-right: 16px; }
.strip__cell:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--rule); }
.strip__cell b {
    color: var(--bone);
    font-family: var(--mono);
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -.03em;
}
.strip__cell span {
    color: var(--dim);
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   8. Section heads
   -------------------------------------------------------------------------- */
.bay { padding-block: var(--bay); }
/* neighbouring sections would otherwise stack 60 + 60; keep the gap at 60 */
.bay + .bay { padding-top: 0; }
.bay--tight { padding-block: var(--bay); }
.bay--tight + .bay, .bay + .bay--tight { padding-top: 0; }

.head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rule);
}
.head h2 {
    font-size: clamp(1.7rem, 4.6vw, 2.5rem);
    letter-spacing: -.04em;
}
.head p {
    margin-top: 10px;
    color: var(--grey);
    font-size: 15px;
}
.head__side {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   9. Rail - horizontal scroll-snap (Newest, Related)
   -------------------------------------------------------------------------- */
.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 74%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    overscroll-behavior-x: contain;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

.rail__nav { display: none; gap: 8px; }
.rail__nav button {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    color: var(--grey);
    transition: color var(--t1), border-color var(--t1);
}
.rail__nav button:hover { color: var(--bone); border-color: var(--bone); }
.rail__nav .ico { font-size: 16px; }

/* --------------------------------------------------------------------------
   10. Chart - ranked editorial rows (Hot). No card boxes.
   -------------------------------------------------------------------------- */
.chart { border-top: 1px solid var(--rule); }

.chart__row {
    display: grid;
    grid-template-columns: 34px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    transition: background var(--t1);
}
.chart__row:hover { background: rgba(255, 255, 255, .022); }

.chart__row > a { display: block; }

.chart__rank {
    margin: 0;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 12.5px;
    transition: color var(--t1);
}
.chart__row:hover .chart__rank { color: var(--acid); }

.chart__art {
    width: 56px; height: 56px;
    border-radius: var(--r-art);
    object-fit: cover;
    background: var(--ink-2);
}

.chart__name {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -.025em;
    transition: color var(--t1);
}
.chart__row:hover .chart__name { color: var(--acid); }

.chart__under {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    margin-top: 3px;
    color: var(--dim);
    font-size: 12.5px;
}
.chart__under .fig { color: var(--grey); }

.chart__cols { display: none; }

.chart__go {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    color: var(--grey);
    transition: all var(--t1);
}
.chart__go .ico { font-size: 15px; }
.chart__row:hover .chart__go { color: var(--ink-0); background: var(--acid); border-color: var(--acid); }

/* --------------------------------------------------------------------------
   11. Index grid - asymmetric, mixed cell sizes (All Games)
   -------------------------------------------------------------------------- */
.index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    background: var(--ink-0);
    transition: background var(--t2);
}
.tile:hover { background: var(--ink-2); }

.tile__art {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--r-art);
    background: var(--ink-2);
}
.tile__art img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 550ms var(--ease);
}
.tile:hover .tile__art img { transform: scale(1.05); }

.tile__name {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: -.025em;
    transition: color var(--t1);
}
.tile:hover .tile__name { color: var(--acid); }

.tile__line {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
    color: var(--dim);
    font-size: 12px;
}
.tile__line .fig { color: var(--grey); }

.tile__bonus {
    color: var(--acid);
    font-family: var(--mono);
    font-size: 12px;
}

/* The directory is a uniform catalogue: 20 listings divide exactly into
   2, 4 and 5 columns, so no row is ever left with a hole in it. */

/* --------------------------------------------------------------------------
   12. Breadcrumb
   -------------------------------------------------------------------------- */
.crumbs { border-bottom: 1px solid var(--rule); }
.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding-block: 14px;
    list-style: none;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .02em;
    color: var(--dim);
}
.crumbs a { color: var(--grey); transition: color var(--t1); }
.crumbs a:hover { color: var(--acid); }
.crumbs .ico { font-size: 11px; color: var(--faint); }
.crumbs [aria-current] { color: var(--bone); }

/* --------------------------------------------------------------------------
   13. APK detail - pinned artwork column + scrolling article
   -------------------------------------------------------------------------- */
.apk {
    display: grid;
    gap: 0;
    padding-block: 0;
}

/* Left column: artwork, identity, actions, spec table */
.apk__side { border-bottom: 1px solid var(--rule); padding-block: var(--bay); }

.apk__art {
    width: 108px; height: 108px;
    border-radius: var(--r-art);
    object-fit: cover;
    background: var(--ink-2);
}

.apk__flags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

/* Detail-page state badges sit in normal flow, never absolutely placed. */
.flag {
    position: static;
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: var(--r-pill);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1;
}
.flag--v   { border: 1px solid var(--rule-2); color: var(--grey); }
.flag--new { background: var(--acid-w); border: 1px solid rgba(49, 224, 122, .34); color: var(--acid); }
.flag--hot { background: rgba(255, 255, 255, .08); border: 1px solid var(--rule-2); color: var(--bone); }

.apk__title {
    margin-top: 16px;
    font-size: clamp(1.65rem, 4.6vw, 2.15rem);
    letter-spacing: -.04em;
    text-wrap: balance;
}

.apk__blurb {
    margin-top: 12px;
    color: var(--grey);
    font-size: 14.5px;
}

.apk__act {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

/* Spec table - dot leaders, no boxes, one hairline per group */
.spec { margin-top: 30px; }
.spec + .spec { margin-top: 26px; }
.spec__cap {
    padding-bottom: 9px;
    border-bottom: 1px solid var(--rule);
    color: var(--dim);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.spec__row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-block: 9px;
    font-size: 13.5px;
}
/* label, then a dotted leader that stretches to the value */
.spec__row dt {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex: 1;
    min-width: 0;
    color: var(--dim);
}
.spec__row dt::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-bottom: 4px;
    background-image: radial-gradient(circle, var(--faint) 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
}
.spec__row dd {
    margin: 0;
    white-space: nowrap;
    color: var(--bone);
    font-family: var(--mono);
    font-size: 13px;
    text-align: right;
}
.spec__row dd.is-acid { color: var(--acid); }
.apk__stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.apk__stars .ico { font-size: 13px; color: var(--acid); }
.apk__stars .ico.is-off { color: var(--faint); }

.note {
    display: flex;
    gap: 11px;
    margin-top: 28px;
    padding: 14px 15px;
    border: 1px solid rgba(232, 181, 60, .26);
    background: rgba(232, 181, 60, .05);
}
.note .ico { font-size: 18px; color: var(--amber); margin-top: 2px; }
.note p { color: var(--grey); font-size: 12.5px; line-height: 1.6; }

/* Right column: the article */
.apk__read { padding-block: var(--bay) 0; min-width: 0; }

.tail {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding: 20px;
    border: 1px solid var(--rule);
    background: var(--ink-1);
}
.tail img { width: 56px; height: 56px; border-radius: var(--r-art); }
.tail h2 { font-size: 1.05rem; letter-spacing: -.03em; }
.tail p { margin-top: 4px; color: var(--dim); font-size: 12.5px; }
.tail .btn { grid-column: 1 / -1; }

@media (min-width: 560px) {
    .tail { grid-template-columns: auto 1fr auto; }
    .tail .btn { grid-column: auto; }
}

/* --------------------------------------------------------------------------
   14. Prose
   -------------------------------------------------------------------------- */
.prose { min-width: 0; }
.prose > * + * { margin-top: 17px; }

.prose h1 {
    margin-top: 46px;
    font-size: clamp(1.6rem, 4.2vw, 2.1rem);
    letter-spacing: -.038em;
}
.prose h2 {
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    font-size: clamp(1.3rem, 3.4vw, 1.72rem);
    letter-spacing: -.035em;
    line-height: 1.18;
    text-wrap: balance;
}
.prose h3 {
    margin-top: 34px;
    color: var(--acid);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -.015em;
}
.prose h4 { margin-top: 26px; font-size: .98rem; }

.prose p { color: var(--grey); }
.prose strong { color: var(--bone); font-weight: 600; }

.prose ul { list-style: none; display: grid; gap: 11px; }
.prose ul li {
    position: relative;
    padding-left: 22px;
    color: var(--grey);
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 2px; top: .72em;
    width: 8px; height: 1px;
    background: var(--acid);
}

.prose a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--bone); }

/* Buttons inside prose keep their own colours; the link rule above would
   otherwise paint the label the same green as an .btn--acid background. */
.prose a.btn { text-decoration: none; }
.prose a.btn--acid { color: #04240f; }
.prose a.btn--acid:hover { color: #04240f; }
.prose a.btn--fill { color: var(--ink-0); }
.prose a.btn--fill:hover { color: var(--ink-0); }
.prose a.btn--line { color: var(--bone); }
.prose a.btn--line:hover { color: var(--bone); }

.prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prose table td { padding: 9px 12px; border-bottom: 1px solid var(--rule); color: var(--grey); }

/* --------------------------------------------------------------------------
   14b. Article chapters
   Each h2 section picks its own layout, so the body is never a wall of prose.
   -------------------------------------------------------------------------- */
.prose .chap > * + * { margin-top: 17px; }
.prose .chap + .chap,
.prose .chap + .band,
.prose .band + .chap {
    margin-top: var(--bay);
    padding-top: var(--bay);
    border-top: 1px solid var(--rule);
}
.prose .chap > h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.prose .chap > h2 + * { margin-top: 20px; }

/* Feature cards - "Label: detail" lists ------------------------------------ */
.prose .fcards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    margin-top: 22px;
    background: var(--rule);
    border: 1px solid var(--rule);
    list-style: none;
}
.prose .fcard {
    display: flex;
    gap: 12px;
    padding: 18px;
    background: var(--ink-0);
    color: var(--grey);
    transition: background var(--t2);
}
.prose .fcard::before { content: none; }
.prose .fcard:hover { background: var(--ink-2); }
.fcard__i { flex: none; line-height: 1; }
.fcard__i .ico { font-size: 19px; color: var(--acid); }
.prose .fcard h4 {
    margin: 0 0 5px;
    color: var(--bone);
    font-size: .97rem;
    font-weight: 600;
    letter-spacing: -.02em;
}
.prose .fcard p { margin: 0; font-size: 14.5px; }

/* Checklist - plain lists --------------------------------------------------- */
.prose .checks {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px 28px;
    margin-top: 20px;
    list-style: none;
}
.prose .checks li {
    display: flex;
    gap: 10px;
    padding: 0;
    color: var(--grey);
}
.prose .checks li::before { content: none; }
.prose .checks .ico { font-size: 15px; color: var(--acid); margin-top: 5px; }

/* Steps - connected sequence ------------------------------------------------ */
.prose .steps {
    position: relative;
    margin-top: 26px;
    padding-left: 26px;
    list-style: none;
    display: grid;
    gap: 26px;
}
.prose .steps::before {
    content: "";
    position: absolute;
    left: 4px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(var(--acid), var(--rule));
}
.prose .step { position: relative; padding: 0; }
.prose .step::before { content: none; }
.step__dot {
    position: absolute;
    left: -26px; top: 7px;
    width: 9px; height: 9px;
    border-radius: var(--r-pill);
    background: var(--ink-0);
    border: 2px solid var(--acid);
}
.prose .step h3 { margin: 0 0 6px; color: var(--bone); }
.prose .step p { margin: 0; }

/* Pair cards - heading + body groups ---------------------------------------- */
.prose .pcards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    margin-top: 22px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.prose .pcard {
    padding: 20px;
    background: var(--ink-0);
    transition: background var(--t2);
}
.prose .pcard:hover { background: var(--ink-2); }
.prose .pcard h3 { margin: 0 0 8px; font-size: 1rem; }
.prose .pcard > * + * { margin-top: 10px; }
.prose .pcard p { font-size: 14.5px; }

/* FAQ accordion - native <details>, works with JS off ----------------------- */
.faq {
    margin-top: 22px;
    border-top: 1px solid var(--rule);
}
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 0;
    cursor: pointer;
    list-style: none;
    color: var(--bone);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -.02em;
    transition: color var(--t1);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--acid); }
.faq__item summary:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }
.faq__chev {
    flex: none;
    margin-top: 3px;
    font-size: 16px;
    color: var(--dim);
    transform: rotate(90deg);
    transition: transform var(--t2), color var(--t1);
}
.faq__item[open] .faq__chev { transform: rotate(-90deg); color: var(--acid); }
.faq__a { padding: 0 0 20px; }
.faq__a > * + * { margin-top: 12px; }
.faq__a p { color: var(--grey); }

/* Mid-article download band -------------------------------------------------- */
.prose .band {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(49, 224, 122, .28);
    background: linear-gradient(180deg, rgba(49, 224, 122, .07), rgba(49, 224, 122, .02));
}
.prose .band img { width: 56px; height: 56px; border-radius: var(--r-art); }
.prose .band h2 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1.05rem;
    letter-spacing: -.03em;
}
.prose .band p { margin-top: 4px; color: var(--dim); font-size: 12.5px; }
.prose .band .btn { grid-column: 1 / -1; }

@media (min-width: 560px) {
    .prose .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .prose .band { grid-template-columns: auto 1fr auto; }
    .prose .band .btn { grid-column: auto; }
}

@media (min-width: 900px) {
    .prose .fcards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .prose .fcard--wide { grid-column: 1 / -1; }
    .prose .pcards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .prose .pcard--wide { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   15. Responsible gaming band
   -------------------------------------------------------------------------- */
.care { border-top: 1px solid var(--rule); background: var(--ink-1); }
.care__in { display: grid; gap: 24px; padding-block: var(--bay); }

.care__age {
    width: 54px; height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--amber);
    border-radius: var(--r-pill);
    color: var(--amber);
    font-family: var(--mono);
    font-size: 15px;
}

.care h2 {
    font-size: 1.32rem;
    letter-spacing: -.035em;
    color: var(--amber);
}
.care p { margin-top: 12px; color: var(--grey); font-size: 14.5px; }
.care p + p { margin-top: 10px; }

.care__tips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}
.care__tips li {
    padding: 6px 13px;
    border: 1px solid rgba(232, 181, 60, .3);
    border-radius: var(--r-pill);
    color: #f0d69a;
    font-size: 12px;
    list-style: none;
}

/* --------------------------------------------------------------------------
   16. Static pages - contents rail + prose
   -------------------------------------------------------------------------- */
.doc__top {
    border-bottom: 1px solid var(--rule);
    padding-block: var(--bay);
}
.doc__top h1 {
    font-size: clamp(2rem, 6vw, 3.1rem);
    letter-spacing: -.045em;
    text-wrap: balance;
}
.doc__top p {
    margin-top: 18px;
    color: var(--grey);
    font-size: clamp(.98rem, 2.2vw, 1.06rem);
}

.doc { display: grid; gap: 40px; padding-block: var(--bay); }

.toc__cap {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
    color: var(--dim);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.toc ol { list-style: none; margin-top: 12px; display: grid; gap: 2px; counter-reset: toc; }
.toc a {
    display: flex;
    gap: 12px;
    padding: 7px 0;
    color: var(--dim);
    font-size: 13.5px;
    line-height: 1.4;
    transition: color var(--t1);
}
.toc a::before {
    counter-increment: toc;
    content: counter(toc, decimal-leading-zero);
    flex: none;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--dim);
    padding-top: 2px;
}
.toc a:hover { color: var(--bone); }
.toc a:hover::before { color: var(--acid); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.foot {
    flex: none;
    border-top: 1px solid var(--rule);
    background: var(--ink-0);
}
.foot__grid { display: grid; gap: 32px; padding-block: var(--bay) 34px; }
.foot__blurb { margin-top: 14px; color: var(--dim); font-size: 13.5px; }
.foot__age {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 12px;
    border: 1px solid var(--rule-2);
    border-radius: var(--r-pill);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
}
.foot h2 {
    margin-bottom: 14px;
    color: var(--dim);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.foot ul { list-style: none; display: grid; gap: 9px; }
.foot ul a { color: var(--grey); font-size: 13.5px; transition: color var(--t1); }
.foot ul a:hover { color: var(--acid); }

.foot__base {
    display: grid;
    gap: 8px;
    padding-block: 20px 30px;
    border-top: 1px solid var(--rule);
    color: var(--dim);
    font-size: 12.5px;
}

.up {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 70;
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule-2);
    border-radius: var(--r-pill);
    background: rgba(10, 10, 12, .9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--bone);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t2), transform var(--t2), visibility var(--t2), background var(--t1), color var(--t1);
}
.up .ico { font-size: 17px; }
.up.on { opacity: 1; visibility: visible; transform: none; }
.up:hover { background: var(--acid); color: var(--ink-0); border-color: var(--acid); }

/* --------------------------------------------------------------------------
   18. Reveal on scroll (IntersectionObserver adds .in)
   -------------------------------------------------------------------------- */
.rise { transition: opacity 560ms var(--ease), transform 560ms var(--ease); }

/* Only hide content when JS is present to reveal it again. Without the
   .js flag every .rise element renders at its final state. */
.js .rise { opacity: 0; transform: translateY(14px); }
.js .rise.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19. Breakpoints - 375 / 640 / 768 / 1024 / 1440
   -------------------------------------------------------------------------- */
@media (max-width: 899px) {
    .burger { display: inline-flex; }

    .menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px var(--pad) 20px;
        background: rgba(5, 5, 6, .98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--rule);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity var(--t2), transform var(--t2), visibility var(--t2);
    }
    .menu.open { opacity: 1; visibility: visible; transform: none; }
    .menu a { padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--rule); }
    .menu a.on::after { display: none; }
    .menu a.on { color: var(--acid); }
    .menu__go { justify-content: center; margin-top: 14px; border-bottom: 0 !important; }
}

@media (min-width: 640px) {
    .rail { grid-auto-columns: 42%; gap: 16px; }
    .strip__in { grid-template-columns: repeat(4, 1fr); }
    .strip__cell:nth-child(n) { padding-inline: 20px; border-left: 1px solid var(--rule); }
    .strip__cell:first-child { padding-left: 0; border-left: 0; }
    .care__in { grid-template-columns: auto 1fr; align-items: start; gap: 28px; }
}

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

    .index { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .chart__row { grid-template-columns: 42px 68px minmax(0, 1fr) 200px auto; gap: 20px; }
    .chart__art { width: 68px; height: 68px; }
    .chart__cols {
        display: flex;
        margin: 0;
        justify-content: flex-end;
        gap: 26px;
        color: var(--dim);
        font-size: 12.5px;
        text-align: right;
    }
    .chart__cols .fig { display: block; color: var(--bone); font-size: 13.5px; }
    .foot__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
    .foot__base { grid-auto-flow: column; justify-content: space-between; align-items: center; }
    .up { right: 26px; bottom: 26px; }
}

@media (min-width: 900px) {
    .top__bar { height: 72px; }
    .menu a.on::after { bottom: -26px; }

    .hero__in {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
        gap: 56px;
        align-items: center;
        padding-block: var(--bay);
    }

    .rail { grid-auto-columns: 27%; }
    .rail__nav { display: flex; }

    /* Detail page: artwork column pins, article scrolls beside it. */
    .apk {
        grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
        gap: 56px;
    }
    .apk__side {
        position: sticky;
        top: 96px;
        align-self: start;
        max-height: calc(100dvh - 120px);
        overflow-y: auto;
        /* the panel only overflows on short viewports; keep the room for the
           values but never paint a scrollbar track down the middle of the page */
        scrollbar-width: none;
        padding-right: 14px;
        border-bottom: 0;
        padding-block: var(--bay);
    }
    .apk__art { width: 128px; height: 128px; }
    .apk__read { padding-block: var(--bay) 0; }

    /* Static pages: contents rail pins beside the prose. */
    .doc { grid-template-columns: minmax(0, 232px) minmax(0, 1fr); gap: 56px; }
    .toc {
        position: sticky;
        top: 96px;
        align-self: start;
        max-height: calc(100dvh - 130px);
        overflow-y: auto;
        scrollbar-width: none;
        padding-right: 10px;
    }
}

@media (min-width: 1280px) {
    .index { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .rail { grid-auto-columns: 22%; }
    .apk { grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 72px; }
}

/* --------------------------------------------------------------------------
   20. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .js .rise { opacity: 1; transform: none; }
    .rail { scroll-behavior: auto; scroll-snap-type: none; }
}

@media (prefers-reduced-transparency: reduce) {
    .top, .menu, .up, .plate__tag, .hero .plate { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .hero .plate { background: var(--ink-1); }
    .top { background: var(--ink-0); }
    .menu { background: var(--ink-0); }
}
