/*
  Pond — deliberate single dark "world map" identity, no light/dark toggle.
  Real game maps commit to one art direction rather than reskinning per OS
  theme; this does the same on purpose.
*/
:root {
  --world: #0A1622; --world-deep: #061019;
  --panel: #10233A; --panel-line: #1E3A55;
  --ink: #EAF3F8; --ink-soft: #86A2B8; --ink-faint: #4E6478;
  --path: #2C5478; --blue: #4A90E2; --blue-bright: #7CC2FF;
  --ok: #34D6B5; --warm: #E8B458; --locked: #33465A;

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: linear(0, 0.6 10%, 0.96 20%, 1.04 30%, 0.99 45%, 1.006 60%, 1);
}

* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: var(--panel-line) var(--world-deep); }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: var(--world-deep); }
*::-webkit-scrollbar-thumb { background: var(--panel-line); border-radius: 999px; }
*::-webkit-scrollbar-thumb:hover { background: var(--path); }

html, body { margin: 0; overflow-x: clip; }
body { background: var(--world); color: var(--ink); font-family: var(--font-body); min-height: 100vh; -webkit-font-smoothing: antialiased; }

.texture { position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 22px 22px; }

.hud { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; background: var(--world-deep); border-bottom: 1px solid var(--panel-line); }
.hud-brand { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.hud-stats { display: flex; align-items: center; gap: 16px; }
.stat { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.stat svg { width: 17px; height: 17px; flex: none; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat.streak svg { stroke: var(--blue-bright); fill: var(--blue-bright); fill-opacity: 0.18; }
.stat.currency svg { stroke: var(--warm); }
.stat-num { font-variant-numeric: tabular-nums; }
.stat-num.bump { animation: bump 0.5s var(--spring); display: inline-block; }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.3); } 100% { transform: scale(1); } }

.hud-icon-btn { width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--panel-line); background: var(--panel);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.1s var(--ease), border-color 0.15s; }
.hud-icon-btn:hover { border-color: var(--blue-bright); }
.hud-icon-btn:active { transform: scale(0.9); }
.hud-icon-btn svg { width: 16px; height: 16px; fill: none; stroke: var(--ink-soft); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.stage { position: relative; z-index: 1; }
.world { position: relative; max-width: 420px; margin: 0 auto; padding: 34px 20px 60px; }
.world-head { text-align: center; margin-bottom: 6px; }
.world-head h1 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; margin: 0; }
.world-head p { color: var(--ink-soft); font-size: 0.86rem; margin: 4px 0 0; }

.trail-wrap { position: relative; margin-top: 10px; }
.trail-svg { width: 100%; height: auto; display: block; overflow: visible; }
.trail-line { fill: none; stroke: var(--path); stroke-width: 3; stroke-dasharray: 1 10; stroke-linecap: round; }

.bubble-rise { fill: var(--blue-bright); opacity: 0; animation: rise 6s ease-in infinite; }
@keyframes rise { 0% { opacity: 0; transform: translateY(0); } 10% { opacity: 0.5; } 90% { opacity: 0.2; } 100% { opacity: 0; transform: translateY(-40px); } }

.node .spot { fill: var(--panel); stroke: var(--panel-line); stroke-width: 1.5; }
.node.missed .spot { fill: transparent; stroke: var(--locked); stroke-dasharray: 3 4; }
.node .fish { fill: var(--blue); }
.node .day-label { fill: var(--ink-faint); font-family: var(--font-body); font-size: 9px; font-weight: 500; text-anchor: middle; }

.node.locked .spot { fill: transparent; stroke: var(--locked); stroke-dasharray: 3 4; }
.node.locked .lock-glyph { stroke: var(--ink-faint); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.node.pending { cursor: pointer; }
.node.pending .spot { fill: var(--panel); stroke: var(--blue-bright); stroke-width: 2; }
.node.pending .pulse { fill: none; stroke: var(--blue-bright); stroke-width: 1.6; opacity: 0.55; animation: pulse 2.2s ease-out infinite; transform-origin: center; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.7); opacity: 0; } }

