#container-logo-vybees{
    width: 20%;
    margin-left: 40%;
    margin-right: 40%;
    margin-top: 100px;
  }


#logo-vybees-games{
    width: 100%;
    height: auto;
  }

  h1{
    color: Black;
    font-weight: bolder;
    font-family: Roboto, sans-serif;
    font-size: 35px;
    text-align: center;
    margin-top: 0;
  }


  #bottom-copyright {
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 150px;
}

#bottom-copyright > p {
    text-align: center;
    font-family: Roboto;
}

#bottom-copyright > p > a {
    font-weight: bold;
    color: black;
    transition: all .2s ease-in-out;
}

#bottom-copyright > p > a:hover {
    font-weight: bold;
    color: #C6CA18;
}



/* Style pour la container des jeux */
.games-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 2vh;
}

/* Style pour chaque jeu */
.game {
  background-color: #f4f4f4;
  border-radius: 8px;
  width: 45%; /* 3 jeux sur la même ligne */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: Roboto, sans-serif;
  transition: 0.5s;
}

#games-focus:hover {
  border-color: #C6CA18;
  transform: scale(1.1);
}

.game > div{
  margin: 20px;
}

/* Logo du jeu */
.game-logo {
  width: 100px;
  height: auto;
}

h2{
    color: Black;
    font-weight: bolder;
    font-family: Roboto, sans-serif;
    font-size: 25px;
    text-align: center;
    margin-top: 1vh;
    margin-bottom: 0;
  }

/* Description du jeu */
.game-description {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

/* Conteneur des logos des plateformes */
.platforms {
  margin-bottom: 15px;
}

.platforms > a {
  text-decoration: none;
}

/* Logos des plateformes */
.platform-logo {
  width: 25%;
  height: auto;
}

.google-store-logo {
  width: 14%;
  height: auto;
  margin: 0 10px;
}

/* Bouton En savoir plus */
.more-info {
  background-color: #C6CA18;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  font-weight: bold;
}

.more-info:hover {
  background-color: black;
  color: #C6CA18;
}

/* Bouton En savoir plus */
.blocked-info {
  background-color: grey;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  font-weight: bold;
}

.blocked-info:hover {
  background-color: #3e3e3e;
}


#release-date{
    margin-top: 0;
    font-style: italic;
}

.second-button{
  margin-top: 1vh;
}

span{
    font-weight: bold;
  }

  .platforms:nth-child(2){
    margin-top: 100vh;
  }

.gametodelete{
  display: none;
}

/* Media query pour les petits écrans */
@media screen and (max-width: 1000px) {
  .games-container {
    display: block; /* Affiche les jeux en colonne */
    margin-left: 5%;
    margin-right: 5%;
  }

  .game {
    margin-bottom: 20px; /* Ajoute un espace entre les jeux */
    width: 100%;
  }

  .game-logo {
    margin-top: 20px;
  }

  .more-info {
    margin-bottom: 20px;
  }

  /* Bouton En savoir plus */
  .blocked-info {
    margin-bottom: 20px;
  }

   h1{
    font-size: 28px;
  }

  #container-logo-vybees{
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }

  #bottom-copyright {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 50px;
  }

}