body {
    background: #0B1120;
    color: #F8FAFC;
}

html {
    scroll-behavior: smooth;
}

/* Estilização da barra de rolagem para combinar com o dark mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: #1D4ED8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #08ACFF;
}