#vp-ads {
  width: 1150px;
  max-width: 100%;
  overflow: hidden;
  transition: height .6s ease;
  position: relative;
  /* El color se aplicará desde el JS, este es el respaldo */
  background-color: #000; 
}

#vp-banner {
  position: relative;
  height: auto;
  cursor: pointer;
}

#vp-banner img {
  width: 100%;
  height: auto;
  display: block;
}

#vp-video-container {
  display: none;
  width: 100%;
  text-align: center;
  position: relative;
  cursor: pointer;
}

#vp-video {
  display: block;
  margin: auto;
  border: 0;
  position: relative;
  z-index: 5;
}

.ads-side-link {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: none;
  z-index: 3;
}
.ads-side-link.left { left: 0; }
.ads-side-link.right { right: 0; }

#ads-open-btn,
.ads-cerrar {
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#ads-open-btn-container {
  position: absolute;
  bottom: 2px;
  right: 10px;
}

#ads-close-container {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  color: #fff;
  position: absolute;
  bottom: 1px;
  right: 10px;
  z-index: 20;
}

#ads-cta-btn {
  background: #222222;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

#ads-counter {
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  border-radius: 4px;
}

@media(max-width:768px){
  #vp-banner { height: auto; }
}