User Agent is: Mozilla/5.0 (Linux; Android 7.0; TECNO WX3P Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Mobile Safari/537.36.
The instructions are “add another background declaration right before the existing declaration and set its value to red”.
Just before the background: var(--red-color); line, you need to add a fallback - a simpler instruction that older browsers can understand if they can’t understand the later instruction. Because CSS is cascading style sheets, the older rule is applied until the later one works.
Set the background to red immediately before the line using a CSS variable.