#promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
}

#promo-box {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  cursor: default;
  position: relative;
}

#promo-image img {
  width: 100%;
  height: auto;
  display: block;
}

#promo-close {
  display: block;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  color: #666;
  background: #111;
  border: none;
  cursor: pointer;
  width: 100%;
}

#promo-close:hover {
  color: #ff2d78;
}