:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-text: #1F2328;
  --color-text-sub: #656D76;
  --color-border: #E1E4E8;

  /* Accent colors */
  --color-blue: #2C6BED;
  --color-purple: #6E40C9;
  --color-magenta: #D63384;
  --color-yellow: #FFC107;

  /* Hover states */
  --color-blue-hover: #1a5ad4;
  --color-purple-hover: #5a30b0;
  --color-magenta-hover: #c02070;
  --color-yellow-hover: #e0a800;

  /* Fonts */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Outfit", sans-serif;
  --font-body: var(--font-ja);

  /* Font sizes */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  --text-3xl: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  --text-4xl: clamp(2rem, 4vw + 0.5rem, 3rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1120px;
  --container-padding: 1.25rem;
  --header-height: 64px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}
