/* Подготовка кнопки с бликом */
.shine-btn {
  position: relative;
  overflow: hidden;
}

/* Блик поверх кнопки */
.shine-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: shine 2s ease-in-out infinite;
}

/* Кадры анимации */
@keyframes shine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

/* Прячем "Made on Tilda" по ссылке на домен */
a[href*="tilda.cc"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
