diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx index c33c3f7..a58103d 100644 --- a/client/src/components/netflix-grid.tsx +++ b/client/src/components/netflix-grid.tsx @@ -160,10 +160,10 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) { } scrollIntervalRef.current = setInterval(() => { if (scrollRef.current) { - const scrollAmount = direction === 'left' ? -3 : 3; + const scrollAmount = direction === 'left' ? -1.5 : 1.5; scrollRef.current.scrollLeft += scrollAmount; } - }, 16); // ~60fps + }, 8); // ~120fps for smoother animation }; const stopAutoScroll = () => {