html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
    will-change: transform, opacity;
}
