/* Plan Tutorial Overlay */
#plan-tutorial-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  transition: opacity 0.3s;
}

.tutorial-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: clip-path 0.3s ease;
}

.tutorial-tooltip {
  position: fixed;
  background: var(--bg-primary, #1a1a2e);
  border: 1px solid var(--border, #333);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 380px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10001;
  transition:
    left 0.3s,
    top 0.3s;
  animation: tutorialFadeIn 0.3s ease;
}

@keyframes tutorialFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tutorial-step-counter {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tutorial-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #fff);
}

.tutorial-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary, #aaa);
}

.tutorial-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tutorial-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}

.tutorial-btn.primary {
  background: var(--accent, #6366f1);
  color: white;
}
.tutorial-btn.primary:hover {
  filter: brightness(1.1);
}

.tutorial-btn.secondary {
  background: var(--bg-secondary, #2a2a3e);
  color: var(--text-primary, #fff);
  border: 1px solid var(--border, #333);
}
.tutorial-btn.secondary:hover {
  background: var(--bg-hover, #333);
}

.tutorial-btn.link {
  background: none;
  color: var(--text-secondary, #888);
  padding: 8px 12px;
}
.tutorial-btn.link:hover {
  color: var(--text-primary, #fff);
}
