.uc-pastel-gradient {
    background: linear-gradient(to right, #d9ccee, #e6d1a7);
}

.uc-pastel-gold-gradi {
    background: linear-gradient(to right, #fdf2d0, #f7e4a9, #eed491);
}


.uc-pastel-gold-s {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #fdf2d0, #f7e4a9, #eed491);
}

.uc-pastel-gold-s::before,
.uc-pastel-gold-s::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 15%, transparent 20%);
  background-size: 100px 100px;
  opacity: 0;
  animation: sparkle 2s infinite ease-in-out;
}

.uc-pastel-gold-s::after {
  animation-delay: 1s;
  background-size: 120px 120px;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2) rotate(10deg);
  }
}




/* Основной стиль для блока */
.uc-gold-shimmer-bloc {
    position: relative;
    background: linear-gradient(45deg, #ffd700, #f1bc37, #ffd700, #f1bc37);
    background-size: 200% 200%;
    animation: shimmer 2s linear infinite;
    overflow: hidden;
    padding: 50px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 15px;
}

/* Анимация для переливающегося фона */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Стили для мерцающих блесток (звезд) */
.gold-shimmer-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 2%, transparent 2.01%);
    background-size: 20px 20px;
    animation: sparkle 3s linear infinite;
}

/* Анимация для мерцания блесток */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
    }
    30% {
        opacity: 0.3;
    }
}

/* Дополнительные блестки для более сложного эффекта */
.gold-shimmer-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1%, transparent 1.05%);
    background-size: 30px 30px;
    animation: sparkle 4s linear infinite;
}