What I mean is that when defining CSS variables, it is not necessary to write it in the elements' {}, which is equivalent to a syntactic sugar, and the variables are implicitly bound to the :root element.
For example, the following two codes will be equal:
@media (max-width: 800px) {
--foo: 123;
}
@media (max-width: 800px) {
:root {
--foo: 123;
}
}