/* CSS变量定义 */
:root {
    /* 背景颜色 */
    --bg-start-color: #232526;
    --bg-end-color: #414345;
    
    /* 光球颜色 */
    --orb-color-1: rgba(0, 255, 135, 0.7); /* Mint Green */
    --orb-color-2: rgba(137, 207, 240, 0.7); /* Baby Blue */
    --orb-color-3: rgba(255, 218, 185, 0.7); /* Peach */
    
    /* 文本颜色 */
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    
    /* 毛玻璃效果 */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* 动画时长 */
    --animation-duration-fast: 0.3s;
    --animation-duration-normal: 0.5s;
    --animation-duration-slow: 25s;
    
    /* 尺寸变量 */
    --orb-size: 64px;
    --border-radius-large: 40px;
    --border-radius-medium: 3xl;
    --border-radius-small: xl;
}