html.age-gate-lock,
html.age-gate-lock body {
  height: 100%;
  overflow: hidden !important;
}

#age-gate {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0,0,0,0.86) !important;
}

#age-gate .age-gate-bg {
  position: absolute !important;
  inset: 0 !important;
  background: url("/assets/img/no.gif") center / cover no-repeat !important;
  opacity: 0.35;
  filter: contrast(1.05) brightness(0.75);
}

#age-gate .age-gate-content {
  position: relative !important;
  z-index: 1 !important;
  max-width: 680px;
  width: calc(100% - 44px);
  padding: 44px 40px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
}

#age-gate h1 {
  font-size: 28px;
  letter-spacing: 4px;
  margin: 0 0 18px 0;
}

#age-gate p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

#age-gate p.sub {
  opacity: 0.88;
  font-size: 13px;
}

#age-gate .age-gate-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

#age-gate .age-gate-actions button {
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
}

#age-gate #age-confirm {
  background: #fff;
  color: #000;
}

#age-gate #age-deny {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.8);
}

#age-gate .age-gate-brand {
  margin-top: 28px;
  opacity: 0.8;
  font-size: 13px;
  letter-spacing: 0.5px;
}

#age-gate.age-gate-hide {
  animation: ageGateFade 0.6s ease forwards;
}

@keyframes ageGateFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
