/* ==========================================================================
   TOXINTECH BRANDING & THEME CONFIGURATION - COMPUTATIONAL ENGINE DARK
   ========================================================================== */

/* FORCE DARK-FIRST DEEP TECH ENGINE VALUES AS DEFAULT */
:root, html[data-theme="dark"] {
    --bg-color: #171938;           /* Midnight obsidian deep-space canvas       --bg-color: #0b1329; */
    --text-main: #f1f5f9;          /* Balanced mid-tone crisp slate-white (perfect clarity, zero glare) */
    --text-muted: #cbd5e1;         /* Highly legible secondary silver-slate for descriptions */
    --text-heading: #ffffff;       /* Pure white reserved exclusively for crisp structural titles */
    
    /* Branding Accent: High-Pop Bioluminescent Teal */
    --accent-color: #14b8a6;       /* Clean, bright computational teal */
    --accent-light: #2dd4bf;       
    --accent-muted: rgba(20, 184, 166, 0.08); 
    
    --border-color: rgba(255, 255, 255, 0.1); /* Low-impact structural boundaries */
    --card-bg: rgba(10, 20, 42, 0.5);       
    --card-hover-border: rgba(20, 184, 166, 0.4); 
    --selection-bg: #14b8a6;       
    --selection-text: #050a15;     
    --footer-text: #64748b;        /* Balanced slate for footer copyrights */
}

/* FALLBACK LIGHT MODE (ONLY IF EXPLICITLY SWITCHED BY SYSTEM RIGS) */
html[data-theme="light"] {
    --bg-color: #ffffff;
    --text-main: #334155;          
    --text-muted: #475569;         
    --text-heading: #0f172a;       
    --accent-color: #14b8a6;       
    --accent-light: #0d9488;       
    --accent-muted: #f0fdfa;       
    --border-color: #e2e8f0;       
    --card-bg: rgba(248, 250, 252, 0.5); 
    --card-hover-border: #ccfbf1;  
    --selection-bg: #ccfbf1;       
    --selection-text: #0f172a;     
    --footer-text: #64748b;        
}