/* Ruyagram Animations - Ritual & Mysticism */

/* 1. Pulse Slow (Breathing Effect) */
@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

/* 2. Nebula Drift (Background Movement) */
@keyframes nebula-drift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 3. Fade In Up (Content Reveal) */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 4. Glow Pulse (For Buttons) */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 20px rgba(127, 19, 236, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(127, 19, 236, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(127, 19, 236, 0.2);
    }
}

.animate-glow {
    animation: glow-pulse 3s infinite;
}

/* 5. Shimmer (Text or Border) */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}