:root {
  --bg: #0a0a0a;
  --fg: #e8e8e8;
  --muted: #555;
  --accent: #7c4dff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  line-height: 1.6;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

h1 span {
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2em;
}

.status {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 3em;
  font-style: italic;
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2em;
  padding: 1em;
  border: 1px dashed #333;
  border-radius: 8px;
}

.hint code {
  color: var(--accent);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

footer {
  margin-top: auto;
  padding-top: 3em;
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.5em;
}

footer a:hover {
  color: var(--fg);
}

/* Legal pages */
.legal {
  max-width: 720px;
  padding: 48px 24px;
  text-align: left;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1em;
}

.legal h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.legal p, .legal li {
  color: #aaa;
  margin-bottom: 0.8em;
}

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