.footer-version-button {
  appearance: none;
  border: 2px solid rgba(39, 50, 74, 0.22);
  background: rgba(255, 250, 240, 0.72);
  color: #5f6979;
  border-radius: 999px;
  padding: 5px 9px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  box-shadow: 2px 2px 0 rgba(31, 41, 55, .08);
}
.footer-version-button span {
  opacity: .78;
  font-weight: 700;
}
.footer-version-button:hover,
.footer-version-button:focus-visible {
  color: #27324a;
  background: #fffaf0;
  border-color: #27324a;
  outline: none;
}
.update-log-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(31, 41, 55, .42);
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  transition: opacity .18s ease;
}
.update-log-backdrop.open { opacity: 1; }
.update-log-backdrop[hidden] { display: none; }
.update-log-card {
  width: min(720px, 96vw);
  max-height: min(82vh, 760px);
  background: #fffaf0;
  color: #27324a;
  border: 4px solid #27324a;
  border-radius: 24px;
  box-shadow: 10px 10px 0 rgba(31, 41, 55, .18);
  padding: 22px;
  position: relative;
  font-family: inherit;
  transform: translateY(8px) scale(.99);
  transition: transform .18s ease;
}
.update-log-backdrop.open .update-log-card { transform: translateY(0) scale(1); }
.update-log-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 3px solid #27324a;
  border-radius: 12px;
  background: #fff;
  color: #27324a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-weight: 900;
}
.update-log-kicker {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: #7c6f5d;
  padding-right: 46px;
}
.update-log-card h2 {
  margin: 8px 46px 6px 0;
  font-size: clamp(24px, 4vw, 34px);
}
.update-log-intro,
.update-log-privacy {
  color: #5f6979;
  font-weight: 700;
  line-height: 1.5;
}
.update-log-scroll {
  margin: 16px 0;
  max-height: min(48vh, 430px);
  overflow: auto;
  padding-right: 8px;
}
.update-log-entry {
  border: 3px solid rgba(39, 50, 74, .18);
  border-radius: 18px;
  background: #fffdf8;
  padding: 14px;
  margin-bottom: 12px;
}
.update-log-entry h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 17px;
}
.update-log-entry h3 em {
  font-style: normal;
  font-size: 11px;
  background: #c95b5b;
  color: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}
.update-log-entry ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.55;
  color: #374151;
  font-weight: 700;
}
.update-log-button {
  width: 100%;
  border: 3px solid #27324a;
  border-radius: 14px;
  background: #fff;
  color: #27324a;
  padding: 11px 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  margin-top: 14px;
  box-shadow: 4px 4px 0 rgba(31, 41, 55, .12);
}
.update-log-button.primary { background: #27324a; color: #fffaf0; }
@media (max-width: 620px) {
  .footer-version-button {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
  .update-log-card { padding: 18px; border-radius: 18px; }
  .update-log-entry h3 { align-items: flex-start; flex-direction: column; }
}
