/* === VARIABLES CSS === */
:root { 
    --green: #00ff88; 
    --dark: #0a0a0a; 
    --gray: #1a1a1a; 
    --red: #ff0066; 
    --card: #141414;
    --fuchsia: #ff0066;
}

/* === RESET === */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* === BASE === */
body { 
    background: var(--dark); 
    color: #fff; 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
}

/* === HEADER === */
header { 
    text-align: center; 
    padding: 70px 20px; 
    background: linear-gradient(to bottom, #000, var(--gray)); 
    border-bottom: 4px solid var(--green); 
}

h1 { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 4rem; 
    color: var(--green); 
    text-shadow: 0 0 20px rgba(0,255,136,0.4); 
    margin-bottom: 15px;
}

.subtitle { 
    font-size: 1.4rem; 
    color: #ccc; 
    margin: 15px 0; 
}

/* === TEASER AUDIO === */
.teaser { 
    max-width: 600px; 
    margin: 40px auto; 
    text-align: center; 
    background: var(--gray); 
    padding: 30px; 
    border-radius: 16px; 
    border: 1px solid #333; 
}

.teaser h3 { 
    color: var(--green); 
    font-size: 1.5rem; 
    margin-bottom: 15px; 
}

audio { 
    width: 100%; 
    accent-color: var(--green); 
}

.lock { 
    color: var(--red); 
    font-weight: bold; 
    margin-top: 10px; 
    font-size: 1.1rem; 
}

/* === SECTION ABONNEMENT === */
.subscribe { 
    text-align: center; 
    padding: 60px 20px; 
    margin: 40px 20px; 
    background: var(--gray); 
    border-radius: 16px; 
}

#stripeBtn { 
    background: var(--green); 
    color: #000; 
    border: none; 
    padding: 22px 70px; 
    font-size: 1.8rem; 
    font-weight: bold; 
    border-radius: 50px; 
    cursor: pointer; 
    box-shadow: 0 0 35px rgba(0,255,136,0.7); 
    transition: all 0.3s; 
}

#stripeBtn:hover { 
    background: #00cc70; 
    transform: scale(1.1); 
}

.info { 
    max-width: 700px; 
    margin: 20px auto; 
    font-size: 0.95rem; 
    color: #ccc; 
}

/* === ANALYTICS === */
.analytics { 
    max-width: 900px; 
    margin: 40px auto; 
    padding: 25px; 
    background: var(--gray); 
    border-radius: 12px; 
    border: 2px solid var(--green); 
    text-align: center; 
}

.retention { 
    color: var(--green); 
    font-weight: bold; 
    font-size: 1.2rem; 
    margin-top: 15px; 
}

.conversion-badge { 
    background: var(--red); 
    color: #fff; 
    padding: 10px 20px; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 1.1rem; 
    display: inline-block;
    animation: pulse 1.8s infinite; 
    width: 100%;
}


.tiktok-block {
  text-align: center;
}

.tiktok-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tiktok-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 10px;
}

.tiktok-stats span {
  background: #000;
  padding: 8px 14px;
  border-radius: 20px;
}

.tiktok-link {
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
}

.tiktok-link:hover {
  text-decoration: underline;
}

.tiktok-analytics p {
  margin: 8px 0;
  font-size: 1rem;
}

.tiktok-analytics .retention {
  color: var(--green);
  font-weight: bold;
  margin-top: 15px;
}


/* === FOOTER === */
footer { 
    text-align: center; 
    padding: 40px 20px; 
    color: #666; 
    font-size: 0.9rem; 
    border-top: 1px solid #333; 
}

/* === ANIMATIONS === */
.blink { 
    animation: blink 1s infinite; 
    color: var(--green); 
}

@keyframes blink { 
    50% { opacity: 0.4; } 
}

@keyframes pulse { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.08); } 
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    #stripeBtn { 
        font-size: 1.4rem; 
        padding: 18px 50px; 
    }
}

.teaser {
  max-width: 600px;
  margin: 50px auto;
  text-align: center;
  background: var(--gray);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #333;
}

.teaser h3 {
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.teaser audio {
  width: 100%;
}

.lock {
  color: var(--red);
  font-weight: bold;
  margin-top: 12px;
  font-size: 1.05rem;
}


.subscribe {
  text-align: center;
  padding: 60px 20px;
  margin: 60px auto;
  background: var(--gray);
  border-radius: 16px;
  max-width: 700px;
}

#stripeBtn {
  background: var(--green);
  color: #000;
  border: none;
  padding: 22px 70px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(0,255,136,0.7);
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

#stripeBtn:hover {
  background: #00cc70;
  transform: scale(1.08);
}

.info {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  color: #ccc;
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}


.animate-fade {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-slide {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PAGE VIP ===== */

.vip-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* HERO */
.vip-hero {
  text-align: center;
  padding: 80px 30px;
  border: 2px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,255,136,.25);
  background: linear-gradient(180deg, #000, #0f0f0f);
  margin-bottom: 60px;
}

.vip-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--green);
  text-shadow: 0 0 20px rgba(0,255,136,.7);
}

.vip-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #ddd;
}

/* CONTENU ÉDITEUR */
.vip-editor-content {
  background: var(--card);
  border: 2px solid var(--fuchsia);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 0 25px rgba(255,0,102,.25);
}

/* TITRES */
.vip-editor-content h2 {
  color: var(--fuchsia);
  text-shadow: 0 0 12px rgba(255,0,102,.6);
  margin-top: 40px;
}

/* LISTES */
.vip-editor-content ul {
  list-style: none;
  padding-left: 0;
}

.vip-editor-content li {
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--green);
}

/* SÉPARATEUR */
.vip-editor-content hr {
  border: none;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--fuchsia),
    transparent
  );
  margin: 50px 0;
}

.vip-drop {
  position: relative;
  border: 2px solid var(--fuchsia);
  border-radius: 24px;
  padding: 50px 40px;
  margin: 60px auto;
  max-width: 900px;
 background: radial-gradient(
    circle at top,
    rgba(0, 255, 136, 0.15),
    #0b0b0b 70%
  );
  box-shadow:
    0 0 25px rgba(255, 0, 102, 0.35),
    inset 0 0 40px rgba(255, 0, 102, 0.05);
}


.vip-drop h2 {
  text-align: center;
  color: var(--fuchsia);
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255, 0, 102, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vip-drop h3 {
  text-align: center;
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 25px;
}


.drop-label {
  color: var(--green);
  font-weight: bold;
}

.vip-track {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 3px solid var(--green);
}

.vip-player {
  margin: 25px auto;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #101010, #080808);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.8),
    inset 0 0 12px rgba(255, 255, 255, 0.03);
}

.vip-player:hover {
  box-shadow:
    0 0 25px rgba(0, 255, 136, 0.25),
    inset 0 0 14px rgba(255, 0, 102, 0.08);
  transition: box-shadow 0.4s ease;
}

.vip-player audio {
  width: 100%;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.25));
}

.vip-player audio[disabled] {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: not-allowed;
}

.vip-drop::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 34px;

  background: linear-gradient(
    120deg,
    rgba(255, 0, 102, 0.35),
    rgba(0, 255, 136, 0.35),
    rgba(255, 0, 102, 0.35)
  );

  background-size: 300% 300%;
  filter: blur(28px);

  animation: vipHalo 12s ease-in-out infinite;
  z-index: -1;
}

@keyframes vipHalo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.badge-new {
  display: inline-block;
  margin: 12px auto 20px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #000;

  background: linear-gradient(
    90deg,
    var(--fuchsia),
    var(--green),
    var(--fuchsia)
  );
  background-size: 200% 200%;

  box-shadow:
    0 0 12px rgba(255, 0, 102, 0.5),
    0 0 18px rgba(0, 255, 136, 0.35);

  animation: badgeFlow 6s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes badgeFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
