.beta-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(214, 166, 55, .14), transparent 34%),
    linear-gradient(180deg, rgba(2, 5, 7, .72), rgba(2, 5, 7, .94));
  color: #f4e5c6;
}

.beta-splash[hidden] {
  display: none !important;
}

.beta-splash-panel {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid #c99a31;
  background:
    linear-gradient(90deg, rgba(10, 16, 19, .96), rgba(24, 17, 10, .94)),
    url('/assets/realm-command-v1.png') center / cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .78), inset 0 0 0 1px rgba(255, 220, 132, .12);
}

.beta-splash-head {
  padding: 30px 34px 22px;
  border-bottom: 1px solid rgba(201, 154, 49, .44);
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28));
}

.beta-splash-kicker,
.beta-splash-card small {
  display: block;
  color: #ffd465;
  font: 900 12px/1 Arial, sans-serif;
  letter-spacing: .16em;
}

.beta-splash h2 {
  margin: 9px 0 8px;
  color: #fff2d4;
  font: 700 42px/1.04 Georgia, serif;
  letter-spacing: 0;
  text-shadow: 0 3px 16px #000;
}

.beta-splash-head p {
  max-width: 610px;
  margin: 0;
  color: #d8ccb6;
  font: 17px/1.5 Georgia, serif;
}

.beta-splash-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 154, 49, .28);
}

.beta-splash-card {
  min-width: 0;
  padding: 22px 26px;
  background: rgba(7, 12, 14, .86);
}

.beta-splash-card strong {
  display: block;
  margin-top: 8px;
  color: #fff6de;
  font: 700 23px/1.12 Georgia, serif;
  letter-spacing: 0;
}

.beta-splash-card p {
  margin: 9px 0 0;
  color: #c6baa5;
  font: 15px/1.48 Arial, sans-serif;
}

.beta-splash-wide {
  grid-column: 1 / -1;
}

.beta-splash-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px 24px;
  background: rgba(3, 8, 10, .92);
}

.beta-splash-foot p {
  margin: 0;
  color: #b8ad9a;
  font: 14px/1.45 Arial, sans-serif;
}

.beta-splash-foot button {
  box-sizing: border-box;
  min-width: 190px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #f1c75a;
  border-radius: 6px;
  background: linear-gradient(#ddb24a, #a16e15);
  color: #120b03;
  font: 900 12px/1 Arial, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 244, 200, .45), 0 12px 22px rgba(0, 0, 0, .35);
}

.beta-splash-foot button:hover,
.beta-splash-foot button:focus-visible {
  background: linear-gradient(#f0c95d, #b9831d);
  outline: 2px solid rgba(255, 220, 132, .56);
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .beta-splash {
    padding: 12px;
  }

  .beta-splash-head {
    padding: 24px 22px 18px;
  }

  .beta-splash h2 {
    font-size: 32px;
  }

  .beta-splash-body {
    grid-template-columns: 1fr;
  }

  .beta-splash-card {
    padding: 18px 22px;
  }

  .beta-splash-foot {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 22px 22px;
  }

  .beta-splash-foot button {
    width: 100%;
  }
}
