/* DYNAMIC CUSTOM NEON CURSOR STYLE */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  pointer-events: none;
  mix-blend-mode: difference; /* Highly futuristic contrast trick! */
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.cursor-ring {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  /* Trailing effect math - smooth transition */
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Hover/Expansion States */
.custom-cursor.hovering .cursor-ring {
  width: 44px;
  height: 44px;
  border-color: var(--accent-cyan);
  background-color: rgba(0, 240, 255, 0.05);
  box-shadow: var(--shadow-neon-cyan);
}

.custom-cursor.hovering .cursor-dot {
  background-color: var(--accent-amber);
}

/* Hide on mobile/touch interfaces */
@media (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}
