html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: black;
}

.scroll-container {
  position: relative;
  width: 2100px;
  height: 1300px;
  background-image: url("../assets/credits/background-credits.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
}

/* ===============================
   Galerie (Bilder + Pfeile darunter)
   =============================== */
   .gallery-container {
    position: absolute;
    top: 647px;
    left: 40px;
    width: 800px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index:0;
   }

.gallery-slides {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-color: black;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-controls {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.gallery-controls button {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(100, 255, 200, 0.7);
  transform: scale(1.1);
}
