.new2-popup {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 100dvh;
  padding: clamp(18px, 4vw, 56px);
  overflow: auto;
  background: #081426;
  color: #f7f3e8;
}

.new2-popup[hidden] {
  display: none;
}

.new2-popup__panel {
  position: relative;
  width: min(760px, 100%);
  box-sizing: border-box;
  padding: clamp(32px, 6vw, 70px) clamp(22px, 6vw, 72px);
  border: 1px solid #d9b65f;
  border-radius: 22px;
  background: #10233e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  text-align: center;
}

.new2-popup__close {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 2147483647;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .08);
  font: 400 9px/1 sans-serif;
  opacity: .12;
  cursor: pointer;
}

.new2-popup__close:hover,
.new2-popup__close:focus-visible {
  color: rgba(255, 255, 255, .55);
  opacity: .7;
}

.new2-popup__title {
  margin: 0 0 18px;
  color: #f2c968;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.25;
}

.new2-popup__content {
  margin: 0 auto 30px;
  max-width: 36em;
  color: #eef3fb;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.9;
  white-space: pre-line;
}

.new2-popup__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #f2c968;
  color: #10213a;
  font: 800 16px/1.2 inherit;
  text-decoration: none;
  cursor: pointer;
}

.new2-popup__action:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.new2-popup__close:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .45);
  outline-offset: 1px;
}

@media (max-width: 520px) {
  .new2-popup {
    padding: 12px;
  }

  .new2-popup__panel {
    border-radius: 16px;
  }
}
