.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-top: 2rem;
}
.content {
  flex: 3;
  min-width: 300px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.game-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-in-out;
  backdrop-filter: blur(5px);
}
.game-card:hover {
  transform: translateY(-10px) scale(1.05);
}
.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #00ffcc;
}
.game-info {
  padding: 1rem;
}
.game-info h3 {
  margin: 0.5rem 0;
  font-family: 'Press Start 2P', cursive;
  color: #ffd700;
}
.stars {
  color: #f4c150;
}
.play-btn {
  display: inline-block;
  background: linear-gradient(45deg, #00ffcc, #00bfff);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00ffcc;
}
.play-btn:active {
  transform: scale(0.95);
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}