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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e8e8e8;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  color: #a0a0a0;
  margin-bottom: 0.5rem;
}

p.meta {
  margin-top: 2rem;
  font-size: 0.9rem;
}

a {
  color: #5b8def;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #b0c4ef;
}
