/* ==========================================================================
   Dive Theme — Magnifier Cursor
   Circular magnifier lens that follows the mouse (desktop only)
   ========================================================================== */

.dive-magnifier {
  position: fixed;
  z-index: 9999;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.06),
    inset 0 0 20px rgba(255, 255, 255, 0.04);
}

/* Hide on mobile */
@media (max-width: 1023px) {
  .dive-magnifier {
    display: none;
  }
}
