/* ShowPass Cinematic Ultra-HD Stage & Stage Ignition Engine */

#stage-ignition-overlay {
  transform: scale(1);
  opacity: 1;
}

#stage-ignition-overlay.dissolve {
  transform: scale(1.08);
  opacity: 0;
  pointer-events: none;
}

.cinematic-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 520px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 1.5px solid rgba(182, 255, 60, 0.4);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.95), 0 0 60px rgba(182, 255, 60, 0.2);
  background-color: #0B0C0E;
}

@media (min-width: 1024px) {
  .cinematic-stage-wrapper {
    height: 600px;
  }
}

/* Studio Vignette Overlay */
.cinematic-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(circle at 50% 50%, transparent 35%, rgba(11, 12, 14, 0.7) 70%, #0B0C0E 100%),
              linear-gradient(180deg, rgba(11, 12, 14, 0.4) 0%, transparent 30%, transparent 70%, rgba(11, 12, 14, 0.8) 100%);
}

/* 5-Phase Image Stack Layer */
.cinematic-image-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.cinematic-phase-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85) contrast(1.1);
}

.cinematic-phase-layer.active {
  opacity: 1;
  transform: scale(1);
}

/* Ambient Signal Green Beams */
.cinematic-ambient-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  overflow: hidden;
}

.beam-light {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(182, 255, 60, 0.6) 0%, transparent 100%);
  filter: blur(2px);
  opacity: 0.4;
}

.beam-left { left: 18%; transform: rotate(-15deg); }
.beam-right { right: 18%; transform: rotate(15deg); }

/* Interactive Annotation Pins Overlay Z-Index */
.annotation-pin-container {
  z-index: 20 !important;
}
