/* ==========================================================================
   PROJECT LAZARUS — DESIGN TOKENS
   Color + text tokens used across the main site. These names are the ones
   style.css references; the broader prefixed "design system" naming
   (--laz-green, --gm-life, etc.) is intentionally NOT used here to keep
   the mockup's inlined CSS working unchanged.
   ========================================================================== */

:root {
  /* Accents */
  --green:       #9dff2b;  /* primary accent, Original gamemode, CTAs */
  --green-deep:  #5fc300;  /* hover / pressed */
  --gold:        #e6b84a;  /* Life gamemode accent */
  --red:         #ff2d2d;  /* alert / destructive / wipe warning */

  /* Inks (backgrounds) */
  --ink:         #0a0d0a;  /* page background */
  --ink-2:       #13181a;  /* raised surface */
  --ink-3:       #1b2124;  /* card interior */
  --fog:         #2a3237;  /* dividers on dark surfaces */

  /* Bones (foreground text) */
  --bone:        #e9e6dc;  /* primary text */
  --bone-2:      #bdb8a8;  /* secondary / body text */
  --bone-3:      #8a8678;  /* tertiary / caption text */

  /* Hairlines */
  --hair:        rgba(255, 255, 255, 0.08);
  --hair-2:      rgba(255, 255, 255, 0.18);
}
