You're trying to open the game directly from your file system.
ES6 modules (used in this refactored version) require a web server due to browser security restrictions.
Quick Fix - Choose ONE option:
Option 1: Python (Easiest)
cd ~/Sites/honey-harvest/bee-game python3 serve.py
Option 2: Python Built-in
cd ~/Sites/honey-harvest/bee-game python3 -m http.server 8000
Option 3: Node.js
cd ~/Sites/honey-harvest/bee-game npm run dev
Then open:http://localhost:8000
π‘ See DEV_SETUP.md for more options and troubleshooting.