/* ========================================
   variables.css — CSS变量中心
   所有颜色、尺寸、动画时长集中管理
   像素风 + Y2K + 深蓝紫主题
   ======================================== */

:root {
  /* ---- 主题色 ---- */
  --color-primary: #4FC3F7;
  --color-accent: #FF6B35;
  --color-sakura: #FFB7C5;
  --color-purple: #BB86FC;
  --color-gold: #FFD700;

  /* ---- 背景 ---- */
  --bg-dark: #0a0a1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --bg-input: #16162b;
  --bg-overlay: rgba(0, 0, 0, 0.75);

  /* ---- 文字 ---- */
  --text-primary: #e0e0e0;
  --text-secondary: #888;
  --text-muted: #555;
  --text-accent: var(--color-primary);

  /* ---- 进度条 ---- */
  --hp-high: #4CAF50;
  --hp-mid: #FF9800;
  --hp-low: #F44336;
  --mp-color: #4FC3F7;
  --exp-color: #BB86FC;

  /* ---- 成就品质 ---- */
  --tier-bronze: #CD7F32;
  --tier-silver: #C0C0C0;
  --tier-gold: #FFD700;
  --tier-legendary: #FF6B35;
  --tier-special: #BB86FC;

  /* ---- 尺寸 ---- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* ---- 字体 ---- */
  --font-main: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-pixel: 'Courier New', monospace;  /* 像素风数字 */
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-md: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;

  /* ---- 动画 ---- */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---- 阴影 ---- */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(79, 195, 247, 0.3);

  /* ---- 布局 ---- */
  --nav-height: 60px;
  --header-height: 48px;
  --max-width: 480px;  /* 手机端最大宽度 */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}