/* 皮肤名称: 极光 · 幕帘 */
/* ============================================================
   主题皮肤：极光 · 幕帘（aurora2）
   设计：深紫黑底 + 星空 + 90 条密集竖线组成的极光幕帘
         （绿→青→紫渐变流动）+ 顶部柔光 + 地面反光
   - 背景层由同目录 aurora2.js 注入（start 注入并启动动画、stop 整体移除）
   - 仅背景层，不改动导航、卡片等任何页面内容
   ============================================================ */

body.theme-aurora2 {
    background:
        linear-gradient(180deg, #0a0512 0%, #08040e 50%, #03010a 100%);
    background-color: #08040e;
    background-attachment: fixed;
}

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

/* ---- 极光画布 ---- */
#aurora2-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* 皮肤徽章（用户管理页皮肤列自动识别） */
.badge-theme-aurora2 {
    background-color: #0a0512;
    color: #8fd8c8;
}
