/* Mobile: auto loop PlayStation-color glow per letter */ @media (hover: none) and (pointer: coarse) { #word .y { animation: pulse-green 3s .8s infinite alternate ease-in-out; } #word .o1 { animation: pulse-red 3s 1.0s infinite alternate ease-in-out; } #word .l { animation: pulse-blue 3s 1.2s infinite alternate ease-in-out; } #word .o2 { animation: pulse-pink 3s 1.4s infinite alternate ease-in-out; } } @keyframes pulse-green { from { filter:none; fill:#fff; } to { filter:url(#glow-1); fill:#00ff00; } } @keyframes pulse-red { from { filter:none; fill:#fff; } to { filter:url(#glow-2); fill:#ff0000; } } @keyframes pulse-blue { from { filter:none; fill:#fff; } to { filter:url(#glow-3); fill:#0066ff; } } @keyframes pulse-pink { from { filter:none; fill:#fff; } to { filter:url(#glow-4); fill:#ff33cc; } }