.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-items: center;
  padding: 100px 20px 20px;
  align-items: start;
}

.game-card {
  background-color: #333;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px 2px rgba(255, 255, 255, 0.8);
}

.game-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.game-card .title {
  background-color: #444;
  text-align: center;
  padding: 10px;
  font-size: 18px;
}