
/* Затемнённый фон */
.popup-overlay {
  display: none; /* Скрыт по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
}

/* Контент попапа */
.popup-content {
  position: fixed; /* фиксированно, а не relative */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* смещаем в центр */
  max-width: 400px;
  width: 90%; /* чтобы на мобилках не вылезало */
  padding: 20px;
  border-radius: 10px;
  background: #080b13;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 
              0 0 40px rgba(255, 255, 255, 0.6);
}

/* Кнопка закрытия */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
    color: white;
}

