/**
 * AI 智能客服平台 - 暗色主题设计令牌
 * 主题变量（颜色/发光/玻璃模糊等），暗色为默认主题，直接定义在 :root；
 * 结构样式见 css/common/，亮色变量覆盖见 css/light/themes.css
 * 作者: Calvin Liu <calvinliu@hk.chinamobile.com>
 * 版本: V1.0.0
 * 版权: MIT
 */

:root {
    --bg-deep: #05060f;
    --bg-panel: rgba(18, 20, 40, 0.55);
    --bg-panel-strong: rgba(24, 26, 52, 0.72);
    --bg-dropdown: rgba(13, 15, 32, 0.9);
    --bg-glass-border: rgba(255, 255, 255, 0.08);
    /* 细分割线/浅边框：暗色下用浅色半透明 */
    --line-soft: rgba(148, 163, 184, 0.18);
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff2fd6;
    --neon-violet: #8b5cff;
    --neon-lime: #b6ff3c;
    --neon-amber: #ffc233;
    --neon-blue: #3c8bff;
    --text-primary: #eaf2ff;
    --text-secondary: #9aa6c8;
    --text-dim: #5b6488;
    --rainbow: linear-gradient(90deg, #00f0ff, #3c8bff, #8b5cff, #ff2fd6, #ffc233, #b6ff3c, #00f0ff);
    --glow-cyan: 0 0 8px rgba(0, 240, 255, 0.55), 0 0 22px rgba(0, 240, 255, 0.25);
    --glow-magenta: 0 0 8px rgba(255, 47, 214, 0.55), 0 0 22px rgba(255, 47, 214, 0.25);
    --glow-violet: 0 0 8px rgba(139, 92, 255, 0.55), 0 0 24px rgba(139, 92, 255, 0.28);
    --radius-sm: 5px;
    --radius-md: 7px;
    --radius-lg: 10px;
    --blur: saturate(160%) blur(18px);
    --ease-silk: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 0.18s;
    --dur-med: 0.34s;
}
