/* ═══════════════════════════════════════════════════════════════════
   CricBun Design Tokens — ESPN Cricinfo Inspired
   Version: 2.0
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand Colors ── */
  --cb-primary: #0860c4;
  --cb-primary-dark: #0544a3;
  --cb-primary-light: #e6eef7;
  --cb-primary-rgb: 8, 96, 196;
  --cb-accent: #e40000;
  --cb-accent-dark: #b30000;
  --cb-accent-light: #fee;
  --cb-accent-rgb: 228, 0, 0;
  --cb-success: #2e7d32;
  --cb-success-light: #e8f5e9;
  --cb-success-rgb: 46, 125, 50;
  --cb-warning: #f9a825;
  --cb-warning-light: #fffde7;
  --cb-warning-rgb: 249, 168, 37;
  --cb-info: #0277bd;
  --cb-info-light: #e1f5fe;

  /* ── Backgrounds ── */
  --cb-bg: #f9f9fb;
  --cb-bg-alt: #edeef0;
  --cb-bg-subtle: #f0f1f3;
  --cb-bg-inverse: #0860c4;
  --cb-bg-overlay: rgb(0, 0, 0, 0.55);
  --cb-bg-card: #fff;
  --cb-bg-section: #f4f5f7;

  /* ── Text ── */
  --cb-text: #2b2c2d;
  --cb-text-secondary: #6c6d6f;
  --cb-text-tertiary: #a5a6a7;
  --cb-text-inverse: #fff;
  --cb-text-disabled: #c4c7cc;
  --cb-text-link: #0860c4;
  --cb-text-link-hover: #0398dc;

  /* ── Borders ── */
  --cb-border: #edeef0;
  --cb-border-light: #f0f1f3;
  --cb-border-focus: #0860c4;

  /* ── Semantic States ── */
  --cb-live: #e40000;
  --cb-upcoming: #bd7100;
  --cb-completed: #6c6d6f;
  --cb-team-a: #0860c4;
  --cb-team-b: #e40000;

  /* ── Typography ── */
  --cb-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --cb-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --cb-font-mono: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;

  --cb-text-xs: 0.6875rem;
  --cb-text-sm: 0.8125rem;
  --cb-text-base: 0.9375rem;
  --cb-text-lg: 1.0625rem;
  --cb-text-xl: 1.1875rem;
  --cb-text-2xl: 1.375rem;
  --cb-text-3xl: 1.625rem;
  --cb-text-4xl: 2rem;

  --cb-weight-normal: 400;
  --cb-weight-medium: 500;
  --cb-weight-semibold: 600;
  --cb-weight-bold: 700;
  --cb-weight-extrabold: 800;
  --cb-weight-black: 900;

  --cb-leading-none: 1;
  --cb-leading-tight: 1.2;
  --cb-leading-snug: 1.375;
  --cb-leading-normal: 1.5;
  --cb-leading-relaxed: 1.625;

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

  /* ── Shadows ── */
  --cb-shadow-sm: 0 1px 2px rgb(0, 0, 0, 0.06);
  --cb-shadow-md: 0 1px 8px rgb(0, 0, 0, 0.12);
  --cb-shadow-lg: 0 4px 12px rgb(0, 0, 0, 0.12);
  --cb-shadow-xl: 0 6px 15px rgb(0, 0, 0, 0.16);
  --cb-shadow-focus: 0 0 0 3px rgb(8, 96, 196, 0.2);

  /* ── Radii ── */
  --cb-radius-sm: 2px;
  --cb-radius-md: 4px;
  --cb-radius-lg: 6px;
  --cb-radius-xl: 8px;
  --cb-radius-full: 9999px;

  /* ── Z-Index ── */
  --cb-z-dropdown: 100;
  --cb-z-sticky: 200;
  --cb-z-overlay: 300;
  --cb-z-modal: 400;
  --cb-z-toast: 500;

  /* ── Transitions ── */
  --cb-transition-fast: 120ms ease;
  --cb-transition-base: 200ms ease;
  --cb-transition-slow: 350ms ease;

  /* ── Layout ── */
  --cb-container-max: 1240px;
  --cb-header-h: 48px;
  --cb-sidebar-w: 280px;
  --cb-main-w: 660px;
}
