/* V2 player treatment: a soft lower-third fade supports the full interface,
   then disappears when flick-down focus mode is active. */
.v2-player:not(.is-video-focus-mode) .v2-player-shade {
  background: linear-gradient(
    to bottom,
    rgba(2, 3, 4, 0) 0%,
    rgba(2, 3, 4, 0) 55%,
    rgba(2, 3, 4, .08) 68%,
    rgba(2, 3, 4, .18) 84%,
    rgba(5, 6, 7, .25) 100%
  ) !important;
  opacity: 1 !important;
}

/* Keep the VEC layer itself clear so the fade is applied only once. */
.v2-player .v2-mobile-vec-stage::after {
  background: none !important;
  opacity: 0 !important;
}

/* Flick-down focus mode returns the video to a completely clear frame. */
.v2-player.is-video-focus-mode .v2-player-shade {
  background: none !important;
  opacity: 0 !important;
}
