/* ==========================================================================
   06. SECTION 4: EL RITUAL (VIDEO SHOWCASE) COMPONENT
   ========================================================================== */

.video-player-container {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: none;
  pointer-events: none;
}

.nebula-video {
  width: 100%;
  height: auto;
  max-height: 580px;
  display: block;
  object-fit: cover;
}

/* Nebula's own vertical prep footage (9:16) needs a portrait frame,
   not the landscape box above — otherwise object-fit: cover crops out
   most of the pour. Scoped to #video-showcase only. */
#video-showcase .video-player-container {
  max-width: 360px;
}

#video-showcase .nebula-video {
  aspect-ratio: 9 / 16;
  max-height: none;
}
