/* =====================================================
   background.css – AVM NETWORKS LIMITED
   PURPOSE:
   - Website global background ONLY
   - Background-dependent text color
   ❌ NO layout
   ❌ NO components
===================================================== */

body {
    background: linear-gradient(
        135deg,
        #020617,
        #0B3A6E,
        #020617
    );

    /* Text color chosen for dark background */
    color: #E5E7EB;
}
