@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #eee;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

.text-accent { color: #dc2626; }
.bg-accent { background-color: #dc2626; }
.bg-accent-hover:hover { background-color: #b91c1c; }
.border-accent { border-color: #dc2626; }

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.nav-item.active {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    border-right: 4px solid #dc2626;
}

@media (max-width: 768px) {
    .nav-item.active {
        border-right: none;
        border-left: 4px solid #dc2626; 
        background-color: rgba(220, 38, 38, 0.1);
    }
}