.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-text {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
    font-weight: 400;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
    transform: translateY(-2px);
}

.footer-links .separator {
    opacity: 0.6;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 15px;
        margin-top: 40px;
    }
    
    .footer-text {
        font-size: 13px;
    }
    
    .footer-links {
        font-size: 13px;
        gap: 10px;
    }
    
    .footer-links .separator {
        display: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
