:root {
  --bg1: #0f0c29;
  --bg2: #302b63;
  --bg3: #24243e;
  --accent: #7c5cff;
  --text: #f5f5fa;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Tahoma, system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  background-size: 400% 400%;
  animation: gradient 14s ease infinite;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.badge {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(124,92,255,0.25);
  color: #cabbff;
  margin-bottom: 18px;
}
h1 { font-size: 40px; margin-bottom: 14px; letter-spacing: -0.5px; }
p { font-size: 16px; line-height: 1.9; opacity: 0.85; }
.btn {
  margin-top: 26px;
  padding: 12px 30px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(124,92,255,0.5); }
.status { margin-top: 16px; font-size: 14px; color: #9affc9; min-height: 20px; }
