/* 社交图标部分样式 */
.social-icons-section {
    margin-top: 20px;
    text-align: center;
}

.social-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: #D7D4D0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* 圆形背景上的图标样式 */
.social-icon-wrapper i {
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* 鼠标悬停效果 */
.social-icon-link:hover .social-icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: #C8C5C1; /* 悬停时颜色变深 */
}

/* 每个图标单独的悬停颜色效果 */
.social-icon-link:nth-child(1):hover .social-icon-wrapper { /* Vk */
    background: linear-gradient(135deg, #4A76A8, #3B5998);
}
.social-icon-link:nth-child(2):hover .social-icon-wrapper { /* TikTok */
    background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
}
.social-icon-link:nth-child(3):hover .social-icon-wrapper { /* Pinterest */
    background: linear-gradient(135deg, #E60023, #BD081C);
}
.social-icon-link:nth-child(4):hover .social-icon-wrapper { /* Telegram */
    background: linear-gradient(135deg, #0088CC, #2CA5E0);
}

/* 鼠标悬停时图标变白 */
.social-icon-link:hover .social-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

/* 添加点击效果 */
.social-icon-wrapper:active {
    transform: translateY(-2px) scale(0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .social-icons-container {
        gap: 10px;
    }
    
    .social-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .social-icon-wrapper i {
        font-size: 20px;
    }
    
    .social-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .social-icons-container {
        gap: 8px;
    }
    
    .social-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .social-icon-wrapper i {
        font-size: 18px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icon-link {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

/* 为每个图标添加延迟动画 */
.social-icon-link:nth-child(1) { animation-delay: 0.1s; }
.social-icon-link:nth-child(2) { animation-delay: 0.2s; }
.social-icon-link:nth-child(3) { animation-delay: 0.3s; }
.social-icon-link:nth-child(4) { animation-delay: 0.4s; }

/* 工具提示效果 */
.social-icon-link {
    position: relative;
}

.social-icon-link::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.social-icon-link:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* 确保TikTok图标显示正常 */
.icon-logo-tiktok:before {
    content: "𝕋"; /* TikTok图标备用 */
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* 如果使用了自定义的TikTok字体图标 */
.fa.iconfont.icon-logo-tiktok {
    font-family: 'iconfont', 'FontAwesome', Arial, sans-serif;
}