.ws-popup-mask {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.72);
}
.ws-popup-mask[hidden] {
  display: none !important;
}
.ws-popup-shell {
  width: min(1180px, 96vw);
  height: min(92vh, 920px);
  max-width: 96vw;
  max-height: 92vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0b0e;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.ws-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101014;
}
.ws-popup-head strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}
.ws-popup-x {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #e4e4e7;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ws-popup-x:hover {
  background: rgba(255, 255, 255, 0.08);
}
.ws-popup-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #09090b;
}
body.ws-popup-open {
  overflow: hidden;
}
