/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b1020;
  color: #e6e8ec;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  text-align: center;
}

.status {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cc4ff;
  background: rgba(124, 196, 255, 0.12);
  border: 1px solid rgba(124, 196, 255, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
  color: #c8ccd4;
}

.hint {
  margin-top: 8px;
  color: #a7adbb;
}

a { color: #8fd1ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.footer {
  margin-top: 24px;
  color: #8b91a1;
  font-size: 12px;
}

@media (max-width: 420px) {
  .card { padding: 22px; }
  h1 { font-size: 24px; }
}


