@keyframes matrix { 0% { transform: translateY(-100%); } 100% { transform: translateY(100vh); } }
body { background: #000; color: #0f0; font-family: monospace; overflow: hidden; }
.matrix { position: absolute; animation: matrix 3s linear infinite; }