
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 620px;
  width: 90%;
  text-align: center;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.popup-content img {
  display: block;
  width: 100%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 28px;
  cursor: pointer;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
