.modal-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}
.modal-window {
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.15);
  width: 380px;
  min-width: 260px;
  max-width: 95vw;
  height: 72px; /* высота примерно три строки */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  pointer-events: all;
  animation: slideUp 0.5s;
  padding: 0 36px 0 18px;
  overflow: hidden;
}
@keyframes slideUp {
  from { transform: translateY(100%);}
  to { transform: translateY(0);}
}
.modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}
.modal-text {
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: normal;
}
.modal-link {
  color: #2e73e7;
  text-decoration: underline;
}