.vpcn-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 78, 146, 0.85), rgba(0, 0, 0, 0.9));
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.vpcn-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: zoomIn 0.3s ease;
  max-width: 800px;
  width: 90%;
}

.vpcn-video-wrapper {
  position: relative;
}

.vpcn-video {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.vpcn-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #004E92;
  font-size: 48px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgba(0, 78, 146, 0.4);
  transition: opacity 0.5s ease;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 78, 146, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(0, 78, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 78, 146, 0); }
}

.vpcn-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #004E92;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}
.vpcn-close:hover {
  transform: scale(1.2);
  color: #001f4d;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
