body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0f0f14;
  color: #eaeaea;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

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

.subtitle {
  color: #9aa0a6;
  margin-bottom: 2rem;
}

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

a {
  color: #7aa2ff;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid #2a2f3a;
  border-radius: 8px;
  transition: 0.2s;
}

a:hover {
  background: #1a1f2a;
  border-color: #3a4150;
}
