:root {
  --bg: #0f1115;
  --fg: #f2f0e9;
  --accent: #c9a24b;
}

* {
  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: Georgia, 'Times New Roman', serif;
  text-align: center;
  padding: 2rem;
}

main {
  max-width: 40rem;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #c9c6bb;
  margin-bottom: 2rem;
}

.status {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.links a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

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