/* New Wave Radio production video-stage hotfix.
   Desktop only. Existing playback/tune/volume controls are intentionally untouched. */
@media (min-width: 900px) {
  /* A Suno visual always owns the complete hero stage when video mode is active. */
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-ready,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-motion-art,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-song-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
    background: #050611 !important;
    opacity: 1 !important;
  }

  /* Do not letterbox animated Suno visuals. The stage is the background canvas,
     so a small crop is preferable to empty side gutters. */
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage .nw-suno-video,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage video,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-motion-art .nw-suno-video,
  .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-song-video .nw-suno-video {
    position: absolute !important;
    inset: -2% !important;
    width: 104% !important;
    height: 104% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.025) !important;
    transform-origin: center center !important;
  }

  /* The compact song identifier belongs in the lower-left corner of the stage,
     above the existing timeline, rather than floating halfway up the video. */
  .nw-exact-player.nw-suno-video-active .nw-suno-mini-overlay {
    left: 18px !important;
    right: auto !important;
    top: auto !important;
    bottom: 48px !important;
    width: min(320px, 42%) !important;
    height: 50px !important;
    min-height: 0 !important;
    padding: 4px 10px 4px 4px !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 9px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
  }

  .nw-exact-player.nw-suno-video-active .nw-suno-mini-overlay img {
    width: 40px !important;
    height: 40px !important;
  }

  /* Keep the normal radio hero out of the way only while a verified Suno visual
     is active. Audio-only tracks continue to use the original hero unchanged. */
  .nw-exact-player.nw-suno-video-active .nw-exact-cover,
  .nw-exact-player.nw-suno-video-active .nw-exact-song-copy {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* The timeline remains above the video and below the compact identifier. */
  .nw-exact-player.nw-suno-video-active .nw-exact-progress {
    position: absolute !important;
    z-index: 30 !important;
  }

  /* Theatrical mode must respect the director's explicit media kind. Do not
     infer containment from a video_gen_ filename; real song videos can use it. */
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage,
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-motion-art,
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-song-video {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage .nw-suno-video,
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage .nw-suno-video[src*="video_gen_"],
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-motion-art .nw-suno-video,
  html.nw-theater-active .nw-exact-player.nw-suno-video-active .nw-suno-video-stage.is-song-video .nw-suno-video {
    inset: -2% !important;
    width: 104% !important;
    height: 104% !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.025) !important;
  }
}
