/* Chapter 01 — World Primer (Codex Edition).
   Accent: Verdant. Lore-forward; the miasma color table is the centerpiece. */

body.chapter-01 {
  --chapter-accent: var(--primary);
  --chapter-accent-soft: var(--primary-20);
  --chapter-accent-bg: var(--primary-05);
}

/* Codex-style chapter ribbon above the H1 */
body.chapter-01 article::after {
  content: "CHAPTER 01 // CODEX EDITION";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--primary-60);
  z-index: 2;
}

/* Color the miasma color names in the spectrum table */
body.chapter-01 table tbody tr:nth-child(1) td:first-child { color: #ff7a7a; }
body.chapter-01 table tbody tr:nth-child(2) td:first-child { color: #ffb866; }
body.chapter-01 table tbody tr:nth-child(3) td:first-child { color: #ffe066; }
body.chapter-01 table tbody tr:nth-child(4) td:first-child { color: var(--primary); }
body.chapter-01 table tbody tr:nth-child(5) td:first-child { color: var(--secondary); }
body.chapter-01 table tbody tr:nth-child(6) td:first-child { color: var(--tertiary); }
body.chapter-01 table tbody tr:nth-child(7) td:first-child { color: rgba(255,255,255,0.5); }
body.chapter-01 table tbody tr:nth-child(8) td:first-child { color: #ffffff; }
