/* Cheer Me Up Mountain v1.0.5 - tighter spacing */
.cmu-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 60vh;
  text-align: center;
}
.cmu-message{
  min-height: 2.6em;
  max-width: 60ch;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.25;
  text-wrap: balance;
  color: var(--cmu-msg-text, #e9eff6);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1000ms ease, transform 1000ms ease, margin 1000ms ease;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}
.cmu--shown .cmu-message{
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 32px;
}
.cmu-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  font-weight: 700;
  line-height: 1;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  color: var(--cmu-btn-text, #f7fbff);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition: transform 1000ms cubic-bezier(.2,.7,.2,1), opacity 1000ms ease, filter 1000ms ease;
}
.cmu-wrap:not(.cmu--shown) .cmu-btn:hover{
  transform: translateY(0) scale(1.03);
  filter: saturate(105%) brightness(105%);
}
.cmu--shown .cmu-btn{
  transform: translateY(48px) scale(.95);
  opacity: .92;
  filter: saturate(92%) brightness(96%);
}
