:root {
  /* カラーパレット */
  --color-primary: #667eea;
  --color-primary-dark: #5568d4;
  --color-accent: #e74c3c;
  --color-success: #27ae60;
  --color-warning: #f39c12;

  /* 背景 */
  --bg-dark: #1a1a2e;
  --bg-medium: #16213e;
  --bg-light: #0f3460;
  --bg-card: #1e2a4a;
  --bg-card-hover: #253356;

  /* テキスト */
  --text-primary: #ecf0f1;
  --text-secondary: #a0a8b4;
  --text-muted: #6c757d;
  --text-accent: #ffd700;

  /* HPバー */
  --hp-high: #27ae60;
  --hp-medium: #f39c12;
  --hp-low: #e74c3c;

  /* 間隔 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* ボーダー */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* フォント */
  --font-base: 16px;
  --font-sm: 14px;
  --font-lg: 20px;
  --font-xl: 24px;
  --font-2xl: 32px;
  --font-3xl: 40px;

  /* シャドウ */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);

  /* トランジション */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ブレークポイント用 */
  --mobile-max: 768px;
  --tablet-max: 1024px;
}
