:root {
  color-scheme: light dark;
  --bg: #0f172a;
  --fg: #f8fafc;
  --accent: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.meta {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 2rem;
}

code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 0.3rem;
}

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