/* Common Styles（变量与布局见 main.css） */
body {
    font-family: 'Noto Sans SC', sans-serif;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}