/* Custom Glowing Cursor Trail (keeps native cursor visible and enhances with glowing ring) */

#custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #d4af37;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out, background-color 0.2s;
  box-shadow: 0 0 10px #ffd700, 0 0 20px #d4af37;
  opacity: 0.7;
}

#custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

/* Hovering over9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 hoverable elements */
body.cursor-hover #custom-cursor-ring {
  width: 48px;
  height: 48px;
  border-color: #ffd700;
  background-color: rgba(212, 175, 55, 0.1);
}

body.cursor-hover #custom-cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #ffd700;
}

@media (pointer: coarse) {
  #custom-cursor-dot, #custom-cursor-ring {
    display: none !important;
  }
}
