/* Custom Cursor Styles */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  
  a, button, input, select, textarea, [role="button"], .cursor-pointer {
    cursor: none !important;
  }

  .custom-cursor-dot,
  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
  }

  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #0070f3;
  }

  .custom-cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 112, 243, 0.4);
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
  }
  
  .custom-cursor-dot.hovered {
    width: 0px;
    height: 0px;
  }
  
  .custom-cursor-ring.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 112, 243, 0.1);
    border-color: rgba(0, 112, 243, 0.8);
  }
}
