/* Ko Cre8 — Design Tokens */
/* All colors, typography, and spacing in one place */

:root {
  /* === ACCENT === */
  --accent: #E07A5F;
  --accent-dark: #C4573C;
  --accent-soft: rgba(224, 122, 95, 0.12);
  --accent-hover: #D06A4F;
  
  /* === DARK MODE (default) === */
  --bg-primary: #121212;
  --bg-card: #1E1E1E;
  --bg-elevated: #262626;
  --bg-input: #262626;
  --text-primary: #F0EFED;
  --text-secondary: #999999;
  --text-tertiary: #666666;
  --border-color: #2A2A2A;
  --border-hover: #3A3A3A;
  
  /* === TYPOGRAPHY === */
  --font-main: 'Plus Jakarta Sans', 'Noto Sans Myanmar', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Noto Sans Myanmar', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 9px;
  --font-size-sm: 11px;
  --font-size-base: 13px;
  --font-size-md: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  
  /* === SPACING === */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  
  /* === BORDERS === */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 24px;
  --radius-full: 50%;
  
  /* === ENERGY BAR === */
  --energy-height: 8px;
  --energy-radius: 6px;
  
  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* === LIGHT MODE === */
[data-theme="light"] {
  --bg-primary: #F3F2F0;
  --bg-card: #FFFFFF;
  --bg-elevated: #E8E7E5;
  --bg-input: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #5F6368;
  --text-tertiary: #74777A;
  --border-color: #E0DFDD;
  --border-hover: #D0CFCD;
}
