.gate-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
  	backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gate-hidden {
  display: none !important;
}

.gate-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  max-width: 420px;
  width: calc(100% - 40px);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.gate-box img{
	width: 35%;
}


.gate-box h2 {
  color: #8b0000;
  margin: 0 0 10px 0;
  font-size: 24px;
}

.gate-box p {
  color: #000000;
  margin: 0 0 20px 0;
  font-size: 14px;
}

.gate-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-enter, .btn-exit, .lang-btn {
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-enter {
  background: #2e7d32; /* darkish green */
}

.btn-exit {
  border: 2px solid #8b0000; /* dark red */
  color: #8b0000;
}

.lang-btn{
      border: 2px solid #8b0000; /* darkish green */
      color:  #8b0000;
      display: flex;
      gap: 10px;
}

.lang-btn img{
    max-width: 30px;
}

.btn-enter:hover, .btn-exit:hover {
  opacity: 0.85;
}

#age-verification-logo h2{
	font-size: 12px; 
	color: #000;
}


