:root {
  --bg-0: #0b1120;
  --bg-1: #111a2e;
  --accent: #4f9cf9;
  --accent-2: #7c5cff;
  --text: #e6ecf5;
  --text-muted: #9aa7bd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #1c2a4a 0%, transparent 60%),
    radial-gradient(1000px 700px at 100% 110%, #2a1c4a 0%, transparent 55%),
    var(--bg-0);
  -webkit-font-smoothing: antialiased;
}

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

.card {
  width: min(560px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79, 156, 249, 0.12);
  border: 1px solid rgba(79, 156, 249, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(79, 156, 249, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 156, 249, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(79, 156, 249, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 156, 249, 0);
  }
}

.title {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.message {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.illustration {
  width: 100%;
  display: flex;
  justify-content: center;
}

.illustration svg,
.illustration img {
  width: min(240px, 70%);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(79, 156, 249, 0.25));
}

.illustration .hazard {
  transform-origin: 120px 175px;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-1.5deg);
  }
  50% {
    transform: rotate(1.5deg);
  }
}

.footer {
  font-size: 13px;
  color: var(--text-muted);
}
