/* ─── PROMO ROTATOR ─────────────────────────────────── */
.promo-rotator {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.promo-rotator .slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.promo-rotator .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.promo-rotator .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.promo-rotator .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.6) 100%
  );
}

.promo-rotator .slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  width: 100%;
  animation: slideContentIn 0.6s ease-out both;
}

@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.promo-rotator .slide-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(139, 92, 246, 0.85);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-rotator .slide-prize {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #fff 0%, #c9b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-rotator .slide-title {
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.promo-rotator .slide-desc {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* CTA slide specific */
.promo-rotator .slide-cta .slide-prize {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-rotator .slide-cta .slide-subtitle {
  font-size: 0.9rem;
  color: #fbbf24;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(251,191,36,0.4);
}

.promo-rotator .slide-cta .slide-req {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 4px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.promo-rotator .slide-cta .slide-req strong {
  color: rgba(255,255,255,0.85);
}

.promo-rotator .slide-perks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.promo-rotator .slide-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}

.promo-rotator .slide-perk-icon {
  color: #4ade80;
  font-size: 0.85rem;
}

/* Buttons */
.promo-rotator .slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-rotator .btn-audition {
  background: #8B5CF6;
  color: #fff;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(139,92,246,0.5), 0 0 8px rgba(139,92,246,0.2);
  transition: all 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.promo-rotator .btn-audition:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(139,92,246,0.7), 0 0 12px rgba(139,92,246,0.3);
  color: #fff;
}

.promo-rotator .btn-showcases {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.promo-rotator .btn-showcases:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* Dots */
.promo-rotator .rotator-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.promo-rotator .rotator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.promo-rotator .rotator-dot.active {
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
  transform: scale(1.3);
}

/* Progress bar */
.promo-rotator .rotator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #a78bfa);
  z-index: 10;
  transition: width 0.1s linear;
  width: 0%;
}

/* Competitions strip */
.promo-rotator .comp-strip {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 8;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-rotator .comp-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.promo-rotator .comp-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.promo-rotator .comp-chip-dot.q1 { background: #60a5fa; }
.promo-rotator .comp-chip-dot.q2 { background: #34d399; }
.promo-rotator .comp-chip-dot.q3 { background: #f472b6; }
.promo-rotator .comp-chip-dot.q4 { background: #fbbf24; }

/* Mobile */
@media (max-width: 600px) {
  .promo-rotator .slide-content {
    padding: 100px 20px 60px;
  }

  .promo-rotator .slide-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .promo-rotator .btn-audition,
  .promo-rotator .btn-showcases {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .promo-rotator .slide-perks {
    gap: 8px;
  }

  .promo-rotator .comp-strip {
    bottom: 50px;
    gap: 8px;
  }

  .promo-rotator .comp-chip {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .promo-rotator .rotator-dots {
    bottom: 20px;
  }
}