 /* Стили для переливания цвета текста */
        @keyframes gradientText {
            0% { background-clip: text; color: transparent; }
            25% { background-clip: text; color: #4633af; }
            50% { background-clip: text; color: transparent; }
            75% { background-clip: text; color: #4633af; }
            100% { background-clip: text; color: transparent; }
        }

        /* Уникальный стиль для конкретного span с классом "uniqueSpan" */
        .uniqueSpan {
            background-image: linear-gradient(90deg, #4633af, #4633af);
            background-clip: text;
            color: transparent;
            animation: gradientText 5s infinite;
        }
		
		
		
  