:root {
  --bg: #0a0a0a;
  --fg: #ededed;
  --muted: #8a8a8a;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --fg: #0a0a0a;
    --muted: #6b6b6b;
  }
}
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 24px;
  box-sizing: border-box;
}
h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
