.native-jump-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(241, 66, 114, .2), transparent 34%),
    radial-gradient(circle at 8% 86%, rgba(119, 92, 231, .13), transparent 28%),
    linear-gradient(180deg, #11131a 0, #08090d 68%);
}

.native-jump-page::before,
.native-jump-page::after {
  position: fixed;
  z-index: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  filter: blur(90px);
  pointer-events: none;
}

.native-jump-page::before {
  top: -150px;
  right: -80px;
  background: rgba(241, 66, 114, .16);
}

.native-jump-page::after {
  bottom: -170px;
  left: -100px;
  background: rgba(119, 92, 231, .12);
}

.native-jump-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: calc(28px + env(safe-area-inset-top, 0px)) 18px calc(28px + env(safe-area-inset-bottom, 0px));
  display: grid;
  place-items: center;
}

.native-jump-card {
  width: min(100%, 510px);
  padding: 28px 28px 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .055), transparent 38%),
    rgba(18, 20, 27, .9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .46);
  text-align: center;
  backdrop-filter: blur(24px);
}

.native-jump-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #fff;
  text-decoration: none;
}

.native-jump-brand img {
  display: block;
  width: min(178px, 52vw);
  max-height: 46px;
  object-fit: contain;
}

.native-jump-brand strong {
  font-size: 19px;
  letter-spacing: .08em;
}

.native-jump-icon {
  width: 82px;
  height: 82px;
  margin: 30px auto 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 66, 114, .28);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(241, 66, 114, .2), rgba(241, 66, 114, .07));
  color: #ff7ba1;
  box-shadow: 0 16px 40px rgba(241, 66, 114, .13);
}

.native-jump-card.is-success .native-jump-icon {
  border-color: rgba(64, 211, 151, .3);
  background: linear-gradient(145deg, rgba(64, 211, 151, .18), rgba(64, 211, 151, .06));
  color: #65e0ac;
  box-shadow: 0 16px 40px rgba(64, 211, 151, .1);
}

.native-jump-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-jump-eyebrow {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .26em;
}

.native-jump-card.is-success .native-jump-eyebrow {
  color: #65e0ac;
}

.native-jump-card h1 {
  margin: 9px 0 12px;
  color: #fff;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.native-jump-message {
  max-width: 390px;
  margin: 0 auto;
  color: #aeb3be;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.native-jump-message a {
  color: #ff86a7;
}

.native-jump-actions {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.native-jump-actions a {
  min-height: 46px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.native-jump-countdown {
  margin: 20px 0 0;
  color: #737986;
  font-size: 11px;
}

.native-jump-countdown strong {
  min-width: 24px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 520px) {
  .native-jump-card {
    padding: 24px 18px 22px;
    border-radius: 23px;
  }

  .native-jump-icon {
    width: 72px;
    height: 72px;
    margin-top: 24px;
    border-radius: 23px;
  }

  .native-jump-actions {
    grid-template-columns: 1fr;
  }
}
