.st-app-redirect-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(16, 163, 217, 0.22), transparent 38%),
    linear-gradient(160deg, #0f1733 0%, #1b1a38 42%, #243a6b 100%);
  color: #fff;
}

.st-app-redirect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  overflow: hidden;
}

.st-app-redirect__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 0 26rem),
    radial-gradient(circle at 80% 15%, rgba(16, 163, 217, 0.28), transparent 0 22rem),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.14), transparent 0 20rem);
  pointer-events: none;
}

.st-app-redirect__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  background: rgba(8, 13, 30, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  text-align: center;
}

.st-app-redirect__brand {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.st-app-redirect__icon {
  width: 88px;
  height: 88px;
  border-radius: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.st-app-redirect__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.st-app-redirect__title {
  font-size: clamp(2rem, 5vw, 2.9rem);
}

.st-app-redirect__text,
.st-app-redirect__help,
.st-app-redirect__status-text {
  margin: 0;
}

.st-app-redirect__text {
  color: rgba(255, 255, 255, 0.82);
}

.st-app-redirect__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.st-app-redirect__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: #fff;
  border-radius: 50%;
  animation: st-app-redirect-spin 0.8s linear infinite;
}

.st-app-redirect__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.st-app-redirect__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.st-app-redirect__button:hover,
.st-app-redirect__button:focus-visible {
  transform: translateY(-1px);
}

.st-app-redirect__button--ios {
  background: #fff;
  color: #111;
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.16);
}

.st-app-redirect__button--android {
  background: linear-gradient(135deg, #10a3d9, #69dbff);
  color: #041625;
  box-shadow: 0 16px 34px rgba(16, 163, 217, 0.34);
}

.st-app-redirect__help {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@keyframes st-app-redirect-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .st-app-redirect__panel {
    padding: 2rem 1.25rem;
    border-radius: 1.6rem;
  }

  .st-app-redirect__title {
    font-size: 1.85rem;
  }

  .st-app-redirect__status {
    width: 100%;
  }
}
