/* ── Orbyty first-run spotlight tour ───────────────────────────────────── */

.spotlight-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none; /* let the dimmed page stay visually inert but not block anything unexpected */
}

/* The dark "everything else" dim, punched through by a box-shadow spread
   so only the spotlight-hole rectangle is left bright. */
.spotlight-hole {
  position: fixed;
  border-radius: 14px;
  box-shadow: 0 0 0 9999px rgba(6, 9, 10, 0.72);
  transition: top 0.25s ease, left 0.25s ease, width 0.25s ease, height 0.25s ease;
  outline: 2px solid var(--accent, #6C63FF);
  outline-offset: 2px;
}

[data-theme="dark"] .spotlight-hole {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.82);
}

.spotlight-tooltip {
  position: fixed;
  max-width: 260px;
  background: var(--card, #ffffff);
  color: var(--text, #16161A);
  border: 1px solid var(--border, #E8E6FF);
  border-radius: 12px;
  padding: 14px 14px 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  font-family: 'DM Sans', sans-serif;
}

.spotlight-msg {
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.spotlight-next-btn {
  background: var(--accent, #6C63FF);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  float: right;
}

.spotlight-next-btn:hover {
  filter: brightness(1.08);
}

.spotlight-skip-btn {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  pointer-events: auto;
}

.spotlight-skip-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
