.shoe-swing {
    transform-origin: top center; /* висит на гвозде */
    animation: swing 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(4deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}
.rotate-text {
  animation: spin 25s linear infinite;
  transform-origin: center center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-item {
  display: inline-block;
  width: 120px;
  margin-right: 50px;
  animation: logoScroll 15s linear infinite;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1200px);
  }
}
.sunlight-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.sun-ray {
  position: absolute;
  width: 200px;
  height: 200%;
  top: -50%;
  background: linear-gradient(
    120deg,
    rgba(255, 220, 150, 0) 0%,
    rgba(255, 220, 150, 0.08) 50%,
    rgba(255, 220, 150, 0) 100%
  );
  filter: blur(40px);
  opacity: 0;
  transform: rotate(20deg);
  animation: moveRay linear infinite;
}

@keyframes moveRay {
  0% {
    transform: translateX(-200px) rotate(20deg);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateX(120vw) rotate(20deg);
    opacity: 0;
  }
}

/* мягкий общий свет */
.sun-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle, rgba(255, 210, 140, 0.12), transparent 60%);
  animation: glowPulse 10s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.15; }
}
