.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 9998;
}

.magnetic-btn {
  /* Smooth transition for the magnetic effect */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

@media screen and (max-width: 950px) {
  .cursor-dot {
    display: none;
  }

  .magnetic-btn {
    transition: none !important;
  }
}
