*{
    max-width: 100%;
}
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: #cbcac7;
  padding: 10px 0;
}

.nav-menu a {
  color: #006400; /* verde bandeira */
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #8B0000; /* vermelho escuro */
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFD700; /* amarelo ouro */
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.fundo-imagem {
      height: 210px;
      background-image: url('caminho/da/sua/imagem.jpg');
      background-size: cover;       /* para cobrir todo o espaço */
      background-position: center;  /* centraliza a imagem */
      background-repeat: no-repeat; /* impede repetição da imagem */
 }

 hr {
    width: 80%;
    height: 6px;
    border: none;
    background: linear-gradient(to right, #006400 33%, #ffdf00 33%, #ffdf00 66%, #be1e2d 66%);
    border-radius: 3px;
    margin: 2rem auto;
    opacity: 1 !important;
}

.bi-suit-heart-fill{
    color: #623ac5 !important;
}

.bi-youtube{
    color:red !important;
}

.bi-spotify{
    color:green !important;
}

.bi-facebook{
    color:blue !important;
}

.bi-instagram{
    color: #ee13db;
}

.d-flex-social {
    display: inline-flex;
    gap: 8px;
}

.d-flex-social a{
    display: inline-block !important;
    width: 120px;
}

.ads{
    height: 240px;
    background-color: #eaeaea;
    text-align: center;
}

.zoom-hover {
    display: inline-block; /* necessário para que o zoom funcione corretamente */
    transition: transform 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.05); /* aumenta 5% ao passar o mouse */
}

.album-image-wrapper {
    overflow: hidden;
    cursor:pointer; border-radius:10px;border:2px solid #444444;
}

.album-image-container {
    transition: transform 0.3s ease;
}

.album-image-wrapper:hover .album-image-container {
    transform: scale(1.05); /* zoom leve */
}

h1,h2,h3,h4,h5,h6{
    font-family: "Bree Serif", serif !important;
}

.artista-description{
    font-family: "Noto Sans", sans-serif;
    font-size: 1.1em;
    color: #000;
}

iframe{
    margin-top: 20px;
    margin-bottom: 20px;
}

.fundo-rs {
width: 80%;
height: 8px;
border: none;
background: linear-gradient(to right, #006400 33%, #ffdf00 33%, #ffdf00 66%, #be1e2d 66%);
border-radius: 3px;
margin: 1rem auto;
}

.card-animado {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-animado:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background-color: rgba(255, 255, 255, 0.95);
}

.reflexo-inside{
    box-shadow: inset 0 20px 30px rgba(65, 64, 64, 0.4);
    padding: 4px;
}

.reflexo-outside{
    box-shadow: 0 10px 20px rgba(65, 64, 64, 0.4);
    padding: 4px;
    border: 1px solid #888888;
}

.footer__about__logo img{
    height: 60px;
}
footer li{
    color: #fff;
}
section{
    margin-bottom: 15px ;
    margin-top: 15px;
}

mark{
    font-weight: normal;
    color: #940b0b;
    padding: 0;
    margin: 0;
}
 /* Zoom e sombra no card */
  .game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  /* Gradiente no cabeçalho */
  .game-card .card-header {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
  }

  /* Botão com brilho */
  .btn-play {
    transition: 0.3s;
  }
  .btn-play:hover {
    background-color: #28a745;
    box-shadow: 0 0 15px rgba(40,167,69,0.6);
    transform: scale(1.08);
  }