.node.done { cursor: pointer; }

.memory { position: absolute; width: 152px; z-index: 3;
  background: color-mix(in srgb, var(--tint, var(--blue)) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--tint, var(--blue)) 45%, transparent);
  border-radius: 14px; padding: 10px 12px;
  animation: bob var(--dur, 6s) ease-in-out infinite; animation-delay: var(--delay, 0s); }
.memory .when { font-size: 0.68rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.memory .snippet { font-size: 0.8rem; color: var(--ink); margin-top: 3px; line-height: 1.3; }
@keyframes bob { 0%, 100% { transform: rotate(var(--rot, -3deg)) translateY(0); } 50% { transform: rotate(var(--rot, -3deg)) translateY(-8px); } }
@media (max-width: 820px) { .memory { display: none; } }
@media (prefers-reduced-motion: reduce) { .memory, .bubble-rise, .node .pulse { animation: none; } }

.camp { position: relative; display: flex; flex-direction: column; align-items: center; margin-top: 4px; }
.spur { width: 2px; height: 26px; background: var(--path); }

/* Browse buttons flank the waypoints row specifically — anchored to .camp
   (which is short and has nothing else in or near it), not to .trail-wrap
   (tall, full of memory bubbles at varying positions — two earlier attempts
   at positioning relative to the trail both ended up colliding with a
   bubble) and not fixed to the viewport (drifts away from the row as the
   page scrolls, and centers on the whole screen instead of the row). .camp
   spans the full content width same as .world, so the outer margin here is
   the real page margin, same technique the memory bubbles use relative to
   .trail-wrap, just anchored to a container that's actually clear. */
.dock-group { position: absolute; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; z-index: 6; }
.dock-left { right: calc(100% + 24px); }
.dock-right { left: calc(100% + 24px); }
@media (max-width: 960px) {
  .dock-group { position: static; top: auto; transform: none; flex-direction: row; justify-content: center; gap: 12px; margin: 10px auto; }
}

.dock-btn {
  width: 54px; height: 54px; border-radius: 18px;
  background: color-mix(in srgb, var(--blue) 18%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--blue-bright) 35%, var(--panel-line));
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex: none;
  transform: rotate(var(--drot, 0deg));
  transition: transform 0.15s var(--ease), border-color 0.15s;
}
.dock-btn svg { width: 21px; height: 21px; fill: none; stroke: var(--blue-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dock-btn:hover { border-color: var(--blue-bright); transform: rotate(0deg) translateY(-4px); }
.dock-btn:active { transform: rotate(var(--drot, 0deg)) scale(0.92); }
@media (prefers-reduced-motion: reduce) { .dock-btn:hover { transform: rotate(var(--drot, 0deg)); } }

.dock-btn-placeholder {
  background: transparent; border-style: dashed; border-color: var(--locked); cursor: default; opacity: 0.5;
}
.dock-btn-placeholder svg { stroke: var(--ink-faint); fill: var(--ink-faint); fill-opacity: 0.15; }
.dock-btn-placeholder:hover { border-color: var(--locked); transform: rotate(var(--drot, 0deg)); }

.waypoints { display: flex; gap: 22px; }
.waypoint { display: flex; flex-direction: column; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; color: var(--ink-soft); font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; }
.waypoint .ring { width: 52px; height: 52px; border-radius: 50%; background: var(--panel); border: 1.5px solid var(--panel-line); display: flex; align-items: center; justify-content: center; transition: transform 0.12s var(--ease); }
.waypoint:active .ring { transform: scale(0.9); }
.waypoint svg { width: 22px; height: 22px; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.waypoint.moments .ring { border-color: var(--warm); } .waypoint.moments svg { stroke: var(--warm); }
.waypoint.games .ring { border-color: var(--blue-bright); } .waypoint.games svg { stroke: var(--blue-bright); }
.waypoint.quests { opacity: 0.55; cursor: default; } .waypoint.quests svg { stroke: var(--ink-faint); }
.waypoint.quests:active .ring { transform: none; }

.backdrop { position: fixed; inset: 0; background: rgba(3,9,15,0.6); opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease); z-index: 20; }
.backdrop.open { opacity: 1; pointer-events: auto; }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 21; max-width: 460px; margin: 0 auto; max-height: 82vh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--panel-line); border-bottom: none; border-radius: 20px 20px 0 0;
  padding: 10px 22px 26px; transform: translateY(100%); transition: transform 0.5s var(--spring); }
