/* 🧲 Smooth mobile scroll + no ugly scrollbar */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (visual only) */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}
