BIKE RACING REWARD GAME - VPS INSTALLATION
==========================================

1) Upload all files to your VPS public folder, for example:
   /var/www/html/bike-game/

2) Create a MySQL database, for example:
   bike_racing_game

3) Import database.sql into your MySQL database.
   Example command:
   mysql -u your_user -p bike_racing_game < database.sql

4) Edit config.php:
   DB_NAME = your database name
   DB_USER = your MySQL username
   DB_PASS = your MySQL password

5) Open the game:
   https://yourdomain.com/bike-game/

6) Admin panel:
   https://yourdomain.com/bike-game/admin/

   Default admin login:
   Username: admin
   Password: admin123

7) Important security step:
   Change the default admin password in database or create a new password hash using PHP:
   php -r "echo password_hash('your_new_password', PASSWORD_DEFAULT);"

8) Prize logic:
   The prize is selected by score range from game_prizes table.
   Example: score 51-100 gets RM30 Accessories Voucher.

9) One play per phone:
   Admin > Settings > One Play Per Phone

10) Export winner list:
   Admin > Export CSV
