/* ======================
   SECTION HERO
====================== */
.hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
}



.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0a0a0a 100%);
  z-index: 2;
}

.hero h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #ff2aa8, 0 0 10px #ff2aa8, 0 0 20px #ff2aa8;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.4rem;
    padding: 0 15px;
    line-height: 1.4;
  }
}

/* ======================
   TITRE PAGE
====================== */

.lux-title {
  font-family: 'Anton', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 70px 0 0;
  letter-spacing: 3px;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  text-shadow:
    0 0 25px rgba(255, 40, 150, 0.9),
    0 0 60px rgba(255, 40, 150, 0.5),
    0 0 100px rgba(255, 40, 150, 0.35);
}

.lux-title span {
  background: linear-gradient(110deg, #e02a7fff, #f890d0ff, #e02a7fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;

  -webkit-text-stroke: 1px rgba(255, 120, 200, 0.5);


}

.lux-sub {
  text-align: center;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffe3f6;

  text-shadow:
    0 0 10px rgba(255, 80, 170, 0.6),
    0 0 30px rgba(255, 80, 170, 0.4);
}




/* ======================
   CTA HERO (invite.php)
====================== */
.cta-hero {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-hero a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.cta-hero a.abonne {
  background: #ff2aa8;
  color: #fff;
  font-size: 1.4rem;
}
.cta-hero a.abonne:hover {
  background: #e6007e;
}

.cta-hero a.connect {
  background: #444;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
}

/* ======================
   STORIES MINI-CAROUSEL
====================== */
.stories-wrap {
  max-width: 980px;
  margin: 24px auto;
  padding: 0 12px;
}

.stories-player {
  position: relative;
  display: none;
  justify-content: center;
  margin-bottom: 10px;
}
.stories-player iframe {
  width: 300px;
  aspect-ratio: 9/16;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 0 0 2px #333;
}

.stories-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 6px;
  border: 1px solid #222;
  border-radius: 12px;
  background: #0f0f0f;
  scroll-snap-type: x mandatory;
}
.stories-row::-webkit-scrollbar { height: 8px; }
.stories-row::-webkit-scrollbar-track { background: #0f0f0f; border-radius: 10px; }
.stories-row::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.stories-row::-webkit-scrollbar-thumb:hover { background: #444; }

.story-chip {
  flex: 0 0 110px;
  scroll-snap-align: start;
  cursor: pointer;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}
.story-chip img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  border: 2px solid #ff2aa8;
  border-radius: 10px;
}
.story-chip span {
  display: block;
  padding: 6px 8px;
  font-size: .8rem;
  color: #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-title {
  color: #ff2aa8;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

#closeStory {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  color: #ff2aa8;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 0;
}
#closeStory:hover { color: #ff0000; }

/* ======================
   STORIES OVERLAY
====================== */
.stories-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: saturate(140%) blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease;
}
.stories-overlay.show {
  display: flex;
  opacity: 1;
}
.stories-overlay .player {
  width: min(420px,90vw);
  aspect-ratio: 9/16;
  border: 1px solid #ff2aa8;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
  position: relative;
}

/* ======================
   REVEAL ANIMATIONS
====================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.is-visible { opacity: 1; transform: none; }

/* ======================
   EXTRA (invite.php)
====================== */
.video-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.newsletter-section input[type="email"] {
  padding: 14px;
  border: 1px solid #db1895;
  border-radius: 5px;
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
}

.section-title {
  color:#ff2aa8;
  text-align:center;
  margin-bottom:30px;
}