/* V9 FSL11 — variables.css — L22 ACTION SPORTS FEED
   Palette: Action Orange + Gold + Charcoal
   Primary: #FF6B35 (Action Orange)
   Accent: #FFD23F (Gold Yellow)
   Secondary: #2D3142 (Dark Charcoal)
   Neutral: #F5F5F5 (Off-white)
   Dark: #1A1A1A (Near Black)
   Brand voice: Energetic, action-focused, sports broadcast.
   Layout: news-feed style with action cards and breaking ticker.
*/

:root {
  /* Brand colors — Action Orange + Gold + Charcoal */
  --primary: #FF6B35;            /* Action Orange — broadcast alert */
  --primary-2: #FF8C5A;          /* softer action tint */
  --primary-deep: #D14820;       /* deep action for gradients */
  --primary-tint: rgba(255, 107, 53, 0.14);
  --primary-border: rgba(255, 107, 53, 0.42);
  --primary-border-soft: rgba(255, 107, 53, 0.22);

  --secondary: #2D3142;          /* Dark Charcoal — broadcast booth */
  --secondary-2: #4A4E69;
  --secondary-tint: rgba(45, 49, 66, 0.30);

  --gold: #FFD23F;               /* Trophy Gold */
  --gold-tint: rgba(255, 210, 63, 0.16);
  --gold-border: rgba(255, 210, 63, 0.42);

  /* Backgrounds — newsroom black + action */
  --background: #1A1A1A;         /* near-black broadcast backdrop */
  --background-2: #0F0F0F;
  --surface: #2D3142;            /* card surface — charcoal */
  --surface-2: #3A3F52;          /* elevated surface */
  --surface-3: #4A4E69;          /* top surface */

  /* Text — readable broadcast white */
  --text: #F5F5F5;               /* Off-white copy */
  --text-2: #E8E8E8;
  --muted: #B0B3C1;
  --muted-2: #6C7080;

  /* Lines */
  --soft-border: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 210, 63, 0.18);
  --rule: rgba(255, 107, 53, 0.18);

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Type */
  --font-display: 'Barlow', 'Inter', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Inter', system-ui, sans-serif;

  /* Speed */
  --t-fast: 0.18s ease;
  --t: 0.28s cubic-bezier(.2,.7,.2,1);

  /* Layout */
  --container: 1180px;
  --header-h: 64px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
}
