body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #1a001a, #000);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* SECTIONS */
.hero, .features, .why, .testimonials, .cta {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #2b002e, #000);
  box-shadow: inset 0 0 100px rgba(255, 20, 147, 0.3);
}

.hero h1 {
  font-size: 2.2rem;
  color: #ff1493;
  text-shadow: 0 0 20px #ff1493;
  margin-bottom: 10px;
}

.hero .places {
  font-size: 1rem;
  color: #ff69b4;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 0 0 10px #ff1493;
}

.countdown {
  font-size: 1rem;
  color: #ff69b4;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px #ff1493;
}

/* FEATURES */
.features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 0, 120, 0.6);
  padding: 40px 20px;
  margin: 20px auto;
}

.features h2 { color: #ff69b4; margin-bottom: 15px; }
.features li { margin: 10px 0; font-size: 1.1rem; color: #f5a6d7; }

/* WHY */
.why h2 { color: #ff69b4; margin-bottom: 15px; }
.why p { margin: 8px 0; color: #f5a6d7; }

/* TEMOIGNAGES */
.testimonials {
  background: rgba(255, 20, 147, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 0 25px rgba(255,20,147,0.4);
}
.testimonials h2 { margin-bottom: 20px; color: #ff1493; }
.testimonials .card {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  font-size: 1rem;
  color: #f5a6d7;
  box-shadow: 0 0 10px rgba(255,20,147,0.3);
}

/* BOUTONS */
.vip-btn, .popup-btn {
  background: linear-gradient(90deg, #ff1493, #ff0066);
  border: none;
  padding: 12px 28px;
  color: white;
  font-size: 17px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.8);
  z-index: 2;
  position: relative;
  font-weight: bold;
  text-decoration: none;
}
.vip-btn:hover, .popup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 150, 1);
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}
.popup-content {
  background: #1a001a;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(255,20,147,0.7);
  animation: zoomIn 0.3s ease;
  position: relative;
}
.popup-content h2 {
  color: #ff1493;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #ff1493;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.popup-content p {
  color: #f5a6d7;
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.popup-content .emoji { font-size: 1.3rem; }
.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
.close:hover { color: #ff69b4; }

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Icônes flottantes */
.floating-icons {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0; left: 0;
  z-index: 0;
  pointer-events: none;
}
.floating-icons span {
  position: absolute;
  display: block;
  font-size: 25px;
  animation: float 10s linear infinite;
  opacity: 0.7;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Flèche scroll */
.scroll-down {
  margin-top: 25px;
  animation: bounce 1.8s infinite;
  display: inline-block;
  cursor: pointer;
}
.scroll-down::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-left: 3px solid #ff1493;
  border-bottom: 3px solid #ff1493;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 8px #ff1493);
  opacity: 0.9;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* Bouton flottant VIP */
.floating-vip-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff1493, #ff0066);
  color: white;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.8);
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1000;
}
.floating-vip-btn.show {
  opacity: 1;
  pointer-events: auto;
}
.floating-vip-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 150, 1);
}

/* Pavé sécurité */
.security-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(200, 200, 200, 0.5);
  padding: 15px 10px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Notifications */
.notif-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notif {
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.5);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #f5a6d7;
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.3);
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.4s ease forwards, fadeOut 0.4s ease forwards 1.6s;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
  to { transform: translateX(100%); opacity: 0; }
}

/* Animation pulse + glow pour le bouton VIP */
.vip-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(255, 20, 147, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
  }
}

/* Effet d’apparition (scroll reveal) */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.8s ease-out;
}

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

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff1493, #ff0066);
  width: 0%;
  z-index: 3000;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
  transition: width 0.1s ease;
}

/* Animation wiggle */
@keyframes wiggle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(2deg); }
  50% { transform: scale(0.95) rotate(-2deg); }
  75% { transform: scale(1.05) rotate(1deg); }
}

/* Animation glow */
@keyframes popupGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 20, 147, 1);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
  }
}

/* Classe combinée */
.popup-btn.animate {
  animation: wiggle 0.6s ease, popupGlow 2s infinite;
}