/* New file for circle animations and stream image */
.circle-animation {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  background-image: url('https://i.imgur.com/S3hbFyW.png');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  transition: all 0.3s ease;
}

.artist-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 100px;
  overflow: hidden;
}

.artist-image iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.artist-image.visible {
  opacity: 1;
}

/* Text change animations */
@keyframes textFadeOut {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes textFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.text-changing {
  animation: textFadeOut 0.3s ease-out forwards;
}

.text-changed {
  animation: textFadeIn 0.3s ease-out forwards;
}

@media (max-width: 992px) {
  .circle-animation {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .circle-animation {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .circle-animation {
    width: 200px;
    height: 200px;
  }
}