.whats-new-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 25, 23, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  animation: wnFade 0.25s ease;
}
.whats-new-sheet {
  width: min(420px, 100%);
  background: linear-gradient(165deg, #fff7ed 0%, #ffffff 55%, #ecfeff 100%);
  border-radius: 1.1rem 1.1rem 0.85rem 0.85rem;
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
  animation: wnSlide 0.3s ease;
}
.whats-new-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c2410c;
}
.whats-new-sheet h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #1c1917;
}
.whats-new-sheet ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: #44403c;
  font-weight: 600;
  line-height: 1.45;
}
.whats-new-sheet li + li { margin-top: 0.45rem; }
@keyframes wnFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes wnSlide {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
@media (min-width: 720px) {
  .whats-new-overlay { align-items: center; }
  .whats-new-sheet { border-radius: 1.1rem; }
}
