/* Instagram Gallery Styles */
        .ig-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .ig-filters {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .ig-filter-btn {
            background: #405de6;
            color: white;
            border: none;
            padding: 12px 24px;
            margin: 5px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .ig-filter-btn:hover {
            background: #5b7bd6;
            transform: translateY(-2px);
        }
        
        .ig-filter-btn.active {
            background: #e1306c;
        }
        
        .ig-post-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .ig-post-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .ig-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .ig-media-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .ig-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ig-media-type-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .ig-carousel-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
        }
        
        .ig-play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .ig-post-card:hover .ig-play-icon {
            opacity: 1;
        }
        
        .ig-post-info {
            padding: 20px;
        }
        
        .ig-post-caption {
            color: #333;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .ig-post-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 12px;
        }
        
        .ig-post-date {
            font-weight: 500;
        }
        
        .ig-post-stats {
            display: flex;
            gap: 15px;
        }
        
        .ig-loader {
            text-align: center;
            padding: 20px;
            display: none;
        }
        
        .ig-load-more {
            background: linear-gradient(45deg, #405de6, #5b7bd6, #833ab4, #c13584, #e1306c, #fd1d1d);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin: 20px auto;
            transition: transform 0.3s ease;
        }
        
        .ig-load-more:hover {
            transform: scale(1.05);
        }
        
        .ig-error {
            text-align: center;
            padding: 40px;
            color: #666;
            background: #f8f9fa;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .ig-no-posts {
            text-align: center;
            padding: 40px;
            color: #666;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .ig-initial-loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        /* Debug styles */
        .ig-debug {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            font-family: monospace;
            font-size: 12px;
        }
        
        .ig-debug h3 {
            margin: 0 0 10px 0;
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        
        .ig-debug-toggle {
            background: #6c757d;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }