diff --git a/client/src/components/netflix-grid.tsx b/client/src/components/netflix-grid.tsx
index 1a1d218..fcac4ca 100644
--- a/client/src/components/netflix-grid.tsx
+++ b/client/src/components/netflix-grid.tsx
@@ -157,25 +157,29 @@ function CategoryRow({ category, onVideoClick }: CategoryRowProps) {
{category.title}
-
- {/* Left scroll button */}
+
+ {/* Left scroll button - only on desktop */}
scroll('left')}
- className="absolute -left-2 top-1/2 -translate-y-1/2 z-30 bg-black/80 hover:bg-black/95 text-white border-none w-12 h-12 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 flex items-center justify-center shadow-xl"
+ className="hidden md:flex absolute -left-2 top-1/2 -translate-y-1/2 z-30 bg-black/80 hover:bg-black/95 text-white border-none w-12 h-12 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 items-center justify-center shadow-xl"
size="sm"
>
- {/* Right scroll button */}
+ {/* Right scroll button - only on desktop */}
scroll('right')}
- className="absolute -right-2 top-1/2 -translate-y-1/2 z-30 bg-black/80 hover:bg-black/95 text-white border-none w-12 h-12 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 flex items-center justify-center shadow-xl"
+ className="hidden md:flex absolute -right-2 top-1/2 -translate-y-1/2 z-30 bg-black/80 hover:bg-black/95 text-white border-none w-12 h-12 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 items-center justify-center shadow-xl"
size="sm"
>
+ {/* Mobile touch areas for left/right navigation */}
+
scroll('left')} />
+
scroll('right')} />
+
{/* Scrollable video row */}