:root {
  --bg: #0e0f11;
  --text: #e4e7eb;
  --accent: #00b3a4;
  --muted: #8a8f98;
}

body {
  margin: 60px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header {
  margin-bottom: 40px;
}

h1 {
  margin-bottom: 5px;
  color: var(--accent);
}

.subtitle {
  opacity: 0.7;
  margin-top: 0;
}

nav {
  margin-top: 20px;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--accent);
}

h2 {
  margin-top: 40px;
  color: var(--accent);
}

ul {
  line-height: 1.6;
  padding-left: 20px;
}

footer {
  margin-top: 80px;
  opacity: 0.5;
  font-size: 0.85rem;
}

.meta {
  margin-top: 5px;
}
