diff --git a/client/src/components/bunny-video-modal.tsx b/client/src/components/bunny-video-modal.tsx
index 7ec2fc1..b8c2f3f 100644
--- a/client/src/components/bunny-video-modal.tsx
+++ b/client/src/components/bunny-video-modal.tsx
@@ -317,33 +317,13 @@ export default function BunnyVideoModal({ video, isOpen, onClose, onEdit, videos
)}
-
- {/* Invisible overlay for controls interaction */}
-
{
- setShowControls(true);
- if (controlsTimeout) {
- clearTimeout(controlsTimeout);
- }
- }}
- onMouseLeave={() => {
- if (controlsTimeout) {
- clearTimeout(controlsTimeout);
- }
- const timeout = setTimeout(() => setShowControls(false), 1500);
- setControlsTimeout(timeout);
- }}
- style={{ pointerEvents: (showControls || showPlayButton) ? 'none' : 'auto' }}
- >
{/* Navigation buttons - show/hide with controls */}
{videos.length > 1 && (
<>