.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: no-repeat center / cover;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  width: 400px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  z-index: 0;
}

.popup-content * {
  position: relative;
  z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* серая тень за текстом */

}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.popup-title {
  font-size: 20px;
  margin: 0 0 10px;
}

.popup-text {
  font-size: 14px;
  margin: 0 0 20px;
}

.popup-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff9800;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .popup-content {
    width: 90%;
  }
  .popup-title {
    font-size: 18px;
  }
  .popup-text {
    font-size: 13px;
  }
}
