### Describe the bug Valid CSS does not compile. ```css li:nth-of-type(10) {color: red;} /* breaks */ li:nth-of-type(10n) {color: green;} /* breaks */ li:nth-of-type(10n+1) {color: blue;} /* breaks */ li:nth-of-type(1n+10) {color: yellow;} /* works */ ``` ### Reproduction ```svelte <style> li:nth-of-type(10n) {color: red;} li:nth-of-type(11) {color: green;} </style> <ol> {#each new Array(12) as x, i} <li>{i+1}</li> {/each} </ol> ``` [REPL Svelte 5 variant](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAAA22OQQqDMBBFrxKmG6WKTZdpEDxH7SLoWANpIklsKyF3byKUbroZ5g_vPybAJBU6YNcAWjwQGHTLAhX4bcnBPVF5TNmZ1Q75wp3fFLa97r2STPu5NlOd6YKedEnCYJSxjFgcL_EfRH_M3SLqTPHmK-VGpRkOKIaZaHyRzlqxFfRcEuHIuyJyl_aeK9kGeaSRN2lLlSZXdldSpIcfZpSTxBGYtyvGW_wA6GwEEOsAAAA=) does not compile in v5.0.0-next.26. gives ``` Error compiling App.svelte Expected a valid CSS identifier line 2 column 16 ``` [REPL Svelte 4 variant](https://svelte.dev/repl/3c876de26e474f4f88654e66aaf9e45b?version=4.2.8) compiles. ### Logs ```shell - ``` ### System Info ```shell REPL - v5.0.0-next.26 ``` ### Severity blocking an upgrade