body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b0f14 0%, #05070a 60%, #000 100%);
  color: #e6e6e6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: center;
  padding: 28px 16px 10px;
}

.logo {
  height: 44px;
  filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.25));
}

/* MAIN CARD */
.card {
  width: min(720px, 92vw);
  margin: 6vh auto auto;
  padding: 42px 34px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* subtle glow */
.glow {
  position: absolute;
  inset: auto -40px -60px -40px;
  height: 140px;
  background: radial-gradient(circle, rgba(0,140,255,0.18), transparent 70%);
  filter: blur(20px);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 1.2px;
  border-radius: 999px;
  background: rgba(0, 140, 255, 0.12);
  color: #6fb6ff;
  border: 1px solid rgba(0, 140, 255, 0.25);
}

h1 {
  margin: 18px 0 14px;
  font-size: 34px;
  font-weight: 600;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b7c7d6;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #19d17a;
  box-shadow: 0 0 10px #19d17a;
}

.desc {
  color: #9fb0c2;
  line-height: 1.6;
  font-size: 14px;
  max-width: 560px;
}

/* FOOTER */
.footer {
  margin-top: auto;
  text-align: center;
  padding: 22px 12px;
  font-size: 12px;
  color: #6b7a8a;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}