.sheet.open { transform: translateY(0); }
.sheet-handle { width: 36px; height: 4px; border-radius: 999px; background: var(--panel-line); margin: 0 auto 18px; position: sticky; top: 0; }
.sheet h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.sheet p.hint { color: var(--ink-soft); font-size: 0.85rem; margin: 0 0 20px; }

.field-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 8px; }

.moods { display: flex; justify-content: space-between; margin-bottom: 18px; }
.mood-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--panel-line); background: var(--world-deep); cursor: pointer; transition: transform 0.1s var(--ease), border-color 0.15s; color: rgba(255,255,255,0.85); }
.mood-btn svg { position: absolute; inset: 0; margin: auto; width: 20px; height: 20px; }
.mood-btn svg path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mood-btn:active { transform: scale(0.88); }
.mood-btn.selected { border-color: var(--blue-bright); animation: bump 0.4s var(--spring); }
.mood-btn[data-m="1"] { background: #2A3B4E; } .mood-btn[data-m="2"] { background: #2C4B5E; }
.mood-btn[data-m="3"] { background: #2C6B7E; } .mood-btn[data-m="4"] { background: #2A8B8E; }
.mood-btn[data-m="5"] { background: #24B39A; }

textarea, input.text { width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--world-deep); border: 1px solid var(--panel-line); border-radius: 12px; padding: 12px 14px;
  resize: vertical; transition: border-color 0.15s, box-shadow 0.15s; }
textarea { min-height: 70px; }
textarea::placeholder, input.text::placeholder { color: var(--ink-faint); }
textarea:focus, input.text:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(124,194,255,0.18); }

/* Custom themed dropdown — replaces native <select>, whose popup arrow and
   scrollbar can't be reliably themed cross-browser. */
.dd { position: relative; margin-bottom: 12px; }
.dd-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--world-deep); border: 1px solid var(--panel-line); border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: border-color 0.15s; }
.dd-trigger:hover { border-color: var(--blue-bright); }
.dd-chevron { width: 16px; height: 16px; fill: none; stroke: var(--ink-soft); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s var(--ease); flex: none; }
.dd.open .dd-chevron { transform: rotate(180deg); }
.dd-panel { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 6;
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: 12px; padding: 6px;
  max-height: 220px; overflow-y: auto; box-shadow: 0 12px 28px rgba(3,9,15,0.4);
  opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 0.15s var(--ease), transform 0.15s var(--ease); }
.dd.open .dd-panel { opacity: 1; pointer-events: auto; transform: none; }
.dd-option { display: block; width: 100%; text-align: left; background: none; border: none; color: var(--ink);
  padding: 9px 10px; border-radius: 8px; cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; }
.dd-option:hover, .dd-option:focus-visible { background: var(--world-deep); outline: none; }

.stat-row { display: flex; gap: 18px; margin: 18px 0; }
.stat-row .field { flex: 1; text-align: center; }
.stat-row label { display: block; font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 10px; }
.stat-row .val { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-top: 10px; color: var(--blue-bright); }

