:root {
  --bg: #0f0f0f;
  --fg: #e8e8e8;
  --muted: #888;
  --accent: #6ee7b7;
  --max-width: 680px;
}

* {
  box-sizing: border-box;
}

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

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.9rem;
}

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

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

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

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--fg);
}

.log-list {
  list-style: none;
  padding: 0;
}

.log-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #222;
}

.log-list a {
  color: var(--fg);
  text-decoration: none;
}

.log-list a:hover {
  color: var(--accent);
}

.log-date {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}
