:root {
    /* 深蓝紫星空主色 */
    --space-dark: #0f1729;
    --space-darker: #050812;
    --space-light: #1a2744;
    
    /* 强调色 - 金黄+白+青 */
    --primary-color: #fbbf24;     /* 金黄色 */
    --secondary-color: #ffffff;   /* 白色 */
    --accent-color: #22d3ee;      /* 亮青 */
    
    /* 文字颜色 */
    --text-light: #f8f9fa;
    --text-lighter: #ffffff;
    --text-dark: #0f1729;
    
    /* 其他 */
    --shadow: 0 20px 40px rgba(251, 191, 36, 0.08);
    --shadow-strong: 0 20px 60px rgba(192, 132, 252, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 20px rgba(251, 191, 36, 0.3);
}

