body {
  margin: 0;
  font-family: sans-serif;
}

/* Overlay */
#popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* Popup */
#popup-box {
  background-color: #f0ece4;
  background-size: cover;
  background-position: center;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  color: #000000;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#popup-box .popup-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 16px;
}

#popup-box .popup-text {
  font-size: 1em;
  margin-bottom: 24px;
  line-height: 1.4em;
}

#popup-box .popup-buttons .popup-btn {
  display: inline-block;
  margin: 5px 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

#popup-box .popup-buttons .primary-btn {
  background-color: #fd312e;
  color: white;
}

#popup-box .popup-buttons .primary-btn:hover {
  background-color: #fd312e;
}

#popup-box .popup-buttons .secondary-btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fd312e;
}

#popup-box .popup-buttons .secondary-btn:hover {
  background-color: rgba(255,255,255,0.3);
}
