@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600;800&display=swap');

body {
    font-family: 'Kanit', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #0e7490;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #155e75;
}