.cebs-vp-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: #003c71; /* CEBS navy */
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cebs-vp-btn:hover {
  background: #00529b;
}

/* Overlay */

.cebs-vp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cebs-vp-overlay.cebs-vp-open {
  display: flex;
}

/* Modal */

.cebs-vp-modal {
  background: #000;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.cebs-vp-modal video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Close button */

.cebs-vp-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

/* Logo overlay */

.cebs-vp-video-wrapper {
  position: relative;
}

.cebs-vp-logo-overlay {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 5;
}

.cebs-vp-logo-overlay img {
  width: 120px;
  opacity: 0.9;
}

/* Mobile tweaks */

@media (max-width: 768px) {
  .cebs-vp-modal {
    max-width: 95% !important;
    padding: 8px;
  }

  .cebs-vp-logo-overlay img {
    width: 90px;
  }
}
