/* Importação de Fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;700&display=swap');

/* Reset Básico para garantir smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Customização da Barra de Rolagem (Opcional, mas dá um toque "Gamer") */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0F172A; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F97316; 
}