:root {
  --bg: #0a0a0b;
  --panel: #111113;
  --panel-2: #17171a;
  --line: #212125;
  --line-2: #2d2d32;
  --text: #f3f3f0;
  --muted: #8d8d94;
  --dim: #5b5b62;
  --accent: #d4ff3f;
  --accent-soft: rgba(212, 255, 63, 0.12);
  --accent-ink: #0a0a0b;
  --red: #ff5146;
  --gold: #f4c64e;
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --radius: 14px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.45 var(--sans);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
svg { display: block; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding-inline: 20px; }

/* ——— header ——— */
.top {
  position: sticky; top: 0; z-index: 30;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; gap: 12px; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 20px; letter-spacing: -0.03em; }
.logo svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.demo-badge {
  font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); border: 1px solid rgba(244, 198, 78, 0.35); padding: 5px 7px; border-radius: 6px;
}
.top-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.live { display: flex; align-items: center; gap: 7px; font: 500 12px/1 var(--mono); color: var(--muted); padding-right: 4px; }
.live i, .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 81, 70, 0.6); animation: pulse 2s infinite;
}
.live.off i { background: var(--dim); animation: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 81, 70, 0.55); } 70% { box-shadow: 0 0 0 8px rgba(255, 81, 70, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 81, 70, 0); } }

.btn {
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--panel); font-weight: 600; font-size: 13px; white-space: nowrap;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { border-color: var(--dim); }
.btn:active { transform: scale(0.97); }
.btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-accent:hover { background: #e2ff7a; border-color: #e2ff7a; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent;
  display: grid; place-items: center; color: var(--muted);
}
.icon-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn svg.fill { width: 15px; height: 15px; fill: currentColor; stroke: none; }
a.icon-btn:hover { color: var(--text); border-color: var(--dim); }
.icon-btn .wave { display: none; }
.icon-btn[aria-pressed='true'] { color: var(--accent); border-color: rgba(212, 255, 63, 0.4); }
.icon-btn[aria-pressed='true'] .wave { display: block; }
.icon-btn[aria-pressed='true'] .mute { display: none; }

