private void Start()
        {
            Advertiser.AdvertisementSystem.HideNormalBanner();
            Advertiser.AdvertisementSystem.HideEndGameBanner();

            ChangeBackgroundAndSkin();
            PlayerPrefsHelper.CountGamesPlayed();

            RegisterEvent();
            InitPool();

            _currentScore = 0;
            _timeOutEffect.gameObject.SetActive(false);
            _hideGroup.SetActive(false);
            _gamePanel.SetActive(true);
            _endGamePanel.gameObject.SetActive(false);

            StartCoroutine(WaitAndStartGame());
        }