:root {
  --accent: #ee7744;
  --text: #222;
  --muted: #666;
  --bg: #fafafa;
  --border: #ddd;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}

.site-header {
  padding: 2rem 1.5rem;
  background: #111;
  color: white;
}

.site-header h1 {
  font-family: "Lucida Console", monospace;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #ccc;
  max-width: 800px;
}

.content {
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem;
}

section {
  margin-bottom: 3rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
