/* Snapchat follower count (livecounts.nl/snapchat-follower-count/). One file, system fonts, no framework.
   Snapchat yellow is the only accent: the bar on the count card, the picture ring and the chart. */

:root {
    color-scheme: light;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    --bg: #F4F4F1; --surface: #FFFFFF; --surface-2: #F9F9F7; --sunken: #EDEDE9;
    --ink: #121214; --ink-2: #3B3B41; --muted: #62626A;
    --line: #E3E3DE; --line-2: #D0D0CA;
    --snap: #FFFC00; --focus: #4F5BD5;
    --chart: #8A7700; --chart-wash: rgba(255, 252, 0, .38); --grid: #ECECE7;
    --good: #0B7A45; --bad: #B4322A;
    --btn: #121214; --btn-ink: #FFFFFF;
    --brand: #FF4757; --tld: #C62A3C;
    --shadow: 0 1px 2px rgba(18, 18, 20, .04), 0 14px 32px -20px rgba(18, 18, 20, .22);
    --shadow-pop: 0 18px 48px -12px rgba(18, 18, 20, .28);
    --r-lg: 14px; --r-md: 10px; --r-sm: 8px; --r-pill: 999px;
    --wrap: 1040px; --gutter: 24px;
}
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        color-scheme: dark;
        --bg: #0D0D0F; --surface: #161618; --surface-2: #1B1B1E; --sunken: #101012;
        --ink: #F3F3F1; --ink-2: #CFCFD4; --muted: #9C9CA5;
        --line: #27272B; --line-2: #37373D;
        --focus: #8E96FF;
        --chart: #FFFC00; --chart-wash: rgba(255, 252, 0, .10); --grid: #232327;
        --good: #46D08A; --bad: #FF7B70;
        --btn: #F3F3F1; --btn-ink: #121214;
        --tld: #FF5C6C;
        --shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 16px 40px -24px rgba(0, 0, 0, .9);
        --shadow-pop: 0 18px 48px -12px rgba(0, 0, 0, .7);
    }
}
:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0D0D0F; --surface: #161618; --surface-2: #1B1B1E; --sunken: #101012;
    --ink: #F3F3F1; --ink-2: #CFCFD4; --muted: #9C9CA5;
    --line: #27272B; --line-2: #37373D;
    --focus: #8E96FF;
    --chart: #FFFC00; --chart-wash: rgba(255, 252, 0, .10); --grid: #232327;
    --good: #46D08A; --bad: #FF7B70;
    --btn: #F3F3F1; --btn-ink: #121214;
    --tld: #FF5C6C;
    --shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 16px 40px -24px rgba(0, 0, 0, .9);
    --shadow-pop: 0 18px 48px -12px rgba(0, 0, 0, .7);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 15px/1.5 var(--font); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, p, ol, ul, dl, dd, figure, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { padding: 0; border: 0; min-width: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.i { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
[dir="ltr"], .t-num, .p-count { font-variant-numeric: tabular-nums; }
html:not(.js) .js-only { display: none !important; }
.muted { color: var(--muted); }

.skip { position: absolute; z-index: 80; inset-inline-start: 12px; top: -60px; padding: 10px 14px; border-radius: var(--r-sm); background: var(--btn); color: var(--btn-ink); font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding-inline: 16px; border: 1px solid transparent; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600; line-height: 1; white-space: nowrap; text-decoration: none; cursor: pointer; }
.btn-ink { background: var(--btn); color: var(--btn-ink); }
.btn-ink:hover { opacity: .88; }
.btn-line { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); }
.icon-btn { display: inline-grid; place-items: center; flex: none; width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); color: var(--ink-2); cursor: pointer; }
.icon-btn:hover { color: var(--ink); border-color: var(--line-2); }

