.vppg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.vppg-item {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  object-fit: cover;
}

.vppg-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.vppg-popup video {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}