/* footer-fix.css - 统一页尾分隔线与备案信息 */
footer { overflow: hidden; }
footer .footer-bottom {
    position: relative;
    border-top: 0 !important;
    padding-top: 25px;
    margin-top: 35px;
}
footer .footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 1px;
    transform: translateX(-50%);
    background: #333;
}
.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.icp-link {
    color: var(--gray-text, #a0a0a0);
    text-decoration: none;
    font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}
.icp-link:hover { color: var(--yellow-primary, #fbc200); }
@media (max-width: 700px) {
    .footer-meta { justify-content: center; text-align: center; }
    footer .footer-bottom { margin-top: 26px; }
}
