.boot-fallback {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  min-height: 100vh;
  padding: 24px;
  background: #141b26;
  color: #211915;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.boot-fallback[hidden] {
  display: none;
}

.boot-fallback__card {
  width: min(100%, 420px);
  box-sizing: border-box;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background: #fffaf5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  text-align: center;
}

.boot-fallback__logo {
  display: block;
  margin: 0 auto 14px;
  border-radius: 18px;
}

.boot-fallback__eyebrow {
  margin: 0 0 6px;
  color: #f15a32;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.boot-fallback h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.boot-fallback__card > p:not(.boot-fallback__eyebrow) {
  margin: 12px auto 22px;
  color: #7b6b62;
  font-size: 16px;
  line-height: 1.55;
}

.boot-fallback button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #f4512e, #ff7b20);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.boot-fallback button:focus-visible {
  outline: 3px solid #142b51;
  outline-offset: 3px;
}

.boot-fallback button:disabled {
  opacity: 0.7;
}
