#popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

#close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  color: white;
  border: none;
  font-size: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-weight: normal;   /* Make the X not bold */
  line-height: 1;
  transition: background-color 0.3s ease;
  border-radius: 0; /* square shape */
}

#close-btn:hover,
#close-btn:focus {
  background-color: red;
  color: white;
}


.popup-text {
  font-family: Arial, sans-serif;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  background: #f9f9f9;
}

.cta-link {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
}

.cta-link:hover {
  text-decoration: underline;
}
