.tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: transparent;
}

.tour-highlight {
  position: fixed;
  z-index: 9998;
  border-radius: 10px;
  border: 1px solid var(--aurora);
  box-shadow: 0 0 0 9999px rgba(8, 6, 15, 0.78);
  pointer-events: none;
  transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.tour-tooltip {
  position: fixed;
  z-index: 9999;
  width: 300px;
  max-width: calc(100vw - 32px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: top 0.3s ease, left 0.3s ease;
}

.tour-progress {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--dim);
  margin-bottom: 6px;
}

.tour-title {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--starlight);
}

.tour-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dim);
  margin: 0 0 16px;
}

.tour-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tour-nav-btns {
  display: flex;
  gap: 8px;
}

.tour-btn {
  font-family: var(--font-body);
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
}

.tour-btn.tour-ghost {
  color: var(--starlight);
}

.tour-btn.tour-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--void);
  font-weight: 600;
}

.tour-btn.tour-skip {
  border: none;
  padding-left: 0;
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .tour-tooltip {
    width: calc(100vw - 32px);
  }
}
