:root {
  --bg: #0f0f0f;
  --fg: #e6e6e6;
  --muted: #9a9a9a;
  --accent: #f5c400;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}
