:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.20), transparent 35%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
}

.page-wrap,
.content-wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.page-wrap {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
}

.hero-card {
  width: min(760px, 100%);
  padding: 48px;
  text-align: center;
}

.text-card {
  padding: 42px;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.03em;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.text-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--accent);
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.status-box {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.54);
  color: var(--text);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 700;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .page-wrap,
  .content-wrap {
    width: min(100% - 22px, 1100px);
    padding-top: 34px;
  }

  .hero-card,
  .text-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  footer {
    font-size: 0.94rem;
  }
}
