/* 色彩方案 */
:root {
    /* 主色调 */
    --primary-color: #1a73e8;
    --primary-hover: #1557b0;
    
    /* 辅助色 */
    --secondary-color: #f57c00;
    --secondary-hover: #ef6c00;
    --success-color: #34a853;
    --success-hover: #2d9d48;
    
    /* 中性色 */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #3c4043;
    --black: #202124;
    
    /* 背景色 */
    --background-color: #ffffff;
    --section-background: #f8f9fa;
    
    /* 文字颜色 */
    --text-primary: #202124;
    --text-secondary: #3c4043;
    --text-light: #5f6368;
    
    /* 边框颜色 */
    --border-color: #e0e0e0;
    --border-radius: 12px;
    
    /* 字体 */
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* 动画时间 */
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --transition-slow: 0.8s;
    
    /* 阴影 */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
}