/* =========================================================
   Scene 8 — LM Studio demo + Magnifier
   ========================================================= */

/* Canvas overlay para la lupa */
#s8MagCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1080px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

/* ── Overlay negro + pregunta final (escena 8 → 9) ────────── */
#s8BlackOverlay {
  position: absolute;
  left: 0; top: 0;
  width: 1920px; height: 1080px;
  background: #000;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
}

#s8FinalQuestion {
  position: absolute;
  left: 0; top: 0;
  width: 1920px; height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 196px;
  color: #000;
  letter-spacing: -0.03em;
  text-align: center;
  opacity: 0;
  transform: translateX(2400px);
  z-index: 51;
  pointer-events: none;
  text-shadow:
    0 0 80px rgba(255,255,255,0.90),
    0 0 40px rgba(255,255,255,0.75),
    0 0 16px rgba(255,255,255,0.55);
}

/* ── Frases escena 8 ───────────────────────────────────── */
/* ── Fondo estático: reemplaza el último frame del video (swap trick) ──── */
/* Vive dentro de #s7VideoRect, cubre el video con lm-studio-fondo.jpg.    */
#s8BgFrame {
  position: absolute;
  inset: 0;
  background-image: url('../assets/lm-studio-fondo.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ── Lista de modelos: permanece en escena 9 cuando sale el reproductor ── */
/* Posición: offset (410px, 228px) dentro del video rect (320, 180).        */
#s8ModelList {
  position: absolute;
  left: 410px;
  top:  228px;
  width:  1100px;
  height:  645px;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
