.instagram-profile {
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.instagram-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.instagram-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.instagram-info {
    flex: 1;
}

.instagram-username {
    margin: 0 0 5px 0;
    font-size: 24px;
    color: #262626;
    font-weight: 600;
}

.instagram-fullname {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #262626;
    font-weight: 500;
}

.instagram-bio {
    margin: 10px 0;
    color: #555;
    line-height: 1.4;
}

.instagram-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.instagram-stat {
    text-align: center;
}

.instagram-stat strong {
    display: block;
    font-size: 18px;
    color: #262626;
}

.instagram-stat span {
    font-size: 14px;
    color: #8e8e8e;
}

.instagram-posts h4 {
    margin-bottom: 15px;
    color: #262626;
    font-size: 18px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.instagram-post {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.post-info {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.post-likes,
.post-comments {
    font-size: 14px;
    color: #555;
}

.post-date {
    font-size: 12px;
    color: #8e8e8e;
}

.post-caption {
    padding: 10px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-header {
        flex-direction: column;
        text-align: center;
    }
    
    .instagram-stats {
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}