body {
  margin: 0;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.animated-gif {
  width: 800px;
  height: 450px;
}

.counter {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

#marquee-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  padding: 12px 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeAnimation 10s linear infinite;
}

@keyframes marqueeAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#lastfm-art {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 86vw;
  height: vh;
  object-fit: cover;
  filter: blur(10px) brightness(40%);
  transition: filter 0.3s ease, transform 0.3s ease;
  z-index: -1;
  transform: translate(-50%, -50%);
}

#lastfm-art:hover {
  filter: blur(0px) brightness(100%);
  transform: scale(1.05);
}

#lastfm-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50000px;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

