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

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

.popup-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  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: linear-gradient(135deg, #eab308 0%, #ff9800 100%);
  color: #2d1614;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 auto;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(234, 179, 8, 0.4);
}

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