.whatsnew-splash {
  position: fixed;
  inset: 0;
  z-index: 14000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.whatsnew-splash[hidden] {
  display: none;
}

body.whatsnew-splash-open {
  overflow: hidden;
}

.whatsnew-splash__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(5px);
}

.whatsnew-splash__panel {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  color: var(--color-text-default);
  background: var(--color-surface);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.whatsnew-splash__link {
  display: block;
  padding: 2rem 2rem 1.25rem;
  color: inherit;
  text-decoration: none;
}

.whatsnew-splash__link:hover .whatsnew-splash__cta {
  text-decoration: underline;
}

.whatsnew-splash__eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsnew-splash h2 {
  margin: 0 0 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.18;
}

.whatsnew-splash p {
  margin: 0;
  color: var(--color-text-muted, #5f6b7a);
  font-size: 1rem;
  line-height: 1.5;
}

.whatsnew-splash__cta {
  display: inline-block;
  margin-top: 1.35rem;
  color: var(--color-accent);
  font-weight: 700;
}

.whatsnew-splash__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

@media (max-width: 560px) {
  .whatsnew-splash {
    align-items: end;
    padding: 0;
  }

  .whatsnew-splash__panel {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .whatsnew-splash__link {
    padding: 1.5rem 1.25rem 1rem;
  }

  .whatsnew-splash__actions {
    flex-direction: column-reverse;
    padding: 1rem 1.25rem 1.25rem;
  }

  .whatsnew-splash__actions .bapBtn {
    width: 100%;
  }
}
