/* ============================================
   PickPhone - CSS Variables (Visual Enhanced)
   ============================================ */

:root {
  /* === 主色调 - 深邃科技感 === */
  --bg-primary: #09090b;              /* 极深黑，更纯粹 */
  --bg-secondary: #121216;            /* 卡片背景，微亮 */
  --bg-tertiary: #1c1c24;             /* 交互元素背景 */
  --bg-elevated: #242430;             /* 浮层背景 */
  --bg-blur: rgba(9, 9, 11, 0.85);    /* 毛玻璃背景色 */
  
  /* === 强调色 === */
  --accent-primary: #00d4ff;          /* 保持电光蓝 */
  --accent-primary-hover: #33ddff;
  --accent-primary-dim: rgba(0, 212, 255, 0.1);
  --accent-primary-border: rgba(0, 212, 255, 0.4); /* 增强边框透明度 */
  
  --accent-secondary: #8b5cf6;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;
  
  /* === 文字 === */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* === 边框/分割 (增强对比度) === */
  --border-color: rgba(255, 255, 255, 0.12); /* 从 0.08 提升到 0.12 */
  --border-hover: rgba(255, 255, 255, 0.25); /* 增强 hover 边框 */
  --border-light: rgba(255, 255, 255, 0.08);
  
  /* === 阴影 (增加层次) === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 15px rgba(0, 212, 255, 0.2);
  
  /* === 字体 & 排版 === */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
}
