#age-verification-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;         
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

#age-verification-popup .popup-content {
  background-color: white;
  color: #fff;
  padding: 60px;
  border-radius: 10px;
  max-width: 800px;  
  width: 90%;  
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  text-align: center;
  margin: 0 auto;
}

#age-verification-popup .popup-content h2 {
    color: var(--brand-secondary);
}

#age-verification-popup .error-message {
  display: none;
  color: red;
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 960px) {
    #age-verification-popup .popup-content {
        padding: 20px;
    }
    #age-verification-popup .popup-content h2 {
        font-size: 26px;
    }   
}
