/* Super Bowl Theme - Navy, Orange, Gold */
:root {
  /* Primary Colors */
  --primary-color: #1a2744;      /* Deep Navy Blue */
  --primary-light: #2d3f5f;      /* Lighter Navy */
  --primary-dark: #0f1829;       /* Darker Navy */

  /* Accent Colors */
  --accent-color: #ff6b35;       /* Vibrant Orange */
  --accent-hover: #e55a2b;       /* Orange hover state */

  /* Highlight Colors */
  --highlight-color: #ffd93d;    /* Championship Gold */
  --highlight-muted: #e6c235;    /* Muted Gold */

  /* Field/Secondary */
  --field-green: #2d7a3f;        /* Football field grass */
  --field-green-light: #3d9a4f;  /* Lighter grass accent */

  /* Neutral Colors */
  --background-color: #f8f9fa;   /* Clean white/gray */
  --background-alt: #ffffff;     /* Pure white for cards */
  --text-color: #1a1a1a;         /* Near-black for readability */
  --text-muted: #6c757d;         /* Muted text */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a2744 0%, #2d3f5f 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8f5a 100%);
  --gradient-hero: linear-gradient(135deg, #1a2744 0%, #2d3f5f 50%, #1a2744 100%);
}
