/* Escena 6 — boleto místico. Layout de la escena; el boleto en sí
   (imagen + nombre superpuesto) vive en css/components/ticket.css.
   Estructura en 3 franjas: pregunta arriba, imagen grande en medio,
   botón abajo — con space-between el hueco sobrante se reparte solo
   entre las tres, dejando el boleto centrado. */

[data-scene="ticket"]{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 4vh, 40px) clamp(16px, 3vw, 40px);
  background: var(--void-edge);
}

.ticket-question{
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 3.6vw, 2rem);
  color: var(--brass-light);
  text-shadow: 0 0 18px rgba(198, 161, 91, 0.2);
}
