/* ゲーム選択ページ専用スタイル */

.game-select-main {
  padding: 48px 16px;
  min-height: 60vh;
}

.game-select-heading {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: #fff;
  text-align: center;
}

.game-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.game-card {
  display: block;
  width: 300px;
  background: #1a1a2e;
  border: 1px solid #3a3a5a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #5a5aff;
  box-shadow: 0 8px 24px rgba(90, 90, 255, 0.25);
}

.game-card__image {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  display: block;
  background: #0d0d1f;
}

.game-card__body {
  padding: 16px 18px;
}

.game-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.game-card__desc {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.65;
}

@media (max-width: 660px) {
  .game-card {
    width: 100%;
    max-width: 380px;
  }
}
