 
    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

    #mobile-menu-panel {
        background: radial-gradient(circle at top right, rgba(29, 78, 216, 0.12), transparent), 
                    #030712;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    }

    .nav-card-premium {
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        width: 100%;
        transition: all 0.2s ease;
    }

    .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #60a5fa;
        flex-shrink: 0;
    }

    .nav-card-active {
        background: rgba(59, 130, 246, 0.05);
        border-color: rgba(59, 130, 246, 0.4);
    }

    .nav-card-premium:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.07);
    }

    .social-link {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
    }
    
    
.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
    .social-link:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: #fff;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    }

   
    .social-link:has(.fa-instagram):hover {
        color: #e1306c;
        border-color: rgba(225, 48, 108, 0.3);
        background: rgba(225, 48, 108, 0.05);
    }

    
    .social-link:has(.fa-youtube):hover {
        color: #ff0000;
        border-color: rgba(255, 0, 0, 0.3);
        background: rgba(255, 0, 0, 0.05);
    }

    
    .social-link:has(.fa-whatsapp):hover {
        color: #25d366;
        border-color: rgba(37, 211, 102, 0.3);
        background: rgba(37, 211, 102, 0.1);
    }
}

 
.social-link:active {
    transform: scale(0.9);
    transition: 0.1s;
}
 
