/* Reset dasar */
html, body {
  margin: 0;
  padding: 0;
  width: 300px;
  height: 250px;
  overflow: hidden;
  background: #000;
  font-family: Arial, sans-serif;
}

/* Layer klik (semua area banner bisa di-klik) */
#clickLayer {
  display: block;
  width: 300px;
  height: 250px;
  text-decoration: none;
}

/* Container banner */
#banner {
  position: relative;
  width: 300px;
  height: 250px;
  overflow: hidden;
  background: #000;
}

/* Video full cover */
#banner video {
  position: absolute;
  inset: 0;
  width: 300px;
  height: 250px;
  object-fit: cover; /* penting */
}

/* Overlay (opsional) */
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none; /* biar klik tetap ke clickLayer */
}

.cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #000;
  font-weight: 700;
}