html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Background default */
body {
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      color: white;
      background: radial-gradient(circle at 50% -30%,#16a34a 0%,#000000 45%);
    }

/* Glass effect */
.glass {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Animasi fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}