:root {
  color-scheme: dark;
  --bg: #0a1021;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #eef2ff;
  --muted: #adc0ff;
  --accent: #7b9cff;
  --accent-strong: #5f7ce4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(123, 156, 255, 0.24), transparent 28%),
              radial-gradient(circle at bottom right, rgba(56, 96, 255, 0.18), transparent 30%),
              linear-gradient(180deg, #060817 0%, #0f1328 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.page-shell {
  width: min(100%, 960px);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.logo-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.badge {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(123, 156, 255, 0.45), rgba(95, 124, 228, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f7fbff;
}

.title-block h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card {
  padding: 32px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(123, 156, 255, 0.14);
  color: #dce4ff;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.message {
  margin: 24px 0 20px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #e9edff;
}

.details {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.details p {
  margin: 0;
  color: #d8deff;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.countdown div {
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(15, 19, 40, 0.85);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.countdown span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
  display: block;
}

.note {
  margin: 0;
  font-size: 0.96rem;
  color: #b8c4ff;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 24px;
  }

  .logo-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
