body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-banner {
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

/* Tombol navigasi */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-btn.left {
  left: 15px;
}

.nav-btn.right {
  right: 15px;
}

/* Kontrol bawah */
.banner-controls {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#togglePlay {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.notice {
    background-color: #f5f5f5;
    color: #000000;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.tab-menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.tab-menu a {
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.tab-menu a.active,
.tab-menu a:hover {
    color: #4f46e5;
    border-color: #4f46e5;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1rem;
}

.product-card img {
    width: 100%;
    height: auto;
    padding: 1rem;
}

.product-card h3 {
    font-size: 1rem;
    margin: 0.5rem 1rem;
    color: #111827;
}

.earned {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.product-card button {
    background-color: #4f46e5;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.product-card button:hover {
    background-color: #4338ca;
}

@media (min-width: 640px) {
  .top-banner {
    height: 300px; /* Lebih tinggi untuk tablet dan desktop */
  }
}

#bannerSlides > div {
  background-size: cover;
  background-position: center;
}

footer {
    background-color: #282c34;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}