/* Font Override: Noto Sans Thai */
html, body {
    font-family: 'Noto Sans Thai', ui-sans-serif, system-ui, sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