.stat-row input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; cursor: pointer; outline: none;
  background: linear-gradient(to right, var(--blue-bright) var(--pct, 50%), var(--panel-line) var(--pct, 50%));
}
.stat-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-bright); border: 3px solid var(--world-deep);
  box-shadow: 0 2px 6px rgba(0,0,0,0.45); cursor: pointer;
}
.stat-row input[type="range"]::-moz-range-track { height: 5px; border-radius: 999px; background: var(--panel-line); }
.stat-row input[type="range"]::-moz-range-progress { height: 5px; border-radius: 999px; background: var(--blue-bright); }
.stat-row input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue-bright);
  border: 3px solid var(--world-deep); box-shadow: 0 2px 6px rgba(0,0,0,0.45); cursor: pointer;
}
.stat-row input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--blue-bright); outline-offset: 2px; }

.primary-btn { width: 100%; margin-top: 18px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #06131F;
  background: var(--blue-bright); border: none; padding: 15px; border-radius: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px; transition: transform 0.12s var(--ease); }
.primary-btn:active { transform: scale(0.97); }
.primary-btn.done { background: var(--ok); animation: settle 0.45s var(--spring); }
.primary-btn[disabled] { opacity: 0.6; cursor: default; }
@keyframes settle { 0% { transform: scale(0.93); } 100% { transform: scale(1); } }
.primary-btn svg { width: 17px; height: 17px; }
.primary-btn .check { fill: none; stroke: #06131F; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; }
.primary-btn.done .check { animation: draw 0.35s 0.1s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.history { margin-top: 20px; border-top: 1px solid var(--panel-line); padding-top: 14px; max-height: 260px; overflow-y: auto; }
.hist-row { display: flex; flex-direction: column; gap: 2px; font-size: 0.82rem; padding: 8px 0; border-bottom: 1px solid color-mix(in srgb, var(--panel-line) 60%, transparent); }
.hist-row:last-child { border-bottom: none; }
.hist-tag { font-weight: 700; color: var(--ink-soft); font-size: 0.74rem; }
.hist-body { color: var(--ink); line-height: 1.4; }
.hist-empty { color: var(--ink-faint); font-size: 0.82rem; }

.journal { display: flex; flex-direction: column; gap: 4px; }
.jrow { padding: 12px 0; border-bottom: 1px solid var(--panel-line); }
.jrow:last-child { border-bottom: none; }
.jhead { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.jdate { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; }
.jmood { color: var(--ink-soft); font-size: 0.76rem; }
.jbody { color: var(--ink); font-size: 0.9rem; line-height: 1.55; white-space: pre-wrap; }

.gratitude-input { margin-bottom: 8px; }
.gratitude-input:last-of-type { margin-bottom: 0; }

.see-all { display: block; width: 100%; text-align: center; margin-top: 12px; background: none; border: none;
  color: var(--blue-bright); cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 0.84rem; }
.see-all:hover { text-decoration: underline; }

/* ---------- overlays — journal / moments / mood board / games shelf ---------- */
/* pointer-events stays none on the overlay itself even when open, so a
   click in the empty gutter around the panel falls through to .backdrop
   underneath (which is what actually closes it) instead of being eaten by
   this full-viewport flex wrapper. Only the panel opts back in to clicks. */
.overlay { position: fixed; inset: 0; z-index: 22; display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease); padding: 0; }
.overlay.open { opacity: 1; }
@media (min-width: 640px) { .overlay { align-items: center; padding: 24px; } }
.overlay-panel { position: relative; width: 100%; max-width: 640px; max-height: 88vh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: 20px 20px 0 0;
  padding: 22px; transform: translateY(24px); transition: transform 0.35s var(--ease); pointer-events: auto; }
.overlay.open .overlay-panel { transform: translateY(0); }
@media (min-width: 640px) { .overlay-panel { border-radius: 20px; transform: scale(0.97); }
  .overlay.open .overlay-panel { transform: scale(1); } }
.overlay-panel-sm { max-width: 460px; }
.overlay-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.overlay-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0; }
.overlay-close { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--panel-line); background: var(--world-deep);
  color: var(--ink-soft); cursor: pointer; font-size: 0.9rem; line-height: 1; }
