/* 1. 全局文字增强 (核弹级) */
body {
    /* 强制所有文字纯白 */
    color: #ffffff !important;
    /* 核心：给所有文字加重的黑色阴影，像字幕一样，在任何背景下都清晰 */
    text-shadow: 0px 1px 4px rgba(0,0,0,1), 0px 0px 2px rgba(0,0,0,0.8) !important;
    font-weight: 600 !important; /* 全局加粗 */
}

/* 2. 顶部系统栏 (CPU/内存/硬盘) 特效 */
/* 针对顶部那行小字的特别优化 */
div[class*="glances"], header, div[class*="information"] {
    font-size: 1.2rem !important; /* 字体加大 */
    font-weight: 800 !important;   /* 极粗 */
    opacity: 1 !important;         /* 拒绝半透明 */
    color: #00ffcc !important;     /* 把它改成显眼的青色 (或者留白) */
}

/* 3. 服务标题 (Bitwarden等) */
div[class*="Service"] div[class*="name"] {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
}

/* 4. 服务描述 */
div[class*="Service"] div[class*="description"] {
    font-size: 1.1rem !important;
    opacity: 1 !important;
    color: #eeeeee !important;
}

/* 5. 分组标题 */
div[class*="Group"] h2 {
    font-size: 1.6rem !important;
    text-decoration: underline; /* 加个下划线更醒目 */
}
