.circular-text-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.circular-text {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  font-weight: 900;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transform-origin: 50% 50%;
  animation: rotate 20s linear infinite;
  transition: animation-duration 0.3s ease;
}

.circular-text.speed-up {
  animation-duration: 5s;
}

.circular-text.slow-down {
  animation-duration: 40s;
}

.circular-text.paused {
  animation-play-state: paused;
}

.circular-text span {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 20px;
  font-weight: 900;
  transition: all 0.3s cubic-bezier(0, 0, 0, 1);
  text-shadow: 0 0 10px rgba(255,122,24,.5);
}

.circular-text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: grid;
  place-items: center;
  animation: float 6s ease-in-out infinite;
}

.circular-text-center img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,122,24,.7));
  animation: emberPulse 3s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-6px);
  }
}

@keyframes emberPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

