body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background-color: #282c34;
    cursor: none;  /* Hide the default cursor */
  }
  
  .trail {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: sparkles 0.6s forwards;
  }
  
  @keyframes sparkles {
    0% {
      opacity: 0.8;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(2);
    }
  }
  

  