/* 커스텀 스크롤바 */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #0b101b;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* 키보드 단축키 뱃지 */
.kbd {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 10px;
  color: #94a3b8;
}

/* 게임 카드 빅픽처 포커스 & 호버 애니메이션 */
.game-card {
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(0) scale(1);
  outline: none;
}

.game-card:hover,
.game-card.focused {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6), 0 0 15px rgba(6, 182, 212, 0.4);
  border-color: #06b6d4;
  z-index: 10;
}

.game-card.focused {
  border: 2px solid #38bdf8 !important;
}

/* 비공개 뱃지 */
.badge-private {
  background: rgba(220, 38, 38, 0.85);
  backdrop-blur: 4px;
}