/* ── Countdown Hero ── */
/* Anton display, stacked title, gradient "VICE CITY", JetBrains Mono countdown */

.countdown-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A0A0A;
}

/* ── Video background ── */
.countdown-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0A0A0A;
}

.countdown-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
}

.countdown-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* ── Content ── */
.countdown-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.countdown-hero__eyebrow {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.65rem, 1.4vw, 0.8rem);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ── Title block ── */
.countdown-hero__title-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 1rem;
}

.countdown-hero__title-return {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(3.5rem, 16vw, 8rem);
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin: 0;
  position: relative;
  z-index: 1;
}

.countdown-hero__title-vicecity {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(4.5rem, 22vw, 11rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
  text-transform: uppercase;
  margin: -0.12em 0 0 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #FF1493 0%, #FF6B35 45%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

/* ── Countdown ── */
.countdown-hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.countdown-hero__countdown-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.countdown-hero__countdown-label {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.5rem, 1vw, 0.65rem);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-right: 0.4rem;
  font-weight: 500;
}

.countdown-hero__countdown-sep {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  margin-right: 0.4rem;
}

/* ── CTA ── */
.countdown-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--size-touch-target);
  min-height: var(--size-touch-target);
  padding: 0.8rem 2.25rem;
  border-radius: 9999px;
  background: #FF1493;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.countdown-hero__cta:hover {
  box-shadow: 0 0 40px rgba(255, 20, 147, 0.5);
  transform: scale(1.04);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .countdown-hero {
    min-height: auto;
    height: 56.25vw;
    padding: 0;
  }

  .countdown-hero__content {
    padding: 1rem 0.75rem 0.5rem;
    max-width: 95vw;
  }

  .countdown-hero__eyebrow {
    font-size: 0.45rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.35rem;
  }

  .countdown-hero__title-return {
    font-size: clamp(1.8rem, 12vw, 2.4rem);
  }

  .countdown-hero__title-vicecity {
    font-size: clamp(2.2rem, 16vw, 3.2rem);
    margin-top: -0.08em;
  }

  .countdown-hero__title-block {
    margin-bottom: 0.5rem;
  }

  .countdown-hero__countdown {
    gap: 0.15rem;
    margin-bottom: 0.5rem;
  }

  .countdown-hero__countdown-num {
    font-size: clamp(0.7rem, 2.8vw, 0.95rem);
  }

  .countdown-hero__countdown-label {
    font-size: 0.35rem;
    margin-right: 0.15rem;
    letter-spacing: 0.1em;
  }

  .countdown-hero__countdown-sep {
    font-size: 0.65rem;
    margin-right: 0.15rem;
  }

  .countdown-hero__cta {
    padding: 0.35rem 1rem;
    font-size: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .countdown-hero__video { display: none; }
  .countdown-hero__video-bg { background: #0A0A0A; }
}
