Input ```css .bar { --color: pink; color: var(--color); } .bar:active { --color: blue; } .bar:hover { --color: red; } .bar:focus { --color: green; } ``` Expected ```css .bar { color: pink; } .bar:active { color: blue; } .bar:hover { color: red; } .bar:focus { color: green; } ``` Will be transformed to (Actual) 😞 ```css .bar { color: pink; } .bar:focus { color: green; } .bar:hover { color: green; } .bar:active { color: green; } ```