/* Отключение smooth scroll */
html {
    scroll-behavior: auto !important;
}

body {
    scroll-behavior: auto !important;
}

* {
    scroll-behavior: auto !important;
}

/* Убираем все smooth scroll эффекты */
#main-content {
    overflow: visible !important;
    transform: none !important;
}

/* Обычный скроллинг */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Отключаем все GSAP smooth scroll эффекты */
.ScrollSmoother-wrapper {
    display: none !important;
}

/* Убираем фиксированное позиционирование */
#main-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}
