.custom-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.custom-popup.show {
  display: flex;
}
.custom-popup-inner {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: fadeInScale 0.4s ease-out;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.popup-image {
  background: url('https://static.tildacdn.com/tild6338-3138-4435-b466-336231626436/1.jpg') center/cover no-repeat;
  height: 180px;
}
.popup-button {
  display: inline-block;
  margin: 20px 0 10px;
  padding: 12px 24px;
  background-color: #d65b35;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.popup-button:hover {
  background-color: #c44e2c;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95) }
  to { opacity: 1; transform: scale(1) }
}