const handleAutoCashOutChange = useCallback((amount: string) => {
    setPlayerGame((p) => ({ ...p, autoCashOut: Number(amount) }));
  }, []);