/* Fix double scrollbar download page - Solution complète */
html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Empêcher double scrollbar sur le container principal */
.download-section {
    overflow: visible !important;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Fix pour AOS qui peut causer des scrollbars */
[data-aos] {
    overflow-anchor: none;
}

/* Empêcher scrollbar horizontale sur tous les éléments */
* {
    max-width: 100%;
}

/* Style unique pour la scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 20, 15, 0.8);
}

::-webkit-scrollbar-thumb {
    background: var(--color-marron);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-rose);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-marron) rgba(30, 20, 15, 0.8);
}
