/* 社交链接样式 - 避免广告拦截 */
.my-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.my-links li {
    display: inline-block;
}

.my-links a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.my-links a:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #495057;
}

.my-links img {
    transition: transform 0.3s ease;
}

.my-links a:hover img {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .my-links {
        justify-content: center;
    }
    
    .my-links a {
        font-size: 12px;
        padding: 6px 10px;
    }
}