/* Custom cursor styles */
@media (pointer: fine) {
  /* * {
        cursor: none;
    } */

  .custom-cursor {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, background-color 0.3s, opacity 0.3s;
    opacity: 0;
  }

  .custom-cursor::before,
  .custom-cursor::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
  }

  /* Horizontal line */
  .custom-cursor::before {
    width: 14px;
    height: 0.5px;
  }

  /* Vertical line */
  .custom-cursor::after {
    height: 14px;
    width: 0.5px;
  }

  /* Cursor size changes on interactive elements */
  a:hover ~ .custom-cursor {
    width: 50px;
    height: 50px;
    background: rgba(42, 255, 255, 0.1);
    border-color: rgba(42, 255, 255, 0.3);
  }
}
