body {
  margin: 0;
  background-color: #121212;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

.marquee-wrapper {
  background-color: #1a1a1a;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
}

.marquee-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 15px;
}

.marquee-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee-track img {
  height: 120px;
  margin: 0 30px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px #9b59b6;
}

/* Die wichtigste Animation */
@keyframes scroll {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
