/* 社交媒体增强样式 */

.social-links-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-item:hover::before {
    opacity: 1;
}

.social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-name {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Facebook样式 */
.social-item.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-item.facebook:hover {
    border-color: #1877F2;
}

.social-item.facebook:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.5);
}

/* Twitter样式 */
.social-item.twitter .social-icon {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-item.twitter:hover {
    border-color: #1DA1F2;
}

.social-item.twitter:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 25px rgba(29, 161, 242, 0.5);
}

/* YouTube样式 */
.social-item.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-item.youtube:hover {
    border-color: #FF0000;
}

.social-item.youtube:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

/* Telegram样式 */
.social-item.telegram .social-icon {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.social-item.telegram:hover {
    border-color: #0088cc;
}

.social-item.telegram:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5);
}

/* 图标动画 */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.social-item:hover .social-icon i {
    animation: iconFloat 1s ease-in-out infinite;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .social-links-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .social-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .social-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .social-links-enhanced {
        grid-template-columns: 1fr;
    }
    
    .social-item {
        padding: 12px 15px;
    }
}

/* Footer布局优化 */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 客服按钮悬停增强 */
.telegram-support-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5) !important;
}

.telegram-support-btn:active {
    transform: translateY(0) scale(1);
}

/* Footer底部 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 平板优化 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
}

