/* Mobile Navigation Theme Fix */
@media (max-width: 768px) {
    .nav {
        background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    }
    
    .nav-section {
        color: #00d4aa !important;
        background: rgba(0, 212, 170, 0.1) !important;
        border-top: 2px solid rgba(0, 212, 170, 0.3) !important;
    }
    
    .nav-link {
        background: rgba(0, 212, 170, 0.05) !important;
        color: rgba(255,255,255,0.9) !important;
        font-weight: 500 !important;
    }
    
    .tool-link {
        color: rgba(255,255,255,0.8) !important;
        font-weight: 400 !important;
    }
    
    .nav-link:hover, .tool-link:hover {
        background: rgba(0, 212, 170, 0.15) !important;
        border-left-color: #00d4aa !important;
        color: white !important;
        transform: translateX(5px);
    }
}