
.site-takeover-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-takeover-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.site-takeover-popup__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.site-takeover-popup__link {
  display: block;
  line-height: 0;
}

.site-takeover-popup__image {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.site-takeover-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.site-takeover-popup__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.site-takeover-popup__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}