/* ============================================
   CHAMPION-INSPIRED SPORTS THEME
   Dark Navy + Bright Yellow + Bold Typography
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Archivo:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* ---- Primary Palette ---- */
  --primary: #FFE733;
  --primary-hover: #FFD700;
  --primary-dark: #E6CF00;
  --primary-glow: rgba(255, 231, 51, 0.15);
  --primary-text: #0a0a0a;

  /* ---- Dark Navy ---- */
  --navy: #081224;
  --navy-light: #0e1a30;
  --navy-lighter: #162a4a;
  --navy-card: #12203a;
  --navy-border: #263f66;

  /* ---- Neutral ---- */
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* ---- Status ---- */
  --success: #22c55e;
  --success-bg: rgba(34, 197, 94, 0.12);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.12);

  /* ---- Theme Tokens (Light Mode) ---- */
  --bg: #f0f2f5;
  --bg-card: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-input: #ffffff;
  --bg-hover: #f5f5f5;
  --bg-hero: linear-gradient(135deg, #081224 0%, #0f1d38 40%, #162a4a 100%);
  --border: #e0e0e0;
  --border-focus: var(--primary);
  --text: #0a0a0a;
  --text-secondary: #525252;
  --text-muted: #a3a3a3;
  --text-on-dark: #ffffff;
  --text-on-primary: #0a0a0a;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(255, 231, 51, 0.2);

  /* ---- Sizes ---- */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --nav-height: 72px;
  --topbar-height: 40px;
  --sidebar-width: 260px;
  --max-width: 1280px;

  /* ---- Typography ---- */
  --font-heading: 'Mulish', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-ui: 'Inter', sans-serif;

  /* ---- Transitions ---- */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --bg: #0b1628;
  --bg-card: #12203a;
  --bg-sidebar: #0e1a30;
  --bg-input: #182c4e;
  --bg-hover: #1d345a;
  --border: #263f66;
  --border-focus: var(--primary);
  --text: #f5f7fa;
  --text-secondary: #b0bfd4;
  --text-muted: #6e829e;
  --shadow: 0 2px 6px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(255, 231, 51, 0.2);
}
