html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Блокировка прокрутки при открытом модальном окне */
body.modal-open {
  overflow: hidden;
}

/* Анимации для появления окна */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from { 
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to { 
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-animate-in {
  animation: modalFadeIn 0.2s ease-out, modalSlideIn 0.3s ease-out;
}

/* Адаптивность для мобилок */
@media (max-width: 640px) {
  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    margin: 1rem;
  }
  .modal-form-input {
    padding: 1rem;
    font-size: 16px;
  }
}