/* Popup Styles */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
}

.popup-banner {
  background: linear-gradient(135deg, var(--passport-blue), var(--passport-dark));
  color: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: relative;
}

.popup-overlay.show .popup-banner {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close-btn:hover {
  color: white;
}

.popup-title {
  color: var(--passport-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.popup-message {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

.popup-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.popup-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.popup-btn-primary {
  background: var(--passport-gold);
  color: var(--passport-dark);
}

.popup-btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.popup-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-banner {
    padding: 1.5rem;
    max-width: 95%;
    margin: 1rem;
  }
  
  .popup-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .popup-message {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .popup-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .popup-btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}