/* nocturna — theme tokens (light, dark, astro) */

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f4f6f8;
  --bg-elevated: #ffffff;
  --text: #0f1419;
  --text-muted: #5c6c7a;
  --accent: #1e5a8a;
  --accent-soft: rgba(30, 90, 138, 0.12);
  --border: rgba(15, 20, 25, 0.1);
  --danger: #b42318;
  --success: #1b7f4a;
  --chart-line: #1e5a8a;
  --warning: #b45309;
  /* Score category pills: green → amber → red (not used in astro — see astro block) */
  --score-pill-excellent: #15803d;
  --score-pill-good: #16a34a;
  --score-pill-fair: #ca8a04;
  --score-pill-poor: #d97706;
  --score-pill-bad: #b91c1c;
  --moon-glow: rgba(255, 220, 150, 0.35);
  /* Moon phase emoji: grayscale (no yellow) + light shadow for depth */
  --moon-emoji-filter: grayscale(1) contrast(1.08) brightness(0.94)
    drop-shadow(0 1px 3px rgba(15, 20, 25, 0.18));
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #0c0f12;
  --bg-elevated: #141a21;
  --text: #e8edf2;
  --text-muted: #9aa7b2;
  --accent: #6eb3ff;
  --accent-soft: rgba(110, 179, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --danger: #ff8a7a;
  --success: #5fd39a;
  --chart-line: #6eb3ff;
  --warning: #f0b429;
  --score-pill-excellent: #4ade80;
  --score-pill-good: #86efac;
  --score-pill-fair: #facc15;
  --score-pill-poor: #fb923c;
  --score-pill-bad: #f87171;
  --moon-glow: rgba(255, 230, 180, 0.2);
  --moon-emoji-filter: grayscale(1) contrast(1.12) brightness(1.12)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* Astro: red-on-black for preserved night vision (no cool/green UI chrome) */
:root[data-theme='astro'] {
  color-scheme: dark;
  --bg: #050608;
  --bg-elevated: #0d0f12;
  --text: #e8a8a8;
  --text-muted: #b07070;
  --accent: #e07070;
  --accent-soft: rgba(224, 112, 112, 0.14);
  --border: rgba(224, 112, 112, 0.22);
  --danger: #f09090;
  /* "Good" score pills — red family, not green */
  --success: #e88888;
  --chart-line: #d17a7a;
  --warning: #e8a54b;
  /* Astro: all score pills stay in the warm/red palette (no green chrome) */
  --score-pill-excellent: #e8a8a8;
  --score-pill-good: #e88888;
  --score-pill-fair: #e8a54b;
  --score-pill-poor: #e07070;
  --score-pill-bad: #f09090;
  --moon-glow: rgba(224, 112, 112, 0.14);
  --moon-emoji-filter: grayscale(1) contrast(1.1) brightness(0.88)
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}
