body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to top, #0494DA, #0494DA); /* Degradê de duas cores */
    overflow: hidden;
  }
  
  .logo-container {
    width: 100%;
    text-align: center;
    margin-top: 0px; /* Espaço entre o topo e o jogo */
  }
  
  .logo {
    background-position: center;
    width: 350px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-top: 0px; /* Espaço entre o topo e o jogo */
  }
  
  .game-container {
    position: relative;
    width: 300px;
    height: 500px;
    background-image: url('outer-circle.png'); /* Imagem do círculo maior */
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 00%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .target-circle {
    position: absolute;
    width: 200px; /* Largura do target */
    height: 200px; /* Altura do target */
    background-image: url('target.png'); /* Imagem do target */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 0px dashed transparent;
    border-radius: 0%;
  }
  
  .moving-ball {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('ball.png'); /* Imagem da bola */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0%;
  }
  
  .controls {
    margin-top: 20px;
    text-align: center;
    color: white;
  }
  
  .timer {
    font-size: 18px;
    font-weight: bold;
    color: white;
  }
  
  #chances {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .chance-point {
    width: 15px;
    height: 15px;
    background-color: rgb(4, 241, 4);
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  