:root {
  /* ===== 暗黑霓虹科技风 ===== */
  /* Primary Colors - Neon Violet + Cyan */
  --color-primary: #7c5cff;
  --color-primary-dark: #5a3ff0;
  --color-primary-light: #1a1633;   /* 深色下的"浅色"= 主色淡底 */
  --color-accent: #00e5ff;          /* 霓虹青 */

  /* Neutral Colors（深色语境）*/
  --color-secondary: #ffffff;
  --color-text: #a8acc4;            /* 正文浅灰蓝 */
  --color-text-light: #767b96;     /* 次级文字 */
  --color-heading: #f4f5fb;        /* 标题近白 */
  --color-border: rgba(255, 255, 255, 0.10);

  /* Background Colors */
  --color-bg: #070b16;             /* 深空底 */
  --color-bg-alt: #0c1122;         /* 次级区块 */
  --color-bg-dark: #05080f;
  --color-bg-footer: #05080f;
  --color-bg-elev: #0f1530;        /* 抬升表面 */

  /* Glass（玻璃拟态）*/
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 16px;

  /* Gradients / Glow */
  --grad-primary: linear-gradient(135deg, #7c5cff 0%, #00e5ff 100%);
  --grad-text: linear-gradient(135deg, #b3a0ff 0%, #7c5cff 50%, #00e5ff 100%);
  --glow-primary: 0 0 0 1px rgba(124, 92, 255, 0.4), 0 8px 40px rgba(124, 92, 255, 0.45);
  --glow-soft: 0 0 60px rgba(124, 92, 255, 0.25);

  /* Status Colors */
  --color-success: #2ee6a6;
  --color-white: #ffffff;

  /* Typography */
  --font-primary: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 42px;
  --font-size-4xl: 56px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.25;
  --line-height-base: 1.6;
  --line-height-loose: 1.8;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-section: 88px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.6);
  --shadow-primary: var(--glow-primary);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 24px;
  --nav-height: 80px;
  --section-padding: var(--space-section) 0;
}

/* Responsive font scaling */
@media (max-width: 768px) {
  :root {
    --font-size-3xl: 30px;
    --font-size-4xl: 38px;
    --space-section: 60px;
    --container-padding: 16px;
    --nav-height: 64px;
  }
}
