.footer {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-bar {
    max-width: 980px;
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.copyright {
    margin-top: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.icp-link {
    color: #a5d8ff;
    text-decoration: none;
    margin-left: 8px;
}

.icp-link:hover { text-decoration: underline; }

.brand { display: flex; align-items: center; gap: 10px; }

.brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: #4dabf7;
    box-shadow: 0 6px 14px rgba(77,171,247,0.25);
}

.brand-name { color: #a5d8ff; font-weight: 500; font-size: 0.85rem; }
.brand-name a:hover { text-decoration: underline !important; opacity: 0.8; }
.dot { color: rgba(255,255,255,0.45); }
.year { color: rgba(255,255,255,0.85); }

.notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e9ecef;
}

.notice-title { color: #a5d8ff; font-weight: 500; }
.notice-sub { color: rgba(255,255,255,0.85); }

.latency { color: #a5d8ff; transition: color 0.3s ease; }
.latency.good { color: #51cf66; } /* 绿色 */
.latency.bad { color: #ff6b6b; }  /* 红色 */
.latency.offline { color: #ff6b6b; font-weight: bold; } /* 无服务红色加粗 */

.footer i { color: #a5d8ff; }

.site-footer {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-align: center;
}

.site-footer a:hover { text-decoration: underline !important; opacity: 0.8; }
