@media only screen and (max-width: 768px) {
    .sidebar .tc-wrapper {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        background: var(--background-primary);
    }
    
    body.sidebar-mobile-opened .sidebar .tc-wrapper {
        left: 0;
    }
    
    .sidebar .logo,
    .sidebar .sidebar-online-counters,
    .sidebar .footer {
        display: none !important;
    }
    
    body.sidebar-mobile-opened .sidebar .logo,
    body.sidebar-mobile-opened .sidebar .sidebar-online-counters,
    body.sidebar-mobile-opened .sidebar .footer {
        display: flex !important;
    }
    
    .mobile-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        backdrop-filter: blur(2px);
    }
    
    body.sidebar-mobile-opened .mobile-sidebar-overlay {
        display: block;
    }
    
    body.sidebar-mobile-opened {
        overflow: hidden;
    }
}

@media only screen and (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    
    .mobile-sidebar-overlay {
        display: none !important;
    }
    
    .mobile-navbar-overlay {
        display: none !important;
    }
}

