/* src/style.css */
body {
  font-family: 'Inter', sans-serif;
  /* Đã xóa cursor: none; theo chuẩn UX Production */
}

html {
  scroll-behavior: smooth;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Thanh tiến trình cuộn trang */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, #4f46e5, #c084fc);
  width: 0%;
  z-index: 10000;
  border-radius: 0 2px 2px 0;
}

/* Hiệu ứng gõ chữ nhấp nháy */
.cursor-blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}