/* ─── TOUR OVERLAY ─── */
#tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  pointer-events: none;
}

#tour-spotlight {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.65);
  z-index: 999998;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#tour-tooltip {
  position: absolute;
  z-index: 999999;
  width: 290px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 1px 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  flex-direction: column;
  gap: 12px;
}

#tour-tooltip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,108,255,0.1), transparent 60%);
  pointer-events: none;
}

.tour-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.tour-title i {
  color: var(--accent-purple);
}

.tour-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  position: relative;
}
