/* stylesheet_8.css - Gaming Grids and Card Interactions */
.game-card {
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #111;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  transition: transform 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}