:root {
  --accent: #7c3aed;
  --accent-hover: #7c3aed;
  --bg-deep: #0f172a;
  --bg: #1e293b;
  --surface: #334155;
  --muted: #94a3b8;
  --header-bg: #334155;
  --radius: 6px;
  --font: Georgia,Cambria,Times New Roman,serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: #0f172a;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
