/* Cross-Game Recommendation Panel — shared across all Hangeru games */
.game-rec-panel {
  margin: 12px 0 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border, #e0ddd6);
  border-bottom: 1px solid var(--border, #e0ddd6);
}
.game-rec-title {
  font-size: 12px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 1px; text-align: center;
  margin-bottom: 10px;
}
.game-rec-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.game-rec-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; cursor: pointer; transition: transform 0.15s, opacity 0.15s;
  min-width: 56px;
}
.game-rec-item:hover { transform: scale(1.08); }
.game-rec-item.played { opacity: 0.35; filter: grayscale(0.6); }
.game-rec-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; color: #fff;
  font-size: 18px; font-weight: 700;
}
.game-rec-icon.hangeru { background: #5b6abf; font-family: 'DM Sans', sans-serif; }
.game-rec-icon.mirage { background: #3d7d74; font-style: italic; font-family: Georgia, serif; font-size: 20px; }
.game-rec-icon.tinctionary { background: #b07850; }
.game-rec-icon.longest-thread { background: #9b7b8b; }
.game-rec-icon.voltr { background: #1a1a1a; }
.game-rec-name {
  font-size: 10px; font-weight: 500; color: #fff; text-align: center;
  max-width: 56px; line-height: 1.3;
}
