/* ========================================
   Anya & Kimo - 页脚组件
   
   网站通用页脚，包含版权信息、副标题、备案号。
   使用 CSS 变量，自动适配主题色。
   所有页面共用，只需引入一次。
   ======================================== */

/* 页脚容器 */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    box-sizing: border-box;
}

/* 副标题（小字调侃） */
.footer-sub {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
    box-sizing: border-box;
}

/* 备案信息 */
.footer-beian {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.5;
    box-sizing: border-box;
}

/* 备案链接 */
.footer-beian a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-beian a:hover {
    opacity: 0.8;
    text-decoration: underline;
}