/* Dream Lands — Mobile overrides + home-page tweaks (loaded last) */
/* =====================================================
   DESKTOP HERO REDESIGN — AITuber style
   ===================================================== */

/* Header right actions (CTA button) */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-self: end;
}

.header-cta-btn {
  background: var(--acid);
  color: #08130b;
  font-size: .85rem;
  font-weight: 800;
  padding: .5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}

.header-cta-btn:hover {
  background: var(--acid-strong);
  transform: translateY(-1px);
}

/* Star-rating pill */
.hero-new-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2rem;
  padding: .45rem 1.1rem;
}

.hero-new-pill strong {
  color: #fff;
  font-weight: 700;
}

.hero-new-pill-stars {
  color: #fbbf24;
  font-size: .9rem;
  letter-spacing: 1px;
}

.hero-new-pill-dot {
  display: none;
}

/* Accent text — red/orange like AITuber */
.hero-accent-red {
  color: var(--acid);
}

/* "ZERO" accent in tagline */
.hero-zero {
  color: var(--acid);
  font-weight: 700;
}

/* Updated desktop headline */
.hero-desktop-only.hero-dt-headline,
.hero-dt-headline.hero-desktop-only {
  text-align: center;
  max-width: 820px;
}

.hero-dt-headline {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin: .5rem 0;
}

/* Updated desktop subtext */
.hero-dt-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  max-width: 640px;
  margin-bottom: .5rem;
}

.hero-dt-subtext strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

/* Primary CTA — large, rounded, with glow */
.hunt-primary {
  background: var(--acid);
  color: #08130b;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  font-size: 1.05rem;
  font-weight: 800;
  border: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(95, 208, 122, .15), 0 6px 20px rgba(95, 208, 122, .2);
}

.hunt-primary:hover {
  background: var(--acid-strong);
  box-shadow: 0 0 0 3px rgba(95, 208, 122, .25), 0 10px 30px rgba(95, 208, 122, .35);
}

/* Social proof row */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.hero-social-label {
  font-weight: 500;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2rem;
  padding: .3rem .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
}

.hero-social-icon svg {
  opacity: .7;
}

.hero-social-sep {
  font-weight: 500;
}

/* ── Hero latest properties marquee ── */
.hero-latest-marquee {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: .75rem 0;
}

.hero-latest-marquee .hero-reel-carousel {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.hero-latest-marquee .reel-row {
  padding-bottom: 0;
}

/* ── Hero category grid ── */
.hero-cat-grid {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: .75rem 2rem 1rem;
}

.hero-cat-grid .category-grid {
  gap: .75rem;
}

.hero-cat-grid .cat-card {
  border-radius: 10px;
  height: 130px;
}

.hero-cat-grid .cat-card-label {
  font-size: .85rem;
}

.hero-cat-grid .cat-card-sub {
  font-size: .7rem;
}

/* Fix header grid on mobile — revert to flex so drawer still works */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-inner .brand,
  .header-inner #header-nav,
  .header-inner #header-bell {
    justify-self: unset;
  }

  .header-cta-btn {
    display: none !important;
  }

  /* show marquee on mobile too */
  .hero-latest-marquee {
    display: block;
  }

  /* Re-enable marquee animation in the hero (overrides the generic mobile off) */
  .hero-latest-marquee .reel-row-carousel {
    animation: reel-marquee var(--marquee-duration, 90s) linear infinite;
    overflow: visible;
    scroll-snap-type: none;
    width: max-content;
  }

  .hero-social-proof {
    display: none !important;
  }

  /* Hero: no negative margin on mobile (header is solid, not transparent) */
  .hero {
    margin-top: 0;
  }

  /* Mobile hero sizing — override global desktop values */
  .hero-dt-headline {
    font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
    line-height: 1.25;
    margin: .3rem 0;
  }

  .hero-dt-subtext {
    font-size: .82rem !important;
    margin-top: .4rem;
    margin-bottom: .4rem;
    /* Show shorter subtext on mobile via line-clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-new-pill {
    font-size: .72rem;
    padding: .3rem .85rem;
  }

  .hunt-primary {
    padding: .65rem 1.5rem !important;
    font-size: .88rem !important;
  }

  .hero-grid {
    padding: 1.5rem 1.25rem 1rem;
  }

  .hero-content {
    flex: none;
  }
}
/* =====================================================
   HOME PAGE — hide save button, mobile play icon
   ===================================================== */

/* Hide save (heart) button on all home page cards */
body:not(.explore-page):not(.reels-page):not(.contact-page) .save-btn {
  display: none !important;
}

/* Hide play icon by default on mobile; desktop already shows only on hover */
@media (max-width: 768px) {
  .reel-card-play {
    display: none;
  }
}

