/* 友情链接样式 */
.friendly-links-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.friendly-links-container a {
    margin-right: 15px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.friendly-links-container a:hover {
    text-decoration: none;
}

/* 页脚链接样式 */
.footer-links-section {
    margin-top: 15px;
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-container a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links-container a:hover {
    text-decoration: none;
}

/* 维护模式样式 */
#maintenance-overlay {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}