/* Estilo para o botão "Iniciar Jogo" na capa */
#startButtonCover {
  background-color: #2ecc71; /* Verde vivo */
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px #27ae60;
  letter-spacing: 2px;
}

#startButtonCover:hover {
  background-color: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 8px #229954;
}

#startButtonCover:active {
  transform: translateY(0);
  box-shadow: 0 4px #229954;
}

#btnShowScore {
  background-color: #3498db; /* Azul */
  color: white;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px #2980b9;
  margin-left: 15px;
}
#btnCloseScore {
  background-color: #e74c3c; /* Vermelho */
  color: white;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px #c0392b;
  margin-top: 20px;
}

/* Estilos para o container do jogo */
#gameContainer {
  display: flex; /* Escondido por padrão, JavaScript vai mostrar */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 0; /* Remove a margem superior que tinha antes */
  transition: opacity 0.5s ease-in-out;
}

/* Estilo para o botão de reiniciar dentro do jogo */
#restartButton {
  background-color: #e74c3c; /* Vermelho */
  color: white;
  font-size: 16px;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 3px #c0392b;
}

#restartButton:hover {
  background-color: #c0392b;
  transform: translateY(-1px);
  box-shadow: 0 4px #a02d20;
}

#restartButton:active {
  transform: translateY(1px);
  box-shadow: 0 2px #a02d20;
}

.volume-icon {
  position: absolute; /* Para posicionar em relação à #gameCover */
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;

  /* Remove fundo, bordas e sombras */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;

  /* Garante que a imagem não tenha filtros */
  filter: none !important;

  transition: transform 0.2s ease-in-out;
  z-index: 110; /* Garante que fique acima de outros elementos */
}

.volume-icon:hover {
  transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
}

.menu-buttons {
  display: flex;
  gap: 10px;
}
