.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(20, 20, 20, 0.8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}



.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 31, 142, 0.3);
}

.game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.game-title {
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.game-title h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 31, 142, 0.7);
}

.game-info {
  padding: 15px;
}

.game-info p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.game-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 100;
}

.game-links a {
  flex: 1;
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.steam {
  background-color: #00c8ff;
  color: #121212;
}

.website {
  background-color: transparent;
  border: 1px solid #ff1f8e;
  color: #ffffff;
}

.trailer {
  background-color: rgba(144, 0, 255, 0.2);
  border: 1px solid #9000ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.game-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.steam:hover {
  background-color: #00a0ff;
}

.website:hover {
  background-color: rgba(255, 31, 142, 0.2);
}

.trailer:hover {
  background-color: rgba(144, 0, 255, 0.4);
}

/* Suppression de la barre de navigation du carousel */
.carousel-nav {
  display: none;
}