/* 基础设置与 CSS 变量 */
:root {
    /* 更加深邃与高级的深色背景 */
    --bg-base: #0a0a0f;
    --bg-nav: rgba(10, 10, 15, 0.75);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* 现代感十足的高饱和度渐变色系 */
    --color-red: #ff3366;
    --color-blue: #00f2fe;
    --color-blue-dark: #4facfe;
    --color-orange: #ff9900;
    --color-green: #00f260;
    --color-purple: #c471ed;
    
    /* 极致拟态玻璃质感变量 */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    /* 字体系统 */
    --font-sans: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
    
    /* 间距与圆角增强 */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}
