:root {
  --bg1: #071024;
  --bg2: #041022;
  --card: #0b1220aa;
  --glass: #0b1224cc;
  --accent1: #7c3aed;
  --accent2: #06b6d4;
  --muted: #1d1d1e;
  --text: #e6eef8;
  --max-width: 920px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg1) 0%, #071431 55%, #062233 100%);
  background-image: url(bg-img.jpg);
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

/* Card */
.page {
  width: 100%;
  max-width: var(--max-width);
}
.card {
  position: relative;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(120%);
  display: grid;
  gap: 18px;
  text-align: center;
  background-color: #e7a423;
  color: #6a451b;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.logo svg {
  filter: drop-shadow(0 6px 18px rgba(12, 12, 40, 0.45));
}

/* Headings */
h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lead {
  margin: 6px 0 18px;
  font-weight: 400;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
.time {
  background: linear-gradient(
    180deg,
    rgb(18 2 2 / 3%),
    rgba(255, 255, 255, 0.05)
  );
  padding: 12px 14px;
  border-radius: 10px;
  min-width: 72px;
}
.time span {
  display: block;
  font-weight: 800;
  font-size: 1.25rem;
}
.time small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 6px;
}

/* Subscribe */
.subscribe {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 6px;
  flex-wrap: wrap;
}
.subscribe input {
  width: 320px;
  max-width: 60vw;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  outline: none;
  font-size: 1rem;
}
.subscribe input:focus {
  box-shadow: 0 6px 24px rgba(12, 12, 40, 0.5);
  border-color: rgba(124, 58, 237, 0.6);
}
.btn {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: white;
  border: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 27, 58, 0.45);
}
.btn:active {
  transform: translateY(1px);
}
.small {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Social */
.social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}
.social a {
  color: var(--muted);
  opacity: 0.95;
}
.social a:hover {
  color: var(--text);
  transform: translateY(-3px);
}

/* Background decor */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(
      600px 300px at 10% 20%,
      rgba(124, 58, 237, 0.08),
      transparent 10%
    ),
    radial-gradient(
      500px 260px at 90% 80%,
      rgba(6, 182, 212, 0.06),
      transparent 12%
    );
  filter: blur(40px) saturate(1.2);
  z-index: -1;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (min-width: 880px) {
  .card {
    padding: 48px;
  }
  .countdown .time {
    min-width: 96px;
  }
}
