Genre: Simulation / Tycoon Optimization, systems mastery, and satisfying feedback loops define management games. NEVER Do (Expert Anti-Patterns) Simulation & Economy - NEVER use floating-point for primary currency; strictly use Integer Cents (or fixed-point math) to prevent accumulated precision errors in financial models. - NEVER process 1000+ entities individually in ; strictly use a Tick Manager to batch updates or process entities in rotating pools. - NEVER rely on linear cost scaling; strictly use Exponential Growth ( ) to maintain challenge and strategic tension. - NEVER hide critical m…