                    .instagram-pro {
                        font-family: inherit;
                        color: #8e8e8e;
                        line-height: 1.4;
                        overflow: auto;
	                    overflow-x: hidden;
	                    scrollbar-color: #000 rgba(0, 0, 0, 0.3);
	                    scrollbar-width: thin;
                    }

                    /* Content styles */
                    .instagram-pro * {
                        box-sizing: border-box;
                    }
                    
                    .instagram-pro-header {
                        padding: 0;
                        padding: 20px;
                    }

                    /* User info styles */
                    .user-avatar-container{
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        flex-direction: column;
                    }
                    .user-info-full {
                        display: flex;
                        flex-direction: column;;
                        align-items: center;
                        gap: 20px;
                    }
                    
                    .user-info-minimal {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                    }
                    
                    .user-info-username-only {
                        text-align: center;
                    }
                    
                    .user-avatar {
                        border-radius: 50%;
                    }
                    
                    .user-info-full .user-avatar {
                        width: 80px;
                        height: 80px;
                    }
                    .user-info-full .ig-name, 
                    .user-info-full .ig-username {
                        margin: 0;
                        text-align: center;
                        line-height: 1.4;
                    }
                    .user-info-full .ig-name{
                        font-size: 16px;
                        color: #000;
                    }
                    .user-info-full .ig-username{
                        font-size: 14px
                    }
                    .user-info-full .ig-username a{
                        color: rgba(0,0,0,.5);
                        text-decoration: none;
                    }

                    .user-info-minimal .user-avatar {
                        width: 50px;
                        height: 50px;
                    }
                    
                    .user-info-username-only .user-avatar {
                        width: 60px;
                        height: 60px;
                        margin: 0 auto 10px;
                    }
                    
                    .user-name {
                        color: #8e8e8e;
                        font-size: 16px;
                        margin-bottom: 12px;
                    }
                    
                    .user-stats {
                        display: flex;
                        gap: 20px;
                        font-size: 14px;
                    }
                    
                    .stat-item {
                        text-align: center;
                    }
                    
                    .stat-number {
                        display: block;
                        font-weight: 700;
                        font-size: 18px;
                        color: #000;
                    }
                    
                    .stat-label {
                        color: #8e8e8e;
                        font-size: 12px;
                    }
                    
                    /* Layout styles */
                    .instagram-grid {
                        display: grid;
                    }
                    
                    /* Post styles */
                    .instagram-post {
                        position: relative;
                        overflow: hidden;
                        background: #f8f8f8;
                        transition: all 0.3s ease;
                        cursor: pointer;
                    }
                    
                    .instagram-grid .instagram-post {
                        aspect-ratio: 1;
                    }
                    
                    .instagram-post:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
                    }
                    
                    .instagram-post.animate-in {
                        animation: slideInUp 0.6s ease forwards;
                    }
                    
                    @keyframes slideInUp {
                        from {
                            opacity: 0;
                            transform: translateY(20px);
                        }
                        to {
                            opacity: 1;
                            transform: translateY(0);
                        }
                    }
                    
                    .post-media {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.3s ease;
                    }
                    
                    .instagram-post:hover .post-media {
                        transform: scale(1.02);
                    }
                    
                    .post-overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: #00000061;
                        opacity: 0;
                        transition: opacity 0.3s ease;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        font-weight: 600;
                    }
                    
                    .instagram-grid .instagram-post:hover .post-overlay {
                        opacity: 1;
                    }
                    .post-stats {
                        display: flex;
                        gap: 15px;
                        align-items: center;
                    }
                    
                    .post-stat {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        font-size: 16px;
                    }
                    
                    .instagram-sidebar .post-content {
                        flex: 1;
                        min-width: 0;
                    }
                    
                    /* Lightbox */
                    .instagram-lightbox {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0, 0, 0, 0.9);
                        z-index: 10000;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.3s ease;
                    }
                    
                    .instagram-lightbox.active {
                        opacity: 1;
                        visibility: visible;
                    }
                    
                    .lightbox-content {
                        position: relative;
                        max-width: 90vw;
                        max-height: 90vh;
                        background: white;
                        border-radius: 12px;
                        overflow: hidden;
                    }
                    
                    .lightbox-media {
                        width: 100%;
                        height: auto;
                        max-height: 80vh;
                        object-fit: contain;
                    }
                    
                    .lightbox-close {
                        position: absolute;
                        top: 15px;
                        right: 15px;
                        width: 40px;
                        height: 40px;
                        background: rgba(0, 0, 0, 0.5);
                        border: none;
                        border-radius: 50%;
                        color: white;
                        font-size: 20px;
                        cursor: pointer;
                        z-index: 1;
                        transition: background 0.3s ease;
                    }
                    
                    .lightbox-close:hover {
                        background: rgba(0, 0, 0, 0.7);
                    }
                    
                    /* Load More Button */
                    .load-more-btn {
                        display: block;
                        width: 100%;
                        max-width: 200px;
                        margin: 25px auto;
                        padding: 12px 24px;
                        background: #ff3c38;
                        color: white;
                        border: none;
                        font-weight: 600;
                        cursor: pointer;
                        transition: all 0.3s ease;
                    }
                    
                    .load-more-btn:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
                    }
                    
                    .load-more-btn:disabled {
                        opacity: 0.6;
                        cursor: not-allowed;
                        transform: none;
                    }
                    
                    /* Loading Spinner */
                    .loading-spinner {
                        width: 40px;
                        height: 40px;
                        border: 3px solid #f3f3f3;
                        border-top: 3px solid #ff3c38;
                        border-radius: 50%;
                        animation: spin 1s linear infinite;
                        margin: 20px auto;
                    }
                    
                    @keyframes spin {
                        0% { transform: rotate(0deg); }
                        100% { transform: rotate(360deg); }
                    }
                    
                    /* Responsive styles */
                    @media (max-width: 768px) {
                        
                        .instagram-pro-header {
                            padding: 15px;
                        }
                        
                        .user-info-full {
                            flex-direction: column;
                            text-align: center;
                            gap: 15px;
                        }
                        
                        .user-info-full .user-details {
                            text-align: center;
                        }
                        
                        .user-stats {
                            justify-content: center;
                        }
                        
                        .instagram-sidebar .instagram-post {
                            height: 70px;
                            padding: 8px;
                        }
                        
                        .instagram-sidebar .post-media {
                            width: 50px;
                            height: 50px;
                        }
                        
                        .instagram-footer .instagram-post {
                            width: 100px;
                            height: 100px;
                        }
                    }
                    
                    @media (max-width: 480px) {
       
                        .user-info-full .user-avatar {
                            width: 60px;
                            height: 60px;
                        }
                        
                        .user-details h3 {
                            font-size: 20px;
                        }
                        
                        .user-stats {
                            gap: 15px;
                        }
                        
                        .stat-number {
                            font-size: 16px;
                        }
                        
                        .lightbox-content {
                            max-width: 95vw;
                            max-height: 95vh;
                        }
                    }