.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.game-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.7);
  box-shadow: 0 12px 40px rgba(139,92,246,0.2);
}

.game-card .card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.game-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.game-card .game-type {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}
