:root {
  /* ==========================================
     COLORS
     ========================================== */

  /* Neutrals - Cool Slate Foundation */
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-600: #475569;
  --color-slate-900: #0f172a;

  /* Brand Colors */
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-success-500: #10b981;
  --color-success-600: #059669;
  --color-danger-500: #ef4444;
  --color-danger-600: #dc2626;

  /* ==========================================
     SURFACES
     ========================================== */

  --surface-card: rgba(255, 255, 255, 0.95);
  --surface-card-hover: rgba(255, 255, 255, 1);

  /* ==========================================
     EFFECTS
     ========================================== */

  --color-focus-ring: rgba(59, 130, 246, 0.1);
  --color-success-glow: rgba(16, 185, 129, 0.3);
  --color-upcoming-bg: rgba(59, 130, 246, 0.1);
  --color-upcoming-border: rgba(59, 130, 246, 0.2);

  /* ==========================================
     SPACING
     ========================================== */

  --spacing-1: 0.25rem;  /* 4px */
  --spacing-2: 0.5rem;   /* 8px */
  --spacing-3: 0.75rem;  /* 12px */
  --spacing-4: 1rem;     /* 16px */
  --spacing-6: 1.5rem;   /* 24px */
  --spacing-8: 2rem;     /* 32px */
  --spacing-12: 3rem;    /* 48px */
  --spacing-16: 4rem;    /* 64px */

  /* ==========================================
     TYPOGRAPHY
     ========================================== */

  /* Font Families */
  --font-display: 'Barlow Condensed', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 2rem;      /* 32px */

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;

  /* ==========================================
     SHADOWS
     ========================================== */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px 0 rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);

  /* ==========================================
     BORDER RADIUS
     ========================================== */

  --radius-sm: 8px;
  --radius-base: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ==========================================
     MISC
     ========================================== */

  --min-touch-target: 44px;
}

/* ==========================================
   UTILITY EXTENSIONS
   ========================================== */

/* Display font utility */
.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.font-mono {
  font-family: var(--font-mono);
}

/* Tabular numbers for scores/stats */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}
