/* ==========================================================================
   BinaryFlux Detections Guided Tour — Extensions (Imports style.css)
   ========================================================================== */
@import url('style.css');

body.detections-tour-body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow: hidden;
  margin: 0;
  padding: 0;
  user-select: none;
}

/* Tour Progress Bar */
.tour-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.tour-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #62e9f7);
  width: 20%;
  transition: width 300ms ease;
  border-radius: 4px;
}

/* Active Highlight Pin Pulsing */
.hotspot-pin.active-highlight {
  transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 0 10px rgba(98, 233, 247, 0.6), 0 0 35px rgba(98, 233, 247, 0.9);
}