/* CIZEXPO CSS Variables */
:root {
    /* Colors */
    --color-primary: #1a2b4a;
    --color-primary-dark: #0f1a2e;
    --color-accent: #d4a84b;
    --color-accent-light: #e5c77d;
    --color-background: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-border: #e5e5e5;
    --color-white: #ffffff;

    /* Typography */
    --font-family-zh: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 70px;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}