@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 33, 18, 0.96); /* #142112 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  max-width: 620px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.6s ease-out;
  font-family: 'Source Sans Pro', sans-serif;
  border-left: 8px solid #f07c00;
}



.popup-content h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #f07c00;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.popup-content p,
.popup-content li {
  font-size: 15.5px;
  color: #333;
  line-height: 1.7;
}

.popup-content ul {
  margin: 15px 0 20px 18px;
  padding: 0;
}

.popup-content a {
  color: #f07c00;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.popup-content a:hover {
  text-decoration: underline;
  color: #d86e00;
}

.popup-content b {
  font-weight: 600;
  color: #000;
}

.popup-content .footer {
  text-align: right;
  margin-top: 25px;
  font-style: italic;
  font-size: 14px;
  color: #444;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background-color: #f07c00;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(240, 124, 0, 0.3);
}

.popup-close svg {
  stroke: white;
  transition: transform 0.3s ease;
}

.popup-close:hover {
  background-color: #d86e00;
  transform: rotate(90deg);
}

.popup-close:hover svg {
  transform: scale(1.2);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 24px 20px;
  }

  .popup-content h2 {
    font-size: 18px;
  }

  .popup-content p,
  .popup-content li {
    font-size: 14px;
  }

  .popup-close {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}
