/* =============================================================
   NBA LINEUP ANALYZER — THEME CONFIGURATION
   =============================================================
   HOW TO UPDATE:
   When the theme builder gives you a new config, paste the
   :root { } block below, replacing everything inside it.
   This is the ONLY file that needs to change for a full
   visual retheme of the entire app.

   CURRENT THEME: Default (Orange Ember / Navy / Dark)
   ============================================================= */

:root {
    /* --- Primary Action Color (Mapped from Target --accent3) --- */
    --primary:        #3FABFB;
    --primary-dark:   #2E94D8; /* Slightly darker shade for hover states */
    --primary-glow:   rgba(63, 171, 251, 0.5);

    /* --- Secondary Color (Mapped from Target --accent1) --- */
    --secondary:      #8AA6C6;
    --secondary-dark: #6E8CAE;

    /* --- Accent (Mapped from Target --accent2) --- */
    --accent:         #B8C7D9;

    /* --- Semantic Data Colors (Standardized) --- */
    --success:        #06D6A0;
    --danger:         #EF476F;

    /* --- Backgrounds (Mapped from Target BGs) --- */
    --dark:           #0B2E5A; /* Target --bg */
    --dark-card:      rgba(10, 42, 82, 0.95); /* Target --bg-card */
    --dark-surface:   #081C36; /* Target --bg-card2 */

    /* --- Text --- */
    --text:           #F3F7FF; /* Target --text-primary */
    --text-muted:     #B6C3D6; /* Target --text-secondary */

    /* --- Borders --- */
    --border:         rgba(138, 166, 198, 0.28);

    /* --- Typography --- */
    --font-display:   'Merriweather', sans-serif;
    --font-body:      'Merriweather', sans-serif;

    /* --- Derived / computed values --- */
    --primary-rgb:    63, 171, 251;
    --secondary-rgb:  138, 166, 198;
    --dark-rgb:       11, 46, 90;
}
/* =============================================================
   PASTE INSTRUCTIONS:
   Replace ALL values inside :root { } above with those from
   the theme builder export. The builder auto-calculates the
   --*-rgb derived vars so rgba() calls stay in sync.
   ============================================================= */