:root {
  /* Colors */
  --color-bg-base: #08080D;
  --color-bg-card: #0F0F17;
  --color-bg-elevated: #16161F;
  --color-bg-hover: #1C1C28;
  
  --color-border-default: rgba(240, 165, 0, 0.10);
  --color-border-hover: rgba(240, 165, 0, 0.28);
  --color-border-active: rgba(240, 165, 0, 0.55);
  
  --color-accent-gold: #F0A500;
  --color-accent-dim: rgba(240, 165, 0, 0.12);
  
  --color-long: #00C896;
  --color-long-dim: rgba(0, 200, 150, 0.12);
  
  --color-short: #FF4D6D;
  --color-short-dim: rgba(255, 77, 109, 0.12);
  
  --color-neutral: #8888AA;
  --color-neutral-dim: rgba(136, 136, 170, 0.12);
  
  --color-text-primary: #F0EEE8;
  --color-text-secondary: #8A8A9A;
  --color-text-dim: #4A4A5A;
  
  /* Typography */
  --font-syne: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-xxxl: 64px;
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 0 1px var(--color-border-default), 0 8px 32px rgba(240, 165, 0, 0.08);
  
  /* Layout */
  --max-width-content: 960px;
  --header-height: 58px;
  
  /* Z-index layers */
  --z-bg: 0;
  --z-content: 1;
  --z-header: 10;
  --z-modal: 100;
}