diff --git a/2048_Modal.css b/2048_Modal.css index 6db4d30..54a6f6d 100644 --- a/2048_Modal.css +++ b/2048_Modal.css @@ -82,10 +82,6 @@ font-weight: 700; } -/* ========================== - GAME OVER MODAL - WITH ICON BUTTONS -========================== */ - .game-over-overlay { position: fixed; inset: 0; @@ -131,7 +127,6 @@ } } -/* Close Button (X) - Top Right */ .game-over-close { position: absolute; top: 18px; @@ -171,7 +166,6 @@ transform: rotate(90deg) scale(0.95); } -/* Title - Gradient Pink/Red */ .game-over-title { font-size: clamp(32px, 5vw, 42px); font-weight: 900; @@ -186,7 +180,6 @@ line-height: 1.2; } -/* Subtitle */ .game-over-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.5); @@ -196,7 +189,6 @@ text-transform: uppercase; } -/* Score Section - PURPLE/VIOLET gradient */ .game-over-score { margin: 0 0 38px; } diff --git a/Login.php b/Login.php index 85a4831..6c5e5a9 100644 --- a/Login.php +++ b/Login.php @@ -17,9 +17,7 @@ $input = json_decode(file_get_contents('php://input'), true); $username = $input['username'] ?? ''; $password = $input['password'] ?? ''; -$stmt = $conn->prepare( - "SELECT id, password FROM users WHERE username = ?" -); +$stmt = $conn->prepare("SELECT id, password FROM users WHERE username = ?"); $stmt->bind_param("s", $username); $stmt->execute(); $stmt->store_result();