/* Custom Cursor Styles - Desktop Only */
@media (pointer: fine) and (hover: hover) {
  body {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: var(--z-cursor, 2147483647);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    mix-blend-mode: difference;
  }

  .custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor-follower, 2147483646);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
  }

  /* Hover state - enlarge cursor */
  body.cursor-hover .custom-cursor {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
  }

  body.cursor-hover .custom-cursor-follower {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* Hide default cursor on interactive elements */
  a, button, input, textarea, select, [role="button"] {
    cursor: none;
  }
}
