/* ============================================================
   theme.css — shared site theme tokens + html.theme-<name> overrides
   Extracted from the inline <style> of index/seeker/profile in P0
   (SPA migration, 2026-05-24). Loaded render-blocking in <head>; the
   theme-bootstrap.js IIFE adds the html.theme-<name> class before first
   paint so there is no flash of the default theme.
   NOTE: sector.html still uses its own body.theme-* model — its theme
   re-scope onto <html>/view data-theme is P1, not P0.
   ============================================================ */
:root {
  /* Default theme: CRT GREEN (muted phosphor — softer than the
     legacy neon, easier on the eyes for long sessions). */
  --green: #56e87a;
  --green-dim: #38b057;
  --green-dark: #0d2515;
  --green-faint: rgba(86,232,122,0.07);
  --amber: #e0a050;
  --red: #ee6060;
  --bg: #0a120c;
  --scan-speed: 8s;
}
/* ── SITE THEME OVERRIDES (activated by html.theme-<name>) ── */
html.theme-cybermoon { --green:#ff4f1f; --green-dim:#d8392f; --green-dark:#3a1e15; --green-faint:rgba(255,79,31,0.07); --amber:#fff200; --red:#ff3088; --bg:#1a0e08; }
html.theme-pink   { --green:#ff9cab; --green-dim:#ff7d9a; --green-dark:#3c2731; --green-faint:rgba(255,156,171,0.07); --amber:#fff200; --red:#ff4050; --bg:#151c1c; }
html.theme-cyan   { --green:#7ee8ff; --green-dim:#4ec0e0; --green-dark:#152d3b; --green-faint:rgba(126,232,255,0.07); --amber:#b084ff; --red:#ff4f9a; --bg:#04101e; }
html.theme-blue   { --green:#5cb0ff; --green-dim:#3a82d6; --green-dark:#0a1830; --green-faint:rgba(92,176,255,0.07); --amber:#ffce4e; --red:#ff6366; --bg:#050b18; }
html.theme-neon   { --green:#ff5cf0; --green-dim:#d040c8; --green-dark:#2a0c33; --green-faint:rgba(255,92,240,0.07); --amber:#5cf0ff; --red:#ffba00; --bg:#0a0510; }
html.theme-amber  { --green:#ffb000; --green-dim:#c47a00; --green-dark:#3a2a0a; --green-faint:rgba(255,176,0,0.07);   --amber:#ff5c1a; --red:#ff3333; --bg:#0e0a04; }
html.theme-toxic  { --green:#b8ff00; --green-dim:#88c000; --green-dark:#2a3300; --green-faint:rgba(184,255,0,0.07);   --amber:#ff8800; --red:#ff3030; --bg:#0c1003; }
html.theme-void   { --green:#b8a8ff; --green-dim:#7d6dd6; --green-dark:#1c1b30; --green-faint:rgba(184,168,255,0.07); --amber:#ff8a5c; --red:#ff5577; --bg:#06060c; }
