/* ============================================================
   Sua 全站森林背景 + 泛白磨砂层（2026-08-09 v3）
   - 通过 body 伪元素实现，不影响卡片 / 导航 / 容器样式
   - 森林图：assets/bg/bg_1448375240586-882707db888b_1920.webp
   - 泛白：body::after 白色半透明层，叠加在森林图之上
   - 用 html body + !important 确保覆盖 auth.css / 各页内联 body 背景
   - 如需调整“白”的程度，改下方 --forest-white 即可
   ============================================================ */

:root {
    --forest-white: 0.78; /* 泛白强度：0 = 原图，1 = 全白 */
}

html body {
    background-color: #f5f5f0 !important; /* 兜底：图片加载失败或 body 背景冲突时仍为浅色 */
    background-image: none !important;
}

/* 森林图底图：提亮 + 去饱和，去掉原图的紫/青偏色 */
html body::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    background: url('../assets/bg/bg_1448375240586-882707db888b_1920.webp') center center / cover no-repeat fixed !important;
    filter: blur(3px) brightness(1.15) saturate(0.55) contrast(0.95) !important;
    transform: scale(1.06) !important; /* 抵消模糊边缘露白 */
    will-change: transform !important;
}

/* 泛白磨砂层：带一点点浅绿，避免冷紫/青偏色 */
html body::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -1 !important;
    background: rgba(238, 247, 240, var(--forest-white)) !important;
}

/* 登录 / 注册 / 忘记密码：使用山水落叶背景 */
html body.auth-page::before {
    background-image: url('../assets/login-bg-ins.jpg') !important;
    filter: blur(0px) brightness(1.05) saturate(0.6) contrast(0.98) !important;
    transform: scale(1.0) !important;
}
html body.auth-page::after {
    background: rgba(238, 247, 240, 0.42) !important;
}
