/* Tombol Toggle */
#darkPromoToggle {
  position: fixed;
  left: 0;
  top: 188px;
  background: rgba(255,255,255,.9); /* hitam transparan */
  color: #333;
  padding: 10px 14px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 0, 0, 0.85);  /* merah Ferrari agak gelap */
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}
.promo-title {
  font-weight: 600;
  font-size: 12px;
}

/* Dot Pulse */
.darkPromo-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00ff00; /* hijau */
  animation: darkPromoPulse 1.5s infinite;
}
@keyframes darkPromoPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Panel Sliding */
#darkPromoPanel {
  position: fixed;
  left: -320px; /* hidden awal */
  top: 0;
  height: 100%;
  width: 300px;
  background: rgba(0,0,0,0.7); /* hitam transparan */
  color: #fff;
  padding: 20px;
  z-index: 10000;
  transition: left 0.4s ease;
}
#darkPromoPanel.active {
  left: 0 !important; /* slide masuk */
}

.darkPromo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.darkPromo-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.darkPromo-link {
  display: inline-block;
  background: #007AFF;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size:12px;
}
.darkPromo-link:hover {
  background: #005BBB;
}
.darkPromo-content p {
  font-size: 0.4rem;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #ddd;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* bayangan halus */
}