/**
 * AUD Gaming - CSS变量文件
 * 包含网站全局使用的CSS变量，如颜色、字体、间距等
 */

:root {
  /* 主色调 */
  --primary-color: #d62126;
  --primary-light: #f53d42;
  --primary-dark: #b8191f;
  --primary-gradient: linear-gradient(135deg, #d62126, #b8191f);
  
  /* 辅助色 */
  --secondary-color: #1a1a1a;
  --secondary-light: #2a2a2a;
  --secondary-dark: #0a0a0a;
  
  /* 中性色 */
  --dark: #121212;
  --dark-gray: #333333;
  --gray: #666666;
  --light-gray: #999999;
  --lighter-gray: #CCCCCC;
  --faded: #F5F5F5;
  --white: #FFFFFF;
  
  /* 功能色 */
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  
  /* 背景色 */
  --bg-primary: #121212;
  --bg-color: #121212;
  --bg-secondary: #1e1e1e;
  --bg-dark: #000000;
  --bg-light: #2a2a2a;
  --bg-gradient-secondary: linear-gradient(to right, #1e1e1e, #121212);
  
  /* 字体家族 */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  
  /* 字体大小 */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */
  
  /* 行高 */
  --line-height-tight: 1.25;
  --line-height-base: 1.5;
  --line-height-loose: 1.75;
  
  /* 字重 */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* 间距 */
  --spacing-1: 0.25rem;  /* 4px */
  --spacing-2: 0.5rem;   /* 8px */
  --spacing-3: 0.75rem;  /* 12px */
  --spacing-4: 1rem;     /* 16px */
  --spacing-5: 1.25rem;  /* 20px */
  --spacing-6: 1.5rem;   /* 24px */
  --spacing-8: 2rem;     /* 32px */
  --spacing-10: 2.5rem;  /* 40px */
  --spacing-12: 3rem;    /* 48px */
  --spacing-16: 4rem;    /* 64px */
  --spacing-20: 5rem;    /* 80px */
  --spacing-24: 6rem;    /* 96px */
  --spacing-32: 8rem;    /* 128px */
  
  /* 圆角 */
  --border-radius-sm: 0.125rem;  /* 2px */
  --border-radius-base: 0.25rem; /* 4px */
  --border-radius-md: 0.375rem;  /* 6px */
  --border-radius-lg: 0.5rem;    /* 8px */
  --border-radius-xl: 0.75rem;   /* 12px */
  --border-radius-2xl: 1rem;     /* 16px */
  --border-radius-full: 9999px;
  
  /* 阴影 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* 过渡 */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Z-index层级 */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  
  /* 容器宽度 */
  --container-width-sm: 540px;
  --container-width-md: 720px;
  --container-width-lg: 960px;
  --container-width-xl: 1140px;
  --container-width-2xl: 1320px;
  
  /* 网格系统 */
  --grid-columns: 12;
  --grid-gutter-width: 1.5rem;
  
  /* 边框 */
  --border-width: 1px;
  --border-width-md: 2px;
  --border-width-lg: 3px;
  --border-color: #333333;
  
  /* 特定元素样式 */
  /* 特定元素样式 */
  --header-height: 70px;
  --footer-bg: #0a0a0a;
  --sidebar-width: 280px;
  --card-border-radius: 10px;
  
  /* 覆盖基本颜色为深色模式设计的别名 */
  --text-primary: #ffffff;
  --text-dark: #f5f5f5;
  --text-light: #ffffff;
  --text-muted: #aaaaaa;
  --accent-color: #d62126;
  --accent-dark: #b8191f;
  --link-color: #d62126;
  --link-hover: #ffffff;
} 