.bouton-jeu {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  border: 1px solid black;
  border-radius: 15px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease, background-color 0.2s;
}
.button-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  padding: 20px;
  max-width: 600px;
  margin: auto;  
  align-items: stretch; /* force chaque cellule à même hauteur */
  grid-auto-rows: 1fr;
  align-items: stretch; /* force chaque cellule à même hauteur */

}
.bouton-jeu {
  width: 100%;          /* occupe toute la largeur de la cellule */
  height: 100%;         /* occupe toute la hauteur de la cellule */
  padding: 10px;        /* donne de l'espace interne */
  display: flex;        /* pour centrer le texte */
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.bouton-jeu:hover {
  transform: scale(1.05);
}
a.bouton-jeu {
  text-decoration: none;
}
/* Couleurs par thème */
.rouge {
  background-color: #e74c3c;
  color: white;
}
.bleu {
  background-color: #3498db;
  color: white;
}
.vert {
  background-color: #3bad6ae2;
  color: rgb(0, 0, 0);
}
.jaune {
  background-color: #fbc02d;
  color: black;
}
.violet {
  background-color: #9b59b6;
  color: white;
}
.blanc{  
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);}
.gold{  
  background-color: #d4af37;
  color: rgb(255, 255, 255);}

  .creme{background-color: #E6DAC6; color: black;}
  .bordure-or {
      border: 3px solid #d4af37 !important; /* couleur dorée ancienne */
      box-shadow: 3px 5px 10px #000000!important;
    }