/* 数组云 - CSS变量 */
:root {
    /* 主色调 */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #93c5fd;
    --primary-bg: #eff6ff;
    
    /* 背景色 */
    --bg-white: #fff;
    --bg-gray: #f3f4f6;
    --bg-hero: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1b3a 100%);
    
    /* 文字色 */
    --text-primary: #1f2329;
    --text-secondary: #646a73;
    --text-tertiary: #8b95a5;
    --text-white: #fff;
    
    /* 边框 */
    --border-color: #e5e7eb;
    --border-focus: #3b82f6;
    
    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(59, 130, 246, 0.12);
    
    /* 布局 */
    --header-height: 64px;
    --max-width: 1200px;
    --section-padding: 40px 60px;
    
    /* 过渡 */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    
    /* 状态色 */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}
