:root {
  color-scheme: dark;
  --bg: #2b332c;
  --text: #ece5d3;
  --muted: #9caa97;
  --accent: #c9b98f;
  --border: #3f4a3f;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  max-width: 60rem;
  margin: 0 auto;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a.brand {
  color: var(--text);
  font-weight: 800;
  margin-right: auto;
}

main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.links a {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.links a:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.draft-flag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #ffe08a;
  color: #4a3800;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
