.mq-launch-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  place-items: center;
  padding: env(safe-area-inset-top) 24px env(safe-area-inset-bottom);
  color: #172033;
  background: #f4f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mq-launch-shell__content {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.mq-launch-shell__mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: #ff8b2b;
  border-radius: 15px;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 139, 43, .22);
}

.mq-launch-shell strong {
  font-size: 17px;
  letter-spacing: .02em;
}

.mq-launch-shell span:last-child {
  color: #7a8495;
  font-size: 12px;
}

.mq-launch-shell__spinner {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 2px solid rgba(90, 113, 154, .2);
  border-top-color: #5b8cff;
  border-radius: 50%;
  animation: mq-launch-spin .8s linear infinite;
}

@keyframes mq-launch-spin {
  to { transform: rotate(360deg); }
}

@media (display-mode: standalone) {
  html,
  body {
    margin: 0;
    background: #080b10;
  }

  .mq-launch-shell {
    color: #f5f7fb;
    background: #080b10;
  }

  .mq-launch-shell span:last-child {
    color: #7e8999;
  }
}