.overlay-close:hover { border-color: var(--blue-bright); color: var(--ink); }
.cal-status { font-size: 0.76rem; color: var(--ink-faint); margin-bottom: 10px; height: 1em; }

.mood-board, .cal-months { display: flex; flex-direction: column; gap: 26px; margin-top: 6px; }
.mlegend { display: flex; flex-wrap: wrap; gap: 14px; padding-bottom: 6px; margin-bottom: 6px; border-bottom: 1px solid var(--panel-line); }
.mlegend-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-soft); }
.mswatch { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.mmonth-label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; }
.mgrid { display: grid; grid-template-columns: repeat(7, minmax(0, 36px)); gap: 4px; justify-content: center; }
.mcell {
  position: relative; width: 36px; height: 36px; border-radius: 9px;
  background: var(--world-deep); border: 1px solid var(--panel-line); padding: 0; cursor: default;
  display: flex; align-items: center; justify-content: center;
}
.mcell.has-entry {
  cursor: pointer; border-color: color-mix(in srgb, var(--mcolor, var(--blue)) 55%, var(--panel-line));
  background: color-mix(in srgb, var(--mcolor, var(--blue)) 30%, var(--world-deep));
  transition: transform 0.1s var(--ease), box-shadow 0.1s var(--ease);
}
.mcell.has-entry:hover { transform: scale(1.14); box-shadow: 0 0 0 2px color-mix(in srgb, var(--mcolor, var(--blue)) 60%, transparent); z-index: 2; }
.mcell.empty { background: transparent; border-style: dashed; border-color: var(--locked); }
.mcell.blank { background: transparent; border: none; }
.mcell-icon { width: 16px; height: 16px; fill: none; stroke: var(--mcolor, var(--ink)); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mcell-num {
  position: absolute; top: 2px; left: 3px; font-size: 7.5px; font-weight: 700;
  color: var(--ink-faint); font-variant-numeric: tabular-nums; line-height: 1;
}
.mcell.has-entry .mcell-num { color: color-mix(in srgb, var(--mcolor, var(--ink)) 80%, white); }

/* ---------- day-detail popup content ---------- */
.detail-list { display: flex; flex-direction: column; gap: 14px; }
.detail-item { padding-bottom: 12px; border-bottom: 1px solid var(--panel-line); }
.detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.detail-tag { font-weight: 700; color: var(--ink-soft); font-size: 0.78rem; margin-bottom: 4px; display: block; }
.detail-body { color: var(--ink); font-size: 0.92rem; line-height: 1.55; white-space: pre-wrap; }

/* ---------- games shelf ---------- */
.shelf { display: flex; flex-wrap: wrap; gap: 12px; padding: 18px 4px 22px; border-bottom: 3px solid var(--panel-line);
  perspective: 600px; }
.disc { width: 46px; height: 128px; border-radius: 4px; background: linear-gradient(160deg, var(--blue), var(--blue-bright));
  border: 1px solid var(--panel-line); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex: none; transform-origin: bottom center; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 0 3px 0 rgba(0,0,0,0.25); padding: 8px 0; }
.disc:hover, .disc:focus-visible { transform: rotateZ(-8deg) translateY(-10px); box-shadow: 4px 12px 16px rgba(0,0,0,0.35); outline: none; }
.disc-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; color: #06131F;
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  overflow: hidden; text-overflow: ellipsis; max-height: 100%; letter-spacing: 0.01em;
}
.shelf-empty { color: var(--ink-faint); font-size: 0.85rem; padding: 8px 0; }
.disc-stats { display: flex; gap: 14px; margin: 6px 0 12px; }
.disc-stat { text-align: center; flex: 1; }
.disc-stat .n { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: block; }
.disc-stat .l { font-size: 0.7rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

canvas#burst { position: fixed; inset: 0; z-index: 30; pointer-events: none; }
