/* ============================================================
 * background.css
 * 背景相关样式：B 键背景操控模式指示器
 * ============================================================ */

/* B 键按住时的提示标记 */
.bg-mode-indicator {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: rgba(214, 158, 46, 0.85);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    z-index: 60;
    display: none;
    backdrop-filter: blur(8px);
}
.bg-mode-indicator.show { display: block; }
