/* Efeito Glitch replicado do 404.html */
.glitch-text {
    position: relative;
    /* Usa a cor danger para dar o efeito vermelho */
    text-shadow: 2px 0 #EF4444;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0F19;
}
.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #00FF94; /* Usa o verde Velozitty */
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
    clip-path: inset(0 0 0 0);
}
.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00FF94; /* Usa o Verde Velozitty */
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    clip-path: inset(0 0 0 0);
}
/* Replicando os keyframes de glitch do 404.html */
@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}
@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 10% 0); }
    40% { clip-path: inset(70% 0 20% 0); }
    60% { clip-path: inset(20% 0 40% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(0% 0 90% 0); }
}
