.ai-gradient-text {
    /* Define your custom colors */
    --mv-blue: #006bab;
    --mv-red: #ed1b24;

    /* Create a gradient that repeats to allow for smooth animation */
    background: linear-gradient(
        to right, 
        var(--mv-blue), 
        var(--mv-red), 
        var(--mv-blue)
    );
    
    /* Make the background 200% width so we can slide it */
    background-size: 200% auto;
    
    /* Clip the background to the text and make text transparent */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Add the animation */
    animation: shine 3s linear infinite;
    
    /* Visual polish */
    font-weight: bold;
    display: inline-block;
}

/* The animation logic */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}