/* ---------- header ---------- */
.site-head { position: relative; z-index: 40; background: var(--surface); border-bottom: 1px solid var(--line); }
.head-row { display: flex; align-items: center; gap: 20px; height: 56px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; letter-spacing: -.01em; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 28px; height: 28px; }
.tld { color: var(--tld); }
.head-nav { display: flex; gap: 20px; margin-inline-start: auto; }
.head-nav a { padding-block: 17px; border-bottom: 2px solid transparent; color: var(--ink-2); font-size: 13.5px; text-decoration: none; white-space: nowrap; }
.head-nav a:hover { color: var(--ink); }
.head-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; border-bottom-color: var(--ink); }
.head-tools { display: flex; align-items: center; gap: 8px; }
.theme-toggle .i-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .i-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .i-sun { display: block; }
    :root:not([data-theme="light"]) .theme-toggle .i-moon { display: none; }
}

/* ---------- page head + search ---------- */
.top { padding-block: 32px 24px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; color: var(--muted); font-size: 12.5px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
h1 { font-size: clamp(28px, 4.2vw, 40px); line-height: 1.12; font-weight: 750; letter-spacing: -.025em; overflow-wrap: anywhere; }
.lede { max-width: 640px; margin-top: 10px; color: var(--ink-2); font-size: 16px; line-height: 1.55; }

.search { margin-top: 22px; max-width: 640px; }
.search-label { display: block; margin-bottom: 6px; color: var(--ink-2); font-size: 13px; font-weight: 600; }
.search-box { position: relative; display: flex; align-items: center; gap: 8px; height: 52px; padding: 5px 5px 5px 14px; border: 1px solid var(--line-2); border-radius: var(--r-md); background: var(--surface); box-shadow: var(--shadow); }
.search-box:focus-within { border-color: var(--ink); }
.search-box > .i { color: var(--muted); }
.search-box input { flex: 1; min-width: 0; height: 100%; padding: 0; border: 0; background: none; font-size: 16px; outline: none; }
.search-box input::placeholder { color: var(--muted); opacity: 1; }
.search-box .btn { height: 40px; }
.chips-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px; }
.chips-label { color: var(--muted); font-size: 12.5px; }
.chip { display: inline-flex; align-items: center; min-height: 32px; padding: 4px 12px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--surface); color: var(--ink-2); font-size: 13px; text-decoration: none; }
.chip:hover { color: var(--ink); border-color: var(--line-2); }

/* ---------- cards ---------- */
.card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow); }
.card-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 16px; margin-bottom: 12px; }
.card-title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.card-note { color: var(--muted); font-size: 12.5px; }
.profile-area:empty { display: none; }
.profile-area { display: grid; gap: 16px; margin-bottom: 24px; }

/* ---------- the count ---------- */
.profile { position: relative; overflow: hidden; padding: 26px 24px 22px; }
.profile::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--snap); }
.p-top { display: flex; align-items: center; gap: 16px; }
.p-ring { position: relative; flex: none; display: grid; place-items: center; width: 88px; height: 88px; border-radius: 50%; background: var(--sunken); box-shadow: 0 0 0 3px var(--surface), 0 0 0 6px var(--snap); overflow: hidden; }
.p-ring::before, .t-av::before, .w-av::before { content: attr(data-l); color: var(--muted); font-weight: 700; }
.p-ring::before { font-size: 34px; }
.p-ring img, .t-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-who { min-width: 0; }
.p-name { font-size: 20px; font-weight: 700; line-height: 1.25; overflow-wrap: anywhere; }
.p-handle { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; color: var(--ink-2); font-size: 14px; text-decoration: none; }
.p-handle .i { width: 14px; height: 14px; color: var(--muted); }
.p-handle:hover { color: var(--ink); text-decoration: underline; }
.p-count { margin-top: 20px; font-size: clamp(44px, 11vw, 76px); font-weight: 800; line-height: 1; letter-spacing: -.035em; white-space: nowrap; transition: color .6s; }
.p-count.is-new { color: var(--good); }
.p-label { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 10px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.pill { display: inline-flex; align-items: center; height: 24px; padding-inline: 10px; border-radius: var(--r-pill); background: var(--sunken); color: var(--ink-2); font-size: 12px; font-weight: 600; }
.p-meta { display: flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.45; }
.p-meta .i { width: 16px; height: 16px; margin-top: 1px; }
.p-msg { margin-top: 16px; color: var(--ink-2); font-size: 15px; }
.profile.is-empty { padding-top: 22px; }
.profile.is-empty .p-msg { margin-top: 0; }

.actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.act { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); color: var(--ink); font-size: 13.5px; font-weight: 600; text-decoration: none; cursor: pointer; }
.act:hover { border-color: var(--ink); }
.act[aria-expanded="true"] { background: var(--btn); border-color: var(--btn); color: var(--btn-ink); }

/* ---------- embed / OBS / share ---------- */
.studio { padding: 18px 20px 20px; }
.studio-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tabs { display: flex; gap: 4px; margin-top: 14px; padding: 4px; border-radius: var(--r-md); background: var(--sunken); }
.tabs [role="tab"] { flex: 1; height: 36px; border: 0; border-radius: var(--r-sm); background: none; color: var(--ink-2); font-size: 13.5px; font-weight: 600; cursor: pointer; }
.tabs [role="tab"][aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, .12); }
.studio-body { display: grid; gap: 16px; margin-top: 16px; }
.opts { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.opts legend { margin-bottom: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }
.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: var(--r-sm); overflow: hidden; }
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg label { padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.seg label + input + label { border-inline-start: 1px solid var(--line-2); }
.seg input:checked + label { background: var(--btn); color: var(--btn-ink); }
.seg input:focus-visible + label { outline: 2px solid var(--focus); outline-offset: -2px; }
.stage { display: grid; place-items: center; min-height: 170px; padding: 16px; overflow: hidden; border-radius: var(--r-md); background: var(--sunken); }
.stage.is-clear { background-color: #9a9aa2; background-image: linear-gradient(45deg, #b6b6bd 25%, transparent 25%, transparent 75%, #b6b6bd 75%), linear-gradient(45deg, #b6b6bd 25%, transparent 25%, transparent 75%, #b6b6bd 75%); background-size: 20px 20px; background-position: 0 0, 10px 10px; }
.field-label { display: block; margin-bottom: 6px; color: var(--ink-2); font-size: 13px; font-weight: 600; }
.field-row { display: flex; gap: 8px; align-items: stretch; }
.field { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--surface-2); font-size: 13px; }
.mono { font-family: var(--mono); }
textarea.field { resize: vertical; min-height: 72px; }
.field-row .btn { height: auto; min-height: 40px; }
.hint { margin-top: 8px; color: var(--muted); font-size: 12.5px; }
.steps { margin-top: 10px; padding-inline-start: 20px; list-style: decimal; color: var(--ink-2); font-size: 13.5px; }
.steps li + li { margin-top: 4px; }
.share-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.btn.is-done { background: var(--good); color: #fff; }

/* the widget, as the embed page draws it (preview) */
.w { display: flex; align-items: center; gap: 14px; width: 420px; max-width: 100%; height: 116px; padding: 14px 18px; border-radius: 16px; background: #fff; color: #121214; text-decoration: none; font-family: var(--font); box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.w-av { position: relative; flex: none; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: #ededea; box-shadow: 0 0 0 3px #fff, 0 0 0 6px #FFFC00; }
.w-av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.w-tx { display: grid; min-width: 0; }
.w-name { overflow: hidden; font-size: 15px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.w-count { font-size: 34px; font-weight: 800; line-height: 1.1; letter-spacing: -.03em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.w-unit { color: #5d5d64; font-size: 12px; }
.w.t-dark { background: #161618; color: #F3F3F1; box-shadow: none; }
.w.t-dark .w-av { background: #232327; box-shadow: 0 0 0 3px #161618, 0 0 0 6px #FFFC00; }
.w.t-dark .w-unit { color: #a4a4ac; }
.w.t-transparent { background: transparent; color: #fff; box-shadow: none; text-shadow: 0 1px 3px rgba(0, 0, 0, .6); }
.w.t-transparent .w-av { box-shadow: 0 0 0 3px #FFFC00; }
.w.t-transparent .w-unit { color: #fff; }
.w.s-s { width: 300px; height: 84px; gap: 10px; padding: 10px 12px; }
.w.s-s .w-av { width: 50px; height: 50px; }
.w.s-s .w-name { font-size: 12.5px; }
.w.s-s .w-count { font-size: 24px; }
.w.s-s .w-unit { font-size: 10.5px; }
.w.s-l { width: 560px; height: 150px; gap: 18px; padding: 18px 24px; }
.w.s-l .w-av { width: 100px; height: 100px; }
.w.s-l .w-name { font-size: 19px; }
.w.s-l .w-count { font-size: 46px; }
.w.s-l .w-unit { font-size: 14px; }

/* ---------- changes we saw ---------- */
.history { padding: 18px 20px 20px; }
.history .card-title { margin-bottom: 12px; }
.chart { position: relative; height: 180px; padding: 18px 0 22px; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.c-grid { fill: none; stroke: var(--grid); stroke-width: 1; }
.c-area { fill: var(--chart-wash); }
.c-line { fill: none; stroke: var(--chart); stroke-width: 2.5; stroke-linejoin: round; }
.chart span { position: absolute; color: var(--muted); font-size: 11.5px; font-variant-numeric: tabular-nums; }
.c-max { top: 0; inset-inline-end: 0; }
.c-min { bottom: 22px; inset-inline-end: 0; transform: translateY(100%); }
.c-x0 { bottom: 0; inset-inline-start: 0; }
.c-x1 { bottom: 0; inset-inline-end: 0; }
.changes { width: 100%; margin-top: 14px; border-collapse: collapse; font-size: 13.5px; }
.changes th { padding: 6px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 600; text-align: start; }
.changes td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.changes th:not(:first-child), .changes td:not(:first-child) { text-align: end; }
.changes .up { color: var(--good); }
.changes .down { color: var(--bad); }
.sub-h { margin-top: 18px; font-size: 14px; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ---------- most followed ---------- */
.top-list { padding: 18px 20px 12px; }
.top-ol li { display: flex; align-items: center; gap: 12px; min-height: 60px; border-top: 1px solid var(--line); }
.top-ol li:first-child { border-top: 0; }
.t-rank { flex: none; width: 26px; color: var(--muted); font-size: 13px; font-weight: 600; text-align: end; font-variant-numeric: tabular-nums; }
.t-who { display: flex; flex: 1; align-items: center; gap: 12px; min-width: 0; padding-block: 8px; text-decoration: none; }
.t-who:hover .t-nm bdi { text-decoration: underline; }
.t-av { position: relative; flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--sunken); }
.t-av::before { font-size: 15px; }
.t-nm { display: grid; min-width: 0; }
.t-nm bdi { overflow: hidden; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.t-nm small { overflow: hidden; color: var(--muted); font-size: 12.5px; text-overflow: ellipsis; white-space: nowrap; }
.t-num { flex: none; font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.more-link { display: inline-block; margin: 8px 0 6px; color: var(--ink); font-size: 13.5px; font-weight: 600; text-underline-offset: 3px; }

/* ---------- text ---------- */
.prose { max-width: 720px; margin-top: 40px; }
.prose h2 { font-size: 22px; line-height: 1.25; font-weight: 700; letter-spacing: -.015em; }
.prose h3 { margin-top: 22px; font-size: 16px; font-weight: 700; }
.prose p { margin-top: 10px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.faq { max-width: 720px; margin-top: 36px; }
.faq h2 { margin-bottom: 8px; font-size: 22px; font-weight: 700; letter-spacing: -.015em; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--muted); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq summary h3 { font-size: 15.5px; font-weight: 600; }
.faq details p { padding-bottom: 14px; color: var(--ink-2); line-height: 1.6; }

/* "More live counters" block the server puts in place of the spotlight comment */
.creator-spotlight { margin-top: 32px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.creator-spotlight h2 { font-size: 17px; font-weight: 700; }
.creator-spotlight h3 { margin-top: 16px; font-size: 14px; font-weight: 700; }
.creator-spotlight p { margin-top: 6px; color: var(--ink-2); }
.creator-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.creator-links a { display: inline-flex; align-items: center; min-height: 32px; padding: 4px 12px; border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--ink-2); font-size: 13px; text-decoration: none; }
.creator-links a:hover { color: var(--ink); border-color: var(--line-2); }

/* ---------- sponsored ---------- */
.spacenode-promo-card { display: block; max-width: 720px; margin-top: 36px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); color: var(--ink); text-decoration: none; }
.spacenode-promo-overlay { display: flex; align-items: center; gap: 18px; padding: 18px 20px; }
.spacenode-promo-logo { flex: none; width: 72px; height: 36px; border-radius: 6px; }
.spacenode-promo-text { display: grid; gap: 4px; min-width: 0; }
.spacenode-promo-eyebrow { color: var(--muted); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.spacenode-promo-title { font-size: 16px; font-weight: 650; line-height: 1.3; }
.spacenode-promo-desc { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.spacenode-promo-cta { justify-self: start; display: inline-flex; align-items: center; height: 34px; margin-top: 6px; padding-inline: 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm); font-size: 13px; font-weight: 600; }
.spacenode-promo-card:hover .spacenode-promo-cta { border-color: var(--ink); }

/* ---------- ads: space reserved up front, well away from the count and its buttons ---------- */
.ad { margin: 36px auto 0; text-align: center; }
.ad-label { margin-bottom: 6px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.ad-mid { min-height: 300px; }
.ad-bottom { min-height: 130px; margin-bottom: 8px; }
.lcnl-incontent-ad { margin-top: 32px !important; }

/* ---------- footer ---------- */
.site-foot { margin-top: 48px; padding-block: 32px 24px; border-top: 1px solid var(--line); background: var(--surface); }
.foot-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.foot-h { margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.foot-grid li + li { margin-top: 6px; }
.foot-grid a { color: var(--ink-2); font-size: 14px; text-decoration: none; }
.foot-grid a:hover { color: var(--ink); text-decoration: underline; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 28px; color: var(--muted); font-size: 12.5px; }

@media (min-width: 900px) {
    .profile { padding: 30px 32px 24px; }
    .p-ring { width: 104px; height: 104px; }
    .p-name { font-size: 22px; }
    .studio-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
    .studio-body .opts { grid-column: 1 / -1; }
    .studio-body .stage { grid-column: 2; grid-row: 2; }
    .studio-body .panel { grid-column: 1; grid-row: 2; }
}
@media (max-width: 640px) {
    :root { --gutter: 16px; }
    .head-nav { display: none; }
    .head-tools { margin-inline-start: auto; }
    .top { padding-block: 22px 18px; }
    .lede { font-size: 15px; }
    .search-box .btn { padding-inline: 12px; }
    .profile { padding: 24px 18px 18px; }
    .p-ring { width: 72px; height: 72px; }
    .p-ring::before { font-size: 28px; }
    .actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .studio, .history { padding-inline: 16px; }
    .top-list { padding-inline: 14px; }
    .t-rank { width: 20px; }
    .t-who { gap: 10px; }
    .field-row { flex-direction: column; }
    .field-row .btn { min-height: 44px; }
    .stage { min-height: 130px; padding: 10px; }
    .w { transform-origin: center; }
    .spacenode-promo-overlay { flex-direction: column; align-items: flex-start; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid nav:last-child { grid-column: 1 / -1; }
    .ad-mid { min-height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
    .p-count { transition: none; }
}
.last-change { margin-bottom: 10px; color: var(--ink-2); font-size: 14px; }
.last-change .up { color: var(--good); }
.last-change .down { color: var(--bad); }
.p-again { margin-top: 14px; }
