html { scroll-behavior: smooth; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
#cursor { animation: blink 1s step-end infinite; font-weight: 300; }
.cursor-hidden { opacity: 0 !important; }
