  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
}

.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 300vw; /* 3 slide x 100vw */
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 100vw;
  height: 100vh;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo di tengah layar */
.logo-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  height: auto;
  z-index: 10;
}

/* Gambar overlay kiri dan kanan */
.overlay-kiri,
.overlay-kanan {
  position: absolute;
  width: auto;
  height: auto;
  max-height: 90vh;
  max-width: 90vw;
  z-index: 10;
}

.overlay-kiri {
  bottom: 0px;
  left: 120px;
}

.overlay-kanan {
  bottom: 0px;
  right: 0px;
}

/* Navigasi panah */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  z-index: 3;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}

/* Teks berjalan di bawah tengah */
.slide-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
  height: 50px;
  line-height: 50px;
  color: white;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0 20px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 5;
}
