/* 主题颜色和变量 */
:root {
    /* 主色调 - 科技蓝 */
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    
    /* 渐变色 */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    
    /* 背景色 */
    --bg-primary: #0a0e27;
    --bg-secondary: #141829;
    --bg-card: #1a1f3a;
    --bg-card-hover: #242a45;
    
    /* 文字颜色 */
    --text-primary: #ffffff;
    --text-secondary: #b0b8c8;
    --text-muted: #6b7280;
    
    /* 边框和阴影 */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.5);
    
    /* 间距 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 高亮文字 */
.highlight {
    color: var(--primary-light);
    font-weight: 600;
}

