/* Single source of design tokens for index / category / account.
   Previously duplicated in three :root blocks that had already drifted
   (--stroke vs --border, .14 vs .1 alpha, no --accent on index.html). */
:root{
  --bg:#000;
  --text:#fff;
  --muted:rgba(255,255,255,.5);
  --tile:#4A6C6F;
  --tile2:#3E6164;
  --card:#111;
  --panel:#0d1414;
  --panel2:#152022;
  --border:rgba(255,255,255,.1);
  --stroke:var(--border);      /* alias — account.css spelling */
  --accent:#69dcdc;
  --teal:var(--accent);        /* alias — account.css spelling */
  --teal-dark:var(--tile);
  --danger:#ff5555;
  --warn:#ffd166;
  --ok:#73e0a9;
}
