/* Animaciones complementarias */

@keyframes nkGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.nk-glitch {
    animation: nkGlitch 0.3s ease-in-out;
}

.nk-inferno-mode {
    filter: saturate(1.5) contrast(1.2);
}

.nk-inferno-mode .nk-fire-particles .nk-particle {
    width: 8px !important;
    height: 8px !important;
}

@media (max-width: 768px) {
    .nk-cursor {
        display: none;
    }
}