:root {
  color-scheme: dark;
  --bg: radial-gradient(circle at top, #111937 0%, #050610 60%);
  --accent: #ffba08;
  --accent-strong: #ff007f;
  --text: #f6f7fb;
  --shadow: rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Oxanium', 'Russo One', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.12), rgba(17, 25, 55, 0.65));
  backdrop-filter: blur(22px);
}

.badge {
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 1.5vw, 0.9rem);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(255, 186, 8, 0.2);
}

.title {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  display: grid;
}

.title span {
  display: block;
}

.title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 30px rgba(255, 186, 8, 0.65);
}

.subtitle {
  margin: 1rem 0 2rem;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  width: min(900px, 100%);
}

.cta-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(10, 12, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 45px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 60px rgba(0, 0, 0, 0.45);
}

.cta-card .cta-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  opacity: 0.75;
}

.cta-card .cta-price {
  font-family: 'Russo One', 'Oxanium', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--accent);
  margin: 0.5rem 0;
}

.cta-card .cta-text {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-card.premium {
  border-color: rgba(255, 0, 127, 0.4);
  background: radial-gradient(circle at top, rgba(255, 0, 127, 0.25), rgba(3, 4, 8, 0.85));
  box-shadow: 0 35px 55px rgba(255, 0, 127, 0.35);
}

.countdown {
  margin: clamp(2rem, 4vw, 3.5rem) 0 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: 'Russo One', 'Oxanium', sans-serif;
}

.count-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  font-size: 0.85rem;
}

.count-value {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--accent-strong);
  text-shadow: 0 0 50px rgba(255, 0, 127, 0.5);
  min-width: 3ch;
}

.count-suffix {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.footer-line {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .cta-grid {
    width: 100%;
  }

  .footer-line {
    letter-spacing: 0.18em;
    font-size: 0.8rem;
  }
}
