/* 友情链接区域 */
.friend-links-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px 20px;
    margin-top: 80px;
}

.friend-links-title {
    color: #00d9ff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.friend-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d9ff, transparent);
    border-radius: 2px;
}

.friend-links-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

/* 如果您要添加友情链接项，可以使用以下样式 */
.friend-link-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.friend-link-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.friend-link-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

/* 页脚区域 */
.footer-section {
    background: #0a0a0a;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    padding: 40px 20px 30px;
    margin-top: 0;
}

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

.footer-copyright p {
    color: #888888;
    font-size: 14px;
    line-height: 1.8;
    margin: 10px 0;
}

.footer-copyright p:first-child {
    color: #00d9ff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-copyright a {
    color: #00d9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #00fff7;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .friend-links-section {
        padding: 40px 15px;
        margin-top: 40px;
    }
    
    .friend-links-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .friend-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
    
    .footer-section {
        padding: 30px 15px 20px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .friend-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

.friend-links-section {
    background: #0d0d0d;
    padding: 60px 20px;
    margin-top: 50px;
}

.friend-links-title {
    color: #00d9ff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.friend-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00d9ff;
}

.friend-links-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.friend-links-grid .link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 6px;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.friend-links-grid .link:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: #00d9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}