:root {
    /* 主色调 */
    --primary: #3a5bc9;
    --primary-dark: #2c4cc0;
    --primary-light: #5a7de9;
    
    /* 语义化颜色 */
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;
    
    /* 背景色 */
    --background: #f5f7fa;
    --card-bg: #ffffff;
    
    /* 文字色 */
    --text: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    
    /* 设计系统 */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* 间距系统 */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* 字体大小 */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #1a1a1a;
        --card-bg: #2d2d2d;
        --text: #ffffff;
        --text-secondary: #cccccc;
    }
}