.gsp-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.gsp-popup.is-active {
  display: flex;
}

.gsp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.gsp-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  z-index: 1;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.gsp-close {
  position: absolute;
  top: 6px;
  right: 10px;
  border: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  z-index: 2;
}

.gsp-media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85vw;
  max-height: 85vh;
  background: #000;
}

.gsp-media img,
.gsp-media video {
  display: block;
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}

body.gsp-no-scroll {
  overflow: hidden;
}
