.homepage-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-popup {
  position: relative;
  background: #fff;
  max-width: 90%;
  width: 800px;
  max-height: 90%;
  overflow: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: homepage-popup-in 0.25s ease-out;
}

@keyframes homepage-popup-in {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.homepage-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  padding: 0;
}

.homepage-popup-close:hover {
  color: #000;
}

.homepage-popup-link {
  display: block;
  font-size: 0;
  line-height: 0;
}

.homepage-popup-image {
  width: 100%;
  height: auto;
  display: block;
}

.homepage-popup-text {
  padding: 15px;
  font-size: 15px;
  background: rgb(81, 81, 81);
  color: rgb(255, 255, 255);
}
