/* Hapus semua CSS slider lama, ganti dengan ini */
.banner-slider-container {
  width: 95%;
  max-width: 1300px;
  margin: 20px auto;
}

.banner-slider-container h2 {
  font-size: 1.5rem;
  color: 0.25turn, #1e0a75, #a400b3, #ff2e70, #00aeff, #400080; /* Sesuaikan sama warna background hitam */
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #F97316;
  display: inline-block;
}

.banner-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 180px; /* Tinggi banner yang kamu inginkan */
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

.banner-btn-prev {
  left: 10px;
}

.banner-btn-next {
  right: 10px;
}

.banner-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.banner-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.banner-overlay h3 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.banner-overlay p {
  font-size: 0.9rem;
  margin: 0;
}

.telegram-banner .banner-overlay {
  background: linear-gradient(to top, rgba(0,136,204,0.8), transparent);
}

.facebook-banner .banner-overlay {
  background: linear-gradient(to top, rgba(66,103,178,0.8), transparent);
}

.banner-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.indicator-dot.active {
  background: #F97316;
  width: 30px;
  border-radius: 6px;
}

/* Responsif HP */
@media (max-width: 768px) {
  .banner-slider-wrapper {
    height: 120px;
  }
  
  .banner-overlay h3 {
    font-size: 1rem;
  }
  
  .banner-overlay p {
    font-size: 0.75rem;
  }
}
