diff --git a/src/pages/Tetris.tsx b/src/pages/Tetris.tsx index 10f49bb..be1eb12 100644 --- a/src/pages/Tetris.tsx +++ b/src/pages/Tetris.tsx @@ -579,7 +579,7 @@ const Tetris = () => { {isMobile && gameMode === '1p' && ( <> - + @@ -588,16 +588,24 @@ const Tetris = () => { LINES{lines} {gameStarted && !gameOver ? ( - - ← - ↓ - → - ↻ - ⬇ - {isPaused ? '▶' : '❚❚'} + + {/* D-pad style controls */} + + + ↻ + + ← + {isPaused ? '▶' : '❚❚'} + → + + ↓ + + + {/* Hard drop button */} + ⬇ ) : ( - startGame('1p')} className="font-minecraft text-sm py-3 px-8 border border-primary bg-primary/20 text-primary">{gameOver ? 'RETRY' : 'START'} + startGame('1p')} className="font-minecraft text-sm py-3 px-8 border border-primary bg-primary/20 text-primary hover:bg-primary/40 transition-all box-glow">{gameOver ? 'RETRY' : 'START'} )}
LINES
{lines}