/* DSF Custom Cursor — Sci-fi HUD Glow */

.dsf-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #00ecff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  margin-left: -4px;
  margin-top: -4px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 6px #00ecff, 0 0 12px rgba(0, 236, 255, 0.4);
  will-change: transform;
}

.dsf-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 236, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  margin-left: -20px;
  margin-top: -20px;
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease,
              border-color 0.3s ease, background 0.3s ease, opacity 0.3s;
  box-shadow: 0 0 15px rgba(0, 236, 255, 0.1);
  will-change: transform;
}

/* Hover state — expand ring */
.dsf-cursor-ring.dsf-cursor-hover {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-color: rgba(0, 236, 255, 0.6);
  background: rgba(0, 236, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 236, 255, 0.2);
}

/* Click state — pulse inward */
.dsf-cursor-ring.dsf-cursor-click {
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  border-color: rgba(0, 236, 255, 0.8);
  background: rgba(0, 236, 255, 0.12);
  transition: width 0.1s ease, height 0.1s ease, margin 0.1s ease,
              border-color 0.1s ease, background 0.1s ease;
}

/* Disable on touch/mobile */
@media (hover: none) and (pointer: coarse) {
  .dsf-cursor-dot,
  .dsf-cursor-ring {
    display: none !important;
  }
}
