        /* Gradient Animation */
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .animate-gradient-fast {
            background-size: 300% 300%;
            animation: gradientMove 6s ease infinite;
        }
