/* === stylepopup.css (Popup Gate Styles) === */

:root {
  /* Define variables used by the popup */
  --gold: #b8860b; 
  --green: #2e3b2e;
  /*--green: #2e3b2e; #002D5B*/
}
#popupGate {
  position: fixed;
  left: 0;
  bottom: -100%; /* Start off-screen */
  width: 100%;
  height: auto;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: bottom 0.8s ease;
  padding: 20px 0;
  /* top/height will be set by popup-gate.js on load */
  top: 0; 
  height: 100vh;
}
#popupGate.show { 
  bottom: 0; 
}
#popupGate .popup-box {
  /* background: rgba(212, 175, 55, 0.95); */
  background: rgba(47,59,47,0.95); 
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 25px 30px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
}
#popupGate input {
  width: 100%;
  padding: 4px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #555;
  background: var(--green);
  color: #fff;
  font-size: 14px;
}
#popupGate button {
  width: 60%;
  padding: 12px;
  background: var(--gold);
  color: #fff;
  border: 2px solid #fff;;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
}
#popupSuccess { 
  display:none; 
  color:var(--gold); 
  font-weight:600; 
  margin-top:10px; 
}