* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 42rem;
  margin: 0 auto;
}

.links a {
  display: block;
  padding: 1.25rem 2.5rem;
  background: #1e293b;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  border: 1px solid #334155;
  transition: background 0.2s, border-color 0.2s;
}

.links a:hover {
  background: #334155;
  border-color: #60a5fa;
}
