Genre: Party / Minigame Collection Expert blueprint for party games balancing accessibility, variety, and social fun. NEVER Do (Expert Anti-Patterns) Multiplayer & Input - NEVER hardcode player inputs to specific joypad IDs (e.g., 0 or 1); strictly query dynamically via . - NEVER bake player-IDs into the input map (e.g., "p1 jump"); strictly use a Dynamic Input Router to map physical controllers to players at runtime. - NEVER use for assigning new player joins; strictly parse raw in for device metadata. - NEVER allow inconsistent controls between games; strictly standardize across all minigam…