/* ======================
   PROJECT THEME OVERRIDES
   Overrides ONLY system tokens
   ====================== */

/* Light theme overrides */
:root{
  --bg: #ffffff;
  --text: #141414;
  --border: rgba(0,0,0,0.06);

  --primary: #e9e9e9;
  --secondary: #f4f4f4;

  --accent: #944442;
}

/* Dark theme overrides (must match system: body.dark-mode) */
body.dark-mode{
  --bg: #0b0f14;
  --bg-soft: #131a22;     /* optional but recommended */
  --bg-hard: #1b2430;     /* optional but recommended */

  --text: #f2f6ff;
  --text-soft: rgba(242,246,255,0.82); /* optional */
  --text-mute: rgba(242,246,255,0.62); /* optional */

  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18); /* optional */

  --primary: #0b0f14;
  --secondary: #131a22;

  --accent: #cc0000;  /* <-- this is the important one */
}
