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