/* ——— hero ——— */
.hero { padding: 64px 0 40px; }
.launch { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 36px; }
.launch-live {
  display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 13px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font: 600 12px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase;
}
.launch-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-ink); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
.ca {
  display: inline-flex; align-items: center; gap: 10px; height: 34px; padding: 0 6px 0 12px; max-width: 100%;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--panel); color: var(--text);
  transition: border-color 0.15s ease;
}
.ca:hover { border-color: var(--accent); }
.ca-k { font: 600 11px/1 var(--mono); color: var(--dim); letter-spacing: 0.08em; }
.ca code { font: 500 12.5px/1 var(--mono); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-short { display: none; }
.ca-copy { font: 600 11.5px/1 var(--sans); padding: 6px 10px; border-radius: 999px; background: var(--panel-2); color: var(--muted); }
.ca:hover .ca-copy { color: var(--text); }
.ca.copied .ca-copy { background: var(--accent); color: var(--accent-ink); }
.hero-top { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: end; }
.recent { padding-bottom: 34px; }
.recent h3 { margin: 0 0 10px; font: 500 11.5px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); }
.recent-item { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid var(--line); }
.recent-item .av { width: 30px; height: 30px; font-size: 12px; }
.recent-item .ico { width: 30px; height: 30px; display: grid; place-items: center; font-size: 18px; }
.recent-item .txt { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.recent-item .txt b { color: var(--text); font-weight: 600; }
.recent-item .when { font: 11.5px/1 var(--mono); color: var(--dim); }
.recent-item.fresh { animation: slidein 0.5s cubic-bezier(.2,.8,.2,1); }
.recent .empty { padding: 14px 0; text-align: left; border-top: 1px solid var(--line); }
.eyebrow { margin: 0 0 6px; font: 500 13px/1 var(--mono); color: var(--muted); letter-spacing: 0.02em; }
.handle-link { color: var(--text); border-bottom: 1px solid var(--line-2); }
.handle-link:hover { border-color: var(--accent); }
.total {
  font: 600 clamp(72px, 17vw, 208px)/0.9 var(--mono);
  letter-spacing: -0.06em; font-variant-numeric: tabular-nums;
  margin: 10px 0 34px -0.05em; transition: color 0.6s ease;
}
.total.bump { color: var(--accent); transition: none; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 18px 16px 18px 0; }
.stat + .stat { padding-left: 16px; border-left: 1px solid var(--line); }
.stat-v { font: 500 26px/1.1 var(--mono); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat-v .of { color: var(--dim); font-size: 0.7em; }
.stat-k { color: var(--muted); font-size: 12.5px; }
.capture { margin-top: 6px; }
.capture-bar { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.capture-bar i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 4px; transition: width 1s cubic-bezier(.2,.8,.2,1); min-width: 3px; }
.capture-meta { margin-top: 10px; color: var(--muted); font-size: 12.5px; }
.capture-meta span:not(.sep) { color: var(--text); font-family: var(--mono); }
.sep { color: var(--dim); margin: 0 4px; }

/* ——— sections ——— */
.section-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.section-head h2 { margin: 0; font-size: 20px; letter-spacing: -0.02em; font-weight: 650; }
.section-head p { margin: 0; color: var(--muted); font-size: 13px; }
.board-section { padding: 24px 0 44px; }

/* ——— bounty board ——— */
.bounty { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.poster {
  position: relative; border: 1px solid var(--line); background: var(--panel); border-radius: var(--radius);
  padding: 16px 12px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.poster:hover { border-color: var(--line-2); }
.poster .av { width: 64px; height: 64px; margin-bottom: 10px; }
.poster .name { font-weight: 600; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.poster .sub { color: var(--muted); font: 12px/1.3 var(--mono); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.poster .state { margin: 12px 0 10px; font: 600 10.5px/1 var(--mono); letter-spacing: 0.14em; color: var(--red); }
.poster .summon { width: 100%; justify-content: center; }
.poster.tagged { border-color: rgba(212, 255, 63, 0.35); background: linear-gradient(180deg, var(--accent-soft), var(--panel) 60%); }
.poster.tagged .state { color: var(--accent); }
.poster .stamp {
  position: absolute; top: 44px; left: 50%; transform: translateX(-50%) rotate(-12deg);
  font: 700 11px/1 var(--mono); letter-spacing: 0.12em; color: var(--accent-ink); background: var(--accent);
  padding: 4px 7px; border-radius: 4px; box-shadow: 0 4px 18px rgba(212, 255, 63, 0.25);
}
.poster.flash { animation: flash 1.6s ease; }
@keyframes flash { 0%, 30% { transform: scale(1.04); box-shadow: 0 0 0 2px var(--accent), 0 0 40px rgba(212,255,63,.35); } 100% { transform: none; box-shadow: none; } }

/* ——— avatars ——— */
.av {
  width: 36px; height: 36px; border-radius: 50%; flex: none; overflow: hidden; position: relative;
  background: var(--panel-2); display: grid; place-items: center; font: 600 14px/1 var(--sans); color: var(--muted);
}
/* the initial sits under the image, so a broken image falls back to it */
.av img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.av:has(img) { color: transparent; }
.gray .av img, .av.gray img { filter: grayscale(1); opacity: 0.55; }

/* ——— layout ——— */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; padding-bottom: 60px; }
.side-col { position: sticky; top: 76px; }

/* ——— tabs ——— */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 14px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  background: none; border: 0; padding: 12px 12px 13px; color: var(--muted); font-weight: 550; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--text); }
.tabs button[aria-selected='true'] { color: var(--text); border-bottom-color: var(--accent); }
.tabs .count { font: 500 11.5px/1 var(--mono); color: var(--dim); margin-left: 3px; }
.tab-feed { display: none; }

/* ——— toolbar ——— */
.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.search { position: relative; flex: 1 1 200px; min-width: 0; }
.search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; fill: none; stroke: var(--dim); stroke-width: 2; }
.search input, select {
  width: 100%; height: 34px; background: var(--panel); border: 1px solid var(--line); border-radius: 9px; outline: none;
}
.search input { padding: 0 10px 0 32px; }
.search input:focus, select:focus { border-color: var(--line-2); }
select { width: auto; padding: 0 28px 0 10px; appearance: none; -webkit-appearance: none; color: var(--muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%238d8d94' stroke-width='1.5'%3E%3Cpath d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; }
.chips { display: inline-flex; background: var(--panel); border: 1px solid var(--line); border-radius: 9px; padding: 2px; }
.chips button { border: 0; background: none; height: 28px; padding: 0 9px; border-radius: 7px; color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.chips button:hover { color: var(--text); }
.chips button.on { background: var(--panel-2); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.chips.small button { height: 24px; font-size: 12px; }
.toolbar-note { color: var(--dim); font-size: 12px; }

/* ——— rows ——— */
.list { display: flex; flex-direction: column; }
.row {
  display: grid; grid-template-columns: 34px 36px minmax(0, 1fr) auto auto; gap: 12px; align-items: center;
  padding: 10px 6px; border-bottom: 1px solid var(--line); border-radius: 0;
}
.row:hover { background: rgba(255, 255, 255, 0.015); }
.rank { font: 500 12px/1 var(--mono); color: var(--dim); text-align: right; font-variant-numeric: tabular-nums; }
.who { min-width: 0; }
.who-top { display: flex; align-items: center; gap: 6px; min-width: 0; }
.who .name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.who .handle { color: var(--muted); font: 12.5px/1.3 var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.who .handle:hover { color: var(--text); }
.who-sub { display: flex; gap: 8px; align-items: center; color: var(--dim); font-size: 12px; min-width: 0; white-space: nowrap; overflow: hidden; }
.verified { width: 14px; height: 14px; flex: none; fill: var(--muted); }
.tier {
  font: 600 10px/1 var(--mono); letter-spacing: 0.04em; padding: 3px 5px; border-radius: 5px;
  border: 1px solid var(--line-2); color: var(--muted); white-space: nowrap;
}
.tier-legend { color: var(--gold); border-color: rgba(244, 198, 78, 0.4); }
.tier-s { color: var(--text); border-color: var(--dim); }
.kol-badge { font: 600 10px/1 var(--mono); padding: 3px 5px; border-radius: 5px; background: var(--accent); color: var(--accent-ink); }
.num { font: 500 13px/1.2 var(--mono); text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.num small { display: block; color: var(--dim); font-size: 11px; font-family: var(--sans); }
.status { font: 500 12px/1 var(--mono); color: var(--dim); white-space: nowrap; }
.status.yes { color: var(--accent); }
.row.gray .name { color: #c9c9c6; }
.row-actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; min-width: 150px; }

.summon {
  display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px; border-radius: 8px;
  border: 1px solid var(--line-2); background: transparent; color: var(--text); font-size: 12.5px; font-weight: 550; white-space: nowrap;
}
.summon:hover { border-color: var(--accent); color: var(--accent); }
.summon .n { font-family: var(--mono); color: var(--muted); font-size: 11.5px; }
.summon.done { border-color: rgba(212, 255, 63, 0.35); }
.summon.pop { animation: pop 0.4s ease; }
@keyframes pop { 50% { transform: scale(1.1); } }
.tweet-link { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
.tweet-link:hover { color: var(--accent); }

.more {
  display: block; width: 100%; margin-top: 12px; height: 40px; border-radius: 10px; border: 1px dashed var(--line-2);
  background: none; color: var(--muted);
}
.more:hover { color: var(--text); border-color: var(--dim); }
.empty { padding: 48px 12px; text-align: center; color: var(--dim); }
.empty b { display: block; color: var(--muted); font-weight: 550; margin-bottom: 4px; }

/* ——— achievements ——— */
.ach-group { margin-bottom: 26px; }
.ach-group h4 { margin: 4px 0 10px; font: 500 11.5px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); }
.ach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px; }
.ach {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: var(--panel);
  display: grid; grid-template-columns: 34px 1fr; gap: 4px 10px; align-items: start;
}
.ach .icon { font-size: 22px; line-height: 34px; text-align: center; grid-row: span 3; filter: grayscale(1); opacity: 0.4; }
.ach .t { font-weight: 600; }
.ach .d { color: var(--muted); font-size: 12.5px; }
.ach .p { display: flex; align-items: center; gap: 8px; margin-top: 6px; font: 11px/1 var(--mono); color: var(--dim); }
.ach .p .bar { flex: 1; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.ach .p .bar i { display: block; height: 100%; background: var(--muted); }
.ach.done { border-color: rgba(212, 255, 63, 0.3); background: linear-gradient(135deg, var(--accent-soft), var(--panel) 55%); }
.ach.done .icon { filter: none; opacity: 1; }
.ach.done .p { color: var(--accent); }

/* ——— feed ——— */
.feed-box { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.feed-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.feed-head h3 { margin: 0; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.feed { max-height: calc(100vh - 170px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.feed-box .more { width: auto; margin: 10px 14px 14px; }
.tw { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.tw .av { width: 34px; height: 34px; }
.tw-head { display: flex; align-items: baseline; gap: 6px; min-width: 0; }
.tw-head .name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 55%; }
.tw-head .handle { color: var(--dim); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tw-head .time { margin-left: auto; color: var(--dim); font: 11.5px/1 var(--mono); white-space: nowrap; }
.tw-text { margin-top: 3px; color: #d9d9d5; overflow-wrap: anywhere; white-space: pre-wrap; }
.tw-text a { color: var(--muted); }
.tw-text a:hover { color: var(--text); }
.tw-text .me { color: var(--accent); }
.tw-meta { margin-top: 7px; display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--dim); font: 11.5px/1 var(--mono); }
.tw-meta > * { white-space: nowrap; }
.tw-meta a { margin-left: auto; }
.tw-meta a:hover { color: var(--text); }
.tw.kol { background: linear-gradient(90deg, var(--accent-soft), transparent 70%); box-shadow: inset 2px 0 0 var(--accent); }
.tw.new { animation: slidein 0.5s cubic-bezier(.2,.8,.2,1); }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); background: rgba(255,255,255,.04); } }

/* ——— banners ——— */
.banners {
  position: fixed; z-index: 50; left: 50%; transform: translateX(-50%);
  top: calc(70px + env(safe-area-inset-top, 0px)); width: min(560px, calc(100vw - 24px));
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.banner {
  pointer-events: auto; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; align-items: center;
  padding: 12px 12px 14px 12px; border-radius: 16px; background: rgba(20, 20, 23, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 255, 63, 0.45);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0,0,0,.4), 0 0 50px rgba(212, 255, 63, 0.12);
  animation: dropin 0.55s cubic-bezier(.2,1.2,.3,1);
}
.banner.out { animation: dropout 0.35s ease forwards; }
.banner.small { grid-template-columns: 34px minmax(0, 1fr) auto; border-color: var(--line-2); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.banner .av { width: 46px; height: 46px; }
.banner.small .av { width: 34px; height: 34px; }
.banner .ach-icon { width: 46px; height: 46px; display: grid; place-items: center; font-size: 30px; }
.banner .kicker { font: 600 10.5px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.banner.small .kicker { color: var(--muted); }
.banner .msg { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.banner .msg em { font-style: normal; color: var(--accent); }
.banner .sub { color: var(--muted); font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.banner .go { height: 32px; font-size: 12.5px; }
.banner .timer { position: absolute; left: 0; bottom: 0; height: 2px; background: var(--accent); animation: timer linear forwards; }
.banner.small .timer { background: var(--dim); }
@keyframes timer { from { width: 100%; } to { width: 0; } }
@keyframes dropin { from { opacity: 0; transform: translateY(-24px) scale(0.96); } }
@keyframes dropout { to { opacity: 0; transform: translateY(-16px) scale(0.97); } }

.confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 60; }

/* ——— footer ——— */
.foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-block: 24px 40px; border-top: 1px solid var(--line); color: var(--dim); font-size: 12.5px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--text); }

/* ——— responsive ——— */
@media (max-width: 1100px) {
  .bounty { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .hero-top { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .recent { order: 3; padding-bottom: 24px; }
  .layout { grid-template-columns: minmax(0, 1fr); }
  .side-col { display: none; }
  .tab-feed { display: inline-block; }
  .panel[data-panel='feed'] .feed-box { border-radius: 12px; }
  .panel[data-panel='feed'] .feed { max-height: none; }
}
@media (max-width: 720px) {
  .wrap { padding-inline: 16px; }
  .hero { padding: 36px 0 28px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stat-v { font-size: 22px; }
  .launch { margin-bottom: 24px; }
  .ca-full { display: none; }
  .ca-short { display: inline; }
  .bounty {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 44%;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin-inline: -16px; padding-inline: 16px; scroll-padding-inline: 16px;
  }
  .bounty::-webkit-scrollbar { display: none; }
  .poster { scroll-snap-align: start; }
  .tabs button { padding: 12px 9px 13px; font-size: 13.5px; }
  .row { grid-template-columns: 36px minmax(0, 1fr) auto; gap: 10px; }
  .row .rank { display: none; }
  .row .num.hide-sm { display: none; }
  .row-actions { min-width: 0; }
  .row-actions .status { display: none; }
  .top-inner { gap: 8px; }
  .btn-accent .handle-text { display: none; }
  .live span { display: none; }
  .toolbar select { flex: 1 1 40%; }
  .toolbar .chips { overflow-x: auto; max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
