h3 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    
    /* Растягиваем градиент пошире для анимации */
    background: linear-gradient(120deg, #ffae00, #fff0ad, #ff8c00, #ffae00);
    background-size: 200% auto;
    
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
    /* Привязываем анимацию */
    animation: textFlicker 3s linear infinite;
    display: inline-block;
}

@keyframes textFlicker {
    0% { 
        background-position: 0% center; 
        filter: brightness(1);
    }
    50% { 
        background-position: 100% center; 
        filter: brightness(1.3); /* Эффект вспышки */
    }
    100% { 
        background-position: 200% center; 
        filter: brightness(1);
    }
}
