public async Task PlayGameAsync()
        {
            await _outputManager.DisplayMessageAsync("Welcome to Classic Roulette! Place a bet in this format: outcome|amountToBet");

            while (!_cancellationToken.IsCancellationRequested)
            {
                await PlaceYourBetsAsync();
                await PlayRoundAsync();
                await AwardPayoutsAsync();
            }
        }