.grille-jeux {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.carte-jeu {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carte-jeu__image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.carte-jeu__titre {
  font-size: 20px;
  margin: 10px 0;
  text-align: center;
}

.carte-jeu__descriptif {
  font-size: 14px;
  margin-bottom: 10px;
}

.carte-jeu__lien {
  text-align: center;
  display: block;
  margin-top: auto;
  font-weight: bold;
  color: #0073aa;
}
#recherche-jeu {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.carte-cachee {
  display: none;
}
#charger-plus {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}