        /* Use background-color (not background) so gradient can overlay */
        body {
            background-color: #000000 !important;  /* Solid black fallback */
        }

        /* Mobile: Force gradient without CSS variables */
        @media (max-width: 768px) {
            body {
                background-color: #000000 !important;
                background-image: linear-gradient(135deg, #000000 0%, #0a0f0a 50%, #1a2f1a 100%) !important;
            }
        }
