/* Theater Curtain Animations */

.curtain-left, .curtain-right {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50vw;
  background: linear-gradient(90deg, #4a0000 0%, #8b0000 50%, #4a0000 100%);
  z-index: 100;
  pointer-events: none;
}

.curtain-left {
  left: 0;
  animation: curtain-open-left 2s ease-out 0.5s forwards;
}

.curtain-right {
  right: 0;
  animation: curtain-open-right 2s ease-out 0.5s forwards;
}

@keyframes curtain-open-left {
  from { 
    transform: translateX(0); 
    opacity: 1;
  }
  to { 
    transform: translateX(-100%); 
    opacity: 0.9;
  }
}

@keyframes curtain-open-right {
  from { 
    transform: translateX(0); 
    opacity: 1;
  }
  to { 
    transform: translateX(100%); 
    opacity: 0.9;
  }
}

/* Fade in up for section reveals */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow pulse for CTAs */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

/* Spotlight sweep effect */
@keyframes spotlight {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Slide up animation for notifications */
@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slide-up 0.3s ease-out forwards;
}