/* У файлі style.css */
html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    background-color: #000000; 
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* Дозволяємо вертикальний скрол */
    overflow-y: auto; 
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::selection {
    background: #e1e0dd;
    color: #000;
}

::-moz-selection {
    background: #e1e0dd;
    color: #000;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

#app {
    width: 100%;
    display: flex;
    flex-direction: column;
}

section {
    width: 100%;
    min-height: auto; 
    display: block;
    position: relative;
}
