* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 20px;
}
.container { max-width: 500px; }
h1 { font-size: 2rem; margin-bottom: 12px; }
p { font-size: 1.1rem; color: #94a3b8; line-height: 1.6; }
.badge {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: 20px;
  background: #1e293b;
  font-size: 0.85rem;
  color: #38bdf8;
  letter-spacing: 0.5px;
}
.links {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.links a {
  padding: 8px 16px;
  border-radius: 8px;
  background: #1e293b;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.95rem;
}
.links a:hover { background: #334155; }
