* {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.custom-cursor.hover {
  width: 40px;
  height: 40px;
}

@keyframes scroll-discover {
  0% {
    opacity: 0;
    transform: translate(0px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
}
.light-streak {
  inset: 0;
  pointer-events: none;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  filter: blur(30px);
  transform: translateY(100%) scale(1.2);
  animation: lightSweep 1.5s ease-out forwards, lightBreath 2s ease-in-out infinite 1.3s;
}

@keyframes lightSweep {
  0% {
    transform: translateY(100%) scale(1.2);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) scale(1);
    opacity: 0.7;
  }
}
@keyframes lightBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}