.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 10, 25, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.promo-popup-overlay.show {
  display: flex;
  opacity: 1;
}

.promo-popup {
  position: relative;
  width: min(70vw, 900px);
  max-height: 90vh;
  border-radius: 22px;
  overflow: hidden;
  background: #020817;
  box-shadow: 0 24px 80px rgba(0, 102, 255, 0.45);
}

.promo-popup-overlay.show .promo-popup {
  transform: scale(1) translateY(0);
}

.promo-popup-link {
  display: block;
  line-height: 0;
}

.promo-popup-img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: #ffffff;
  font-size: 32px;
  line-height: 34px;
  cursor: pointer;
  transition: 0.25s ease;
}

.promo-popup-close:hover {
  background: #ffffff;
  color: #06142f;
  transform: rotate(90deg);
}

body.popup-active {
  overflow: hidden;
}

@media (max-width: 768px) {
  .promo-popup-overlay {
    padding: 14px;
  }

  .promo-popup {
    width: min(94vw, 430px);
    border-radius: 18px;
  }

  .promo-popup-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 28px;
    line-height: 30px;
  }
}