body {
  font-family: 'Poppins', sans-serif;
  background: #edf2f4;
  color: rgb(14, 14, 14);
  text-align: center;
  margin: 0;
  padding: 0;
}

/* TITRE */
.title {
  margin: 40px 0;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* GRILLE DES JEUX */
.franchise-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* CARTES */
.game-card {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  background: #fff;
  position: relative;
  transition: box-shadow 0.3s ease;
}

/* Conteneur interne pour le zoom fluide */
.game-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Zoom fluide sans déplacer la carte */
.game-card:hover img {
  transform: scale(1.05);
}

.game-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* TEXTE */
.game-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 5px 0;
}

.game-card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* --- PETIT BOUTON --- */
.btn-more {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 15px;
}

.btn-more:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}


footer {
  margin-top: 40px;
}

