/* Glowing Blinking Text Animation for M-SHOP MOBILE SYSTEM */
.glowing-text {
    animation: shimmer 3s linear infinite, textGlow 2.5s ease-in-out infinite, textBlink 4s ease-in-out infinite !important;
}

/* Blinking/Pulsing Effect */
@keyframes textBlink {

    0%,
    100% {
        opacity: 1;
        text-shadow:
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(0, 255, 136, 0.4);
    }

    10% {
        opacity: 0.9;
        text-shadow:
            0 0 15px rgba(0, 255, 136, 1),
            0 0 30px rgba(0, 255, 136, 0.8),
            0 0 45px rgba(0, 212, 255, 0.6);
    }

    20% {
        opacity: 1;
        text-shadow:
            0 0 20px rgba(0, 212, 255, 1),
            0 0 40px rgba(0, 255, 136, 0.9),
            0 0 60px rgba(0, 212, 255, 0.7);
    }

    30% {
        opacity: 0.85;
        text-shadow:
            0 0 10px rgba(0, 212, 255, 0.7),
            0 0 20px rgba(0, 212, 255, 0.5),
            0 0 30px rgba(0, 255, 136, 0.3);
    }

    40%,
    60% {
        opacity: 1;
        text-shadow:
            0 0 15px rgba(0, 255, 136, 0.9),
            0 0 30px rgba(0, 212, 255, 0.7),
            0 0 45px rgba(0, 255, 136, 0.5);
    }

    70% {
        opacity: 0.95;
        text-shadow:
            0 0 25px rgba(0, 212, 255, 1),
            0 0 50px rgba(0, 255, 136, 1),
            0 0 75px rgba(0, 212, 255, 0.8);
    }

    80% {
        opacity: 0.9;
        text-shadow:
            0 0 15px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(0, 255, 136, 0.6),
            0 0 45px rgba(0, 212, 255, 0.4);
    }
}

/* Enhanced shimmer with color shift */
@keyframes shimmer {
    0% {
        background-position: 0% center;
        filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.9));
    }

    25% {
        background-position: 50% center;
        filter: drop-shadow(0 0 25px rgba(0, 255, 136, 1));
    }

    50% {
        background-position: 100% center;
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1));
    }

    75% {
        background-position: 150% center;
        filter: drop-shadow(0 0 25px rgba(0, 255, 136, 1));
    }

    100% {
        background-position: 200% center;
        filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.9));
    }
}

/* Enhanced glow pulse */
@keyframes textGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.9));
    }

    25% {
        filter: drop-shadow(0 0 35px rgba(0, 255, 136, 1));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 1));
    }

    75% {
        filter: drop-shadow(0 0 35px rgba(0, 255, 136, 1));
    }
}