/* ============================================================
   HERO — background video, overlay, ambient particles
   ============================================================ */
.hero-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
  opacity: 0.16;
  filter: grayscale(0.4) brightness(0.5) contrast(1.15);
}
.hero-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(195,246,12,0.05), transparent 60%),
    linear-gradient(180deg, transparent 0%, var(--bg) 92%);
  z-index: -2;
}
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0.5;
  box-shadow: 0 0 6px var(--neon-glow);
  animation: float 22s infinite linear;
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  8% { opacity: 0.5; }
  92% { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(60px); opacity: 0; }
}

/* ===== STRUCTURAL LABEL — the signature device =====
   A small tracked eyebrow with a hairline rule, used to
   mark each section like an entry in a printed programme. */
.index-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--neon-dim);
}
.index-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
}

header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  position: relative;
  z-index: 2;
}

/* ===== MAIN LOGO ===== */
.logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon), #e0ff4a, var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px var(--neon-glow);
  letter-spacing: 12px;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 2px;
  margin: 1.25rem 0 2.5rem;
}

.cta-btn {
  font-family: 'Rajdhani', sans-serif;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--neon);
  color: #0b0c09;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #d4ff3f;
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 14px 32px rgba(195,246,12,0.25);
}
.cta-btn:active { transform: translateY(-1px); }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.cutie-name {
  font-family: 'Sacramento', cursive;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--ink);
  margin: 1rem 0;
}

.cutie-bio {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-align: center;
}
.cutie-quote {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--ink);
  opacity: 0.9;
  margin: 2rem 0;
}

/* ===== SLIDER ===== */
.cutie-slider {
  position: relative;
  max-width: 560px;
  margin: 0 auto 4rem;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  background: #000;
}

.slides {
  display: flex;
  transition: transform 0.8s var(--ease);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,12,9,0.55);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev:hover, .next:hover {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-50%) scale(1.06);
}

.prev { left: 16px; }
.next { right: 16px; }

/* ===== ULTRA-WIDE LANDSCAPE BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 42vw;
  min-height: 260px;
  max-height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1.5rem 0;
  background: #000;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
}

.banner-slides { position: absolute; inset: 0; }

.slide.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }

.banner-slides .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.banner-slides .slide.active { opacity: 1; }

.banner-slides .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
  aspect-ratio: auto;
}
.banner-slides .slide::after { content: none; }

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,12,9,0.35) 0%,
    rgba(11,12,9,0.55) 55%,
    rgba(11,12,9,0.92) 100%
  );
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 95%;
  padding: 0 1rem;
}

.banner-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 5.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: clamp(0.92rem, 3vw, 1.05rem);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-weight: 300;
}

.banner-cta {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon-dim);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.banner-cta:hover {
  background: var(--neon);
  color: #0b0c09;
  border-color: var(--neon);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .hero-banner {
    height: 45vw;
    min-height: 240px;
    margin: 1rem 0;
  }
  .banner-title { font-size: clamp(1.5rem, 7vw, 2.1rem); margin-bottom: 0.4rem; }
  .banner-subtitle { font-size: clamp(0.88rem, 3.4vw, 1rem); margin-bottom: 1.2rem; }
  .banner-cta { padding: 0.7rem 1.8rem; font-size: 0.88rem; }
}

/* ===== EARNINGS CALCULATOR MODAL ===== */
.earnings-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,12,9,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
  padding: 20px;
}

.earnings-content {
  background: var(--bg-elevated);
  padding: 28px 24px 32px;
  border-radius: var(--radius-l);
  width: 90%;
  max-width: 380px;
  text-align: center;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  box-sizing: border-box;
}

.earnings-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s var(--ease);
}

.earnings-close:hover {
  color: var(--neon);
  background: var(--neon-wash);
}

.earnings-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 16px 0;
}

.calc-item label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

#vipCount {
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background: var(--line-strong);
  outline: none;
  -webkit-appearance: none;
}

#vipCount::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon);
  cursor: pointer;
  border: 3px solid var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--neon-dim);
}

#vipDisplay {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  color: var(--neon);
}

#hostCount {
  width: 100%;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  color: var(--ink);
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

.earnings-results {
  margin: 24px 0;
  padding: 18px;
  background: var(--bg-card);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.result-row.total {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.result-row strong {
  color: var(--neon);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Rajdhani', sans-serif;
}

.disclaimer {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin-top: 16px;
}
