/* ===== GAME MENU ===== */
.games-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.game-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.game-card .game-info {
  padding: 24px;
}

.game-card h2 {
  margin: 0 0 12px;
  font-size: 1.6em;
  color: #1f2a38;
}

.game-card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.4;
}

.game-card .play-btn {
  display: block;
  text-align: center;
  margin: 16px;
  padding: 10px 0;
  background-color: #1ec8c8;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.game-card .play-btn:hover {
  background-color: #17b4b4;
}
