/* ============================================
   REPLAY PAGE (replay.html) — Page-Specific
   ============================================ */

.container {
  max-width: 900px;
}

/* ---------- HERO + VIDEO ---------- */
.hero {
  min-height: 100vh;
  padding: 80px 24px 60px;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 5, 25, 0.80) 0%,
    rgba(26, 10, 46, 0.85) 40%,
    rgba(13, 5, 25, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero__presents {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rich-gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--rich-gold);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- VIDEO PLAYER ---------- */
.hero__video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.12);
  cursor: pointer;
}

.hero__video video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.hero__video > div {
  width: 100% !important;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(26,10,46,0.15) 0%, rgba(26,10,46,0.4) 100%);
  transition: opacity 0.4s ease;
  z-index: 2;
}

.hero__video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);
}

.hero__video-play svg {
  width: 32px;
  height: 32px;
  fill: #1A0A2E;
  margin-left: 4px;
}

.hero__video:hover .hero__video-play {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 1);
  box-shadow: 0 4px 32px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.25);
}

.hero__video-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 0.9;
}

/* ---------- REPLAY COUNTDOWN ---------- */
.countdown-wrap {
  text-align: center;
  margin-bottom: 8px;
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-coral);
  margin-bottom: 12px;
}

.replay-countdown {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.replay-countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.replay-countdown__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(45, 27, 78, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1;
  min-width: 56px;
  text-align: center;
}

.replay-countdown__unit {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft-lavender);
  margin-top: 4px;
}

.replay-countdown__sep {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rich-gold);
  opacity: 0.6;
  padding-bottom: 18px;
}

.hero__expire-note {
  font-size: 0.8rem;
  color: var(--soft-lavender);
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}

/* ---------- WHAT YOU'LL DISCOVER ---------- */
.discover {
  padding: 80px 24px;
  background: var(--near-black);
}

.discover__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--rich-gold);
  text-align: center;
  margin-bottom: 40px;
}

.discover__list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discover__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.discover__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.discover__check svg {
  width: 24px;
  height: 24px;
}

/* ---------- HOST SECTION ---------- */
.host-section {
  padding: 60px 24px;
  background: var(--deep-purple);
}

.host__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.host__photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 2px solid var(--rich-gold);
  background: rgba(45, 27, 78, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.host__photo-icon {
  color: var(--soft-lavender);
  opacity: 0.5;
}

.host__photo-icon svg {
  width: 48px;
  height: 48px;
}

.host__info {
  flex: 1;
}

.host__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rich-gold);
  margin-bottom: 4px;
}

.host__title-text {
  font-size: 0.85rem;
  color: var(--soft-lavender);
  margin-bottom: 12px;
}

.host__bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 10, 46, 0.82) 0%, rgba(13, 5, 25, 0.85) 100%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--rich-gold);
  margin-bottom: 16px;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__guarantee {
  font-size: 0.85rem;
  color: var(--soft-lavender);
  margin-top: 16px;
}

.cta-section__secondary-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--rich-gold);
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.cta-section__secondary-link:hover {
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 16px 48px;
  }

  .hero__subtitle {
    margin-bottom: 28px;
  }

  .hero__video {
    max-width: 100%;
    margin: 0 auto 24px;
    border-radius: 8px;
  }

  .hero__video-play {
    width: 60px;
    height: 60px;
  }

  .hero__video-play svg {
    width: 24px;
    height: 24px;
  }

  .hero__video-label {
    font-size: 0.7rem;
    bottom: 14px;
  }

  .replay-countdown__number {
    font-size: 1.35rem;
    padding: 6px 10px;
    min-width: 48px;
  }

  .replay-countdown__block {
    min-width: 48px;
  }

  .discover {
    padding: 60px 16px;
  }

  .discover__item {
    font-size: 0.95rem;
  }

  .host-section {
    padding: 48px 16px;
  }

  .host__inner {
    flex-direction: column;
    text-align: center;
  }

  .host__photo {
    width: 100px;
    height: 100px;
  }

  .cta-section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .replay-countdown {
    gap: 4px;
  }

  .replay-countdown__number {
    font-size: 1.15rem;
    padding: 6px 8px;
    min-width: 42px;
  }

  .replay-countdown__sep {
    font-size: 1.1rem;
  }

  .hero__presents {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
}
