/* Popup-Styling */
#download-popup, #donation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.popup-content {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: popupFadeIn 0.4s ease forwards;
  font-family: 'Helvetica Neue', sans-serif;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #333;
}

.popup-content p {
  margin: 0.5rem 0;
  color: #555;
}

.popup-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.popup-btn {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popup-btn:hover {
  filter: brightness(1.1);
}

.popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

@keyframes popupFadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-divider {
  margin: 1.5rem 0 1rem;
  height: 1px;
  background: #eee;
}


.ig-button {
    padding: 6px 15px;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }

.white {
    color: white
}

.justify-self-center {
    justify-self: center;
};



