.guide-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.guide-overlay.active {
  display: block;
}

.guide-highlight {
  position: fixed;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease;
  pointer-events: none;
}

.guide-tooltip {
  position: fixed;
  max-width: 320px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 10000;
}

.guide-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.guide-text {
  font-size: 13px;
  opacity: 0.9;
}

.guide-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}

.guide-actions button {
  background: #1f2937;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.guide-actions button.primary {
  background: #2563eb;
  border-color: #2563eb;
}

@media (max-width: 720px) {
  .guide-tooltip {
    max-width: 90vw;
  }
}
