/* === Custom Properties (matched from orionr.com) === */
:root {
  --bg: #fff;
  --text: #222;
  --muted: #666;
  --accent: #2563a0;
  --accent-hover: #1a4670;
  --border: #e0e0e0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a1a;
    --text: #e0e0e0;
    --muted: #999;
    --accent: #6cacf0;
    --accent-hover: #8fc4ff;
    --border: #333;
  }
}

/* === Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === Base === */
html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
}

/* === Layout === */
.container {
  max-width: 600px;
  width: 100%;
}

/* === Typography === */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.registered {
  font-size: 0.9rem;
  color: var(--muted);
}

/* === Links === */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

/* === Separator === */
.separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.75rem 0 1.5rem;
}

/* === Links section === */
.links {
  font-size: 0.95rem;
  line-height: 2;
}

.links span {
  color: var(--muted);
}

/* === Copyright === */
.copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}
