* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f0f10;
  --bg-soft: #161618;
  --text: #e6e6e6;
  --text-muted: #a0a0a0;
  --accent: #7dd3fc;
  --border: #262626;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

a:hover,
a:focus {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

header {
  margin-bottom: 4rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

nav a {
  color: var(--text-muted);
}

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

section {
  margin-bottom: 4rem;
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.muted {
  color: var(--text-muted);
}


.item-title a {
  color: var(--text);
  border-bottom: 1px solid transparent;
}

.item-title a:hover {
  border-bottom: 1px solid var(--border);
}
