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

:root {
  --bg1: #08111f;
  --bg2: #13233f;
  --card: rgba(255, 255, 255, 0.10);
  --card-border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #cbd5e1;
  --accent: #38bdf8;
  --accent2: #818cf8;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), transparent 35%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.25), transparent 35%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 680px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25);
}

.logo span {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #dff7ff;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.28);
}

h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.message {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.status-box {
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.status-label {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 13px;
}

.status-box strong {
  font-size: 16px;
}

.pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 rgba(245, 158, 11, 0.8);
  animation: pulse 1.6s infinite;
}

.footer {
  color: #94a3b8;
  font-size: 14px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.65);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

@media (max-width: 520px) {
  .card {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .message {
    font-size: 17px;
  }

  .status-box {
    padding: 16px;
  }
}
