/* ==========================================================================
   Joyride Tutorial — Spotlight + tooltip walkthrough
   ========================================================================== */

.joyride-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.joyride-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Soft vintage spotlight — warm, mellow, not aggressive */
.joyride-spotlight {
  position: absolute;
  border-radius: 8px;
  box-shadow:
    0 0 0 9999px rgba(0, 0, 0, 0.6),
    0 0 40px 8px rgba(7, 227, 23, 0.06);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Soft glow border — no pulsing, just a gentle ring */
.joyride-spotlight::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(7, 227, 23, 0.25);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(7, 227, 23, 0.08);
}

/* Tooltip */
.joyride-tooltip {
  position: absolute;
  z-index: 2;
  background: #161616;
  border: 1px solid rgba(7, 227, 23, 0.2);
  border-radius: 6px;
  max-width: 280px;
  padding: 16px;
  font-family: 'PP Neue Montreal', -apple-system, sans-serif;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.joyride-tooltip__step {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #07e317;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.joyride-tooltip__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.joyride-tooltip__text {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 14px;
}

.joyride-tooltip__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.joyride-tooltip__btn {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}

.joyride-tooltip__btn--next {
  background: rgba(7, 227, 23, 0.15);
  color: #07e317;
  border: 1px solid rgba(7, 227, 23, 0.3);
  border-radius: 4px;
}

.joyride-tooltip__btn--next:hover {
  background: rgba(7, 227, 23, 0.25);
}

.joyride-tooltip__btn--skip {
  background: none;
  color: #666;
  padding: 6px 8px;
}

.joyride-tooltip__btn--skip:hover {
  color: #fff;
}

/* Dots progress indicator */
.joyride-dots {
  display: flex;
  gap: 5px;
}

.joyride-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #333;
  transition: background 0.2s;
}

.joyride-dot--active {
  background: #07e317;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .joyride-tooltip {
    max-width: 240px;
    padding: 12px;
  }

  .joyride-tooltip__title {
    font-size: 14px;
  }

  .joyride-tooltip__text {
    font-size: 11px;
  }
}
