-
-
◆ ✦ ◈
-
-
BOLLYWOOD
-
BINGO
-
~ Masala Cinema ~
-
-
-
-
How to Play
-
- - 🎬 Find people who match the questions
- - 🎭 Tap a square when you find a match
- - ✨ Get 5 in a row to win the show!
-
+
+
+
+
+
◆ ✦ ◈
+
BOLLYWOOD
+
BINGO
+
~ Masala Cinema ~
+
The social icebreaker game for Bollywood lovers
+
+
+
+
+
🎬
+
Find People
+
Match fellow Bollywood fans
+
+
+
🎭
+
Live Drama
+
Classic filmi moments alive
+
+
+
✨
+
Win the Show
+
5 in a row = Star!
+
+
+
+
+
+
+
+
+
+
+ ✦ LIVE PREVIEW ✦
+
+
+
Experience the Magic
+
+ Try clicking a few squares to see how it works!
+
+
+
+
+
+
+
+
◆
+
✦
+
◈
+
✦
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ☝️ Interactive preview — click any square above!
+
+
+
+
+
+
+
Ready for the Full Show?
+
Gather your squad, tap BEGIN, and discover who's the ultimate Bollywood fan!
-
+
+
+
+
+
+
diff --git a/tests/test_api.py b/tests/test_api.py
index f81b4c2..68abbce 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -18,7 +18,8 @@ def test_home_contains_start_screen(self, client: TestClient):
response = client.get("/")
assert "BOLLYWOOD" in response.text
assert "BEGIN THE SHOW" in response.text
- assert "How to Play" in response.text
+ assert "Experience the Magic" in response.text
+ assert "LIVE PREVIEW" in response.text
def test_home_sets_session_cookie(self, client: TestClient):
response = client.get("/")
@@ -58,7 +59,7 @@ def test_reset_returns_start_screen(self, client: TestClient):
response = client.post("/reset")
assert response.status_code == 200
assert "BEGIN THE SHOW" in response.text
- assert "How to Play" in response.text
+ assert "Experience the Magic" in response.text
class TestDismissModal: