/**
 * Theme bridge — optional hooks used by legacy HTML patterns and `public/js/function.js`.
 * Tailwind remains the primary design system; these are additive utilities.
 */
.parallaxie {
  background-attachment: scroll;
}

@media (min-width: 1024px) {
  .parallaxie {
    background-attachment: fixed;
  }
}

.reveal {
  position: relative;
  overflow: hidden;
}

.preloader {
  pointer-events: none;
}

.magic-cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: inline-flex;
  min-height: 14px;
  min-width: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  opacity: 0;
}

.magic-cursor-dot.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.magic-cursor-dot.is-opaque {
  background: rgba(7, 212, 145, 0.82);
  border-color: rgba(7, 212, 145, 0.95);
}

.magic-cursor-label {
  padding: 4px 9px;
  white-space: nowrap;
}
