diff --git a/frontend/src/components/videos/FinalVideoPlayer.tsx b/frontend/src/components/videos/FinalVideoPlayer.tsx index 7afaee9..f0800bb 100644 --- a/frontend/src/components/videos/FinalVideoPlayer.tsx +++ b/frontend/src/components/videos/FinalVideoPlayer.tsx @@ -81,6 +81,15 @@ export function FinalVideoPlayer() { }} /> {!hasPlayed && ( + // Centered, button-sized — NOT inset-0. The previous full-bleed + // version covered the native controls strip at the bottom of + // the video, so users trying to drag the seek bar before first + // play hit the overlay button instead and the video would just + // start from currentTime=0. Now the overlay is a single round + // affordance over the visual middle of the player; the native + // scrubber / volume / fullscreen controls along the bottom are + // always reachable. `top-1/2 left-1/2 -translate-*` centers it + // without claiming the whole frame. )}