.feature-spotlight--active {
  position: relative;
  z-index: 1051;
}
.feature-spotlight__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  cursor: pointer;
}
.feature-spotlight__card {
  width: 280px;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 1052;
  animation: spotlight-fade-in 0.3s ease-out;
}
.feature-spotlight__message {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #333;
}
.feature-spotlight__dismiss {
  width: 100%;
}

@keyframes spotlight-fade-in {
  from {
    opacity: 0;
    scale: 0.95;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
