/* 皮肤名称: 打字机 */
/* ============================================================
   主题皮肤：打字机（typewriter）
   设计：旧纸张底 + 纸纹 + 页面横线 + 装订线 + 打字机字符逐字出现
   - 打字区域从导航栏下方（110px）开始，保证文字清晰可见
   - 背景层由同目录 typewriter.js 注入（start 注入并启动动画、stop 整体移除）
   - 仅背景层，不改动导航、卡片等任何页面内容
   ============================================================ */

body.theme-typewriter {
    background:
        linear-gradient(135deg, #f5ebd4 0%, #ede0c2 40%, #e5d5b3 70%, #dcc9a0 100%);
    background-color: #ede0c2;
    background-attachment: fixed;
}

/* ---- 全屏背景容器（由 typewriter.js 注入到 body 末尾） ---- */
#typewriter-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* 负层级：body 背景之上、所有页面内容之下 */
    overflow: hidden;
    pointer-events: none;
}

/* ---- 打字机画布 ---- */
#typewriter-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* 皮肤徽章（用户管理页皮肤列自动识别） */
.badge-theme-typewriter {
    background-color: #f0e6cd;
    color: #6b542e;
}
