/* ═══════════════════════════════════════════════════
   Canary Play — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────── */
body {
  background-color: #FFFFFF;
  color: #1A1A2E;
  font-family: 'Inter', sans-serif;
}

img {
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
}

/* ── Neon Underline ──────────────────────────── */
.neon-underline {
  position: relative;
  display: inline-block;
}

.neon-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E8437F, #0099B8);
  border-radius: 2px;
}

/* ── Gradient Text ───────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #E8437F, #0099B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Card ───────────────────────────────── */
.glass-card {
  background: rgba(247, 247, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 67, 127, 0.12);
  border-color: rgba(232, 67, 127, 0.2);
}

/* ── Hero Container ───────────────────────────── */
#hero {
  content-visibility: auto;
}

/* ── Hero overlay ─────────────────────────────── */
.hero-overlay {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 1) 100%);
}

/* ── Scroll-reveal (hidden until observed) ───── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Fixed CTA shimmer ───────────────────────── */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmerSlide 2.5s ease-in-out infinite;
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ── Mobile nav backdrop ─────────────────────── */
.mobile-nav-open {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* ── Glassmorphism Navbar ─────────────────────── */
.glass-nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom-color: rgba(232, 67, 127, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* ── Glow Button ──────────────────────────────── */
.neon-glow-btn {
  position: relative;
  animation: neonPulse 2.4s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    box-shadow:
      0 0 8px rgba(232, 67, 127, 0.25),
      0 0 20px rgba(232, 67, 127, 0.15);
  }

  50% {
    box-shadow:
      0 0 12px rgba(232, 67, 127, 0.4),
      0 0 30px rgba(232, 67, 127, 0.25);
  }
}

.neon-glow-btn:hover {
  animation: none;
  box-shadow:
    0 0 14px rgba(232, 67, 127, 0.5),
    0 0 36px rgba(232, 67, 127, 0.3);
}

/* ── Placeholder image styling ────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #F0F0F2 0%, #E8E8EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ── Countdown Timer ──────────────────────────── */
.countdown-wrapper {
  border: 2px solid #D4A843;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  background: rgba(212, 168, 67, 0.06);
  box-shadow:
    0 0 12px rgba(212, 168, 67, 0.15),
    0 0 30px rgba(212, 168, 67, 0.08);
  animation: canaryGlow 3s ease-in-out infinite;
}

@keyframes canaryGlow {

  0%,
  100% {
    box-shadow:
      0 0 12px rgba(212, 168, 67, 0.15),
      0 0 30px rgba(212, 168, 67, 0.08);
  }

  50% {
    box-shadow:
      0 0 18px rgba(212, 168, 67, 0.28),
      0 0 45px rgba(212, 168, 67, 0.14);
  }
}

.countdown-digits {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #1A1A2E;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4rem;
}

.countdown-unit .digit {
  font-size: 2.2rem;
  line-height: 1;
}

.countdown-unit .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(212, 168, 67, 0.8);
  margin-top: 0.4rem;
}

.countdown-separator {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(212, 168, 67, 0.5);
  padding: 0 0.15rem;
  align-self: flex-start;
  margin-top: 0.1rem;
}

@media (max-width: 480px) {
  .countdown-wrapper {
    padding: 1.2rem 1rem;
  }

  .countdown-unit {
    min-width: 3rem;
  }

  .countdown-unit .digit {
    font-size: 1.5rem;
  }

  .countdown-separator {
    font-size: 1.4rem;
  }
}

/* ── FAQ Accordion ─────────────────────────────── */
.faq-section {
  background: transparent;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #0099B8;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: #007a94;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  color: #0099B8;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}