private void OnTriggerEnter(Collider other)
 {
     if (other.CompareTag("Player"))
     {
         other.gameObject.SetActive(false);
         _gameStateManager.ActivateLost("Oh no! Death Zone!");
     }
 }