* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.app-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.open-link {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(0 0 0 / 48%);
  color: rgb(255 255 255 / 86%);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  backdrop-filter: blur(16px);
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.open-link:hover {
  color: #fff;
  background: rgb(0 0 0 / 64%);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .open-link {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }
}
