/* =========================================================
   역천록 (逆天錄) - 우측 하단 노드 정찰(Inspector) 카드 & 이동 패널
   ========================================================= */

/* 하단 노드 정찰(Inspector) 카드 & 이동 인터랙션 */
.node-inspector-box {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0a0c10;
  gap: 0.75rem;
  scrollbar-gutter: stable;
}

.inspector-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.5rem;
}

.inspector-tag {
  font-size: 0.7rem;
  color: #38bdf8;
  background: #0f172a;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid #1e3a8a;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.inspector-node-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.inspector-details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.inspector-detail-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.05);
  padding-bottom: 0.2rem;
}

.inspector-detail-key { color: #64748b; }
.inspector-detail-val { color: #e2e8f0; font-weight: 600; }

.inspector-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  background: #11131a;
  padding: 0.65rem;
  border-radius: 6px;
  border: 1px solid #1e2230;
}

.btn-travel-node {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid #60a5fa;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.btn-travel-node:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}

.btn-travel-node.disabled {
  background: #1e2533;
  color: #64748b;
  border-color: #334155;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* 여정 순차 이동 중 미니맵 플로팅 바 & 스킵 버튼 */
.travel-floating-bar {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--accent-gold);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  font-size: 0.75rem;
  color: var(--text-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  animation: pulse-glow 2s infinite ease-in-out;
}

.btn-skip-mini {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
  transition: all 0.2s ease;
}

.btn-skip-mini:hover {
  background: #fbbf24;
  transform: scale(1.05);
}

.btn-skip-travel {
  background: linear-gradient(135deg, #d97706, #f59e0b) !important;
  color: #000 !important;
  font-weight: 800 !important;
  border-color: #fde68a !important;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6) !important;
  animation: pulse-glow 1.5s infinite;
}

.btn-skip-travel:hover {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  transform: translateY(-1px);
}

/* 고대 전송진 배지 및 버튼 */
.map-teleport-badge {
  font-size: 0.68rem;
  margin-left: 2px;
  filter: drop-shadow(0 0 4px #3b82f6);
  animation: pulse-teleport 2.5s infinite ease-in-out;
}

@keyframes pulse-teleport {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 8px #60a5fa); }
}

.btn-teleport-travel {
  background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
  border-color: #60a5fa !important;
  color: #eff6ff !important;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
}

.btn-teleport-travel:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}
