/* =========================================
   Inline theme (colors only)
   Keeps this page stable even if linked CSS changes.
   ========================================= */
:root {
  --bg: #0f1724;
  --card: #0b1220;
  --muted: #9aa4b2;
  --accent: #9f7aea;
}

body {
  background: linear-gradient(180deg, #071026 0%, #07142a 100%);
  color: #e6eef6;
}

header,
footer {
  background: #222;
  color: #fff;
}

footer { color:#ccc; }

h1 {
  color: #f5e7c0;
  text-shadow:
    0 0 6px rgba(255, 214, 102, 0.35),
    0 0 12px rgba(255, 186, 73, 0.35),
    0 0 24px rgba(255, 165, 0, 0.25),
    0 0 36px rgba(255, 140, 0, 0.15);
}

h2, h3 { color: var(--accent); }

main a,
main a:visited { color: var(--accent); }

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

.sheet-controls .hint{ color: var(--muted); }
