#findroom-agegate-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.86);
  z-index: 999999;
}
#findroom-agegate-box {
  background: #fff;
  max-width: 680px;
  width: calc(100% - 32px);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  animation: findroomFade .18s ease-out;
}
#findroom-agegate-box .findroom-logo {
  max-height: 64px;
  width: auto;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}
#findroom-agegate-box .findroom-heading {
  margin: 6px 0 10px;
  line-height: 1.15;
}
#findroom-agegate-box .findroom-message {
  margin: 8px 0 14px;
  line-height: 1.45;
}
#findroom-agegate-box .terms {
  color: #666;
  margin: 6px 0 18px;
}
#findroom-agegate-box .terms a {
  text-decoration: underline;
}
#findroom-agegate-box .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
#findroom-agegate-box .findroom-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: transform .06s ease, filter .2s ease;
}
#findroom-agegate-box .findroom-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
#findroom-agegate-box #findroom-exit {
  background: #eee;
  color: #222;
}
@keyframes findroomFade { from { opacity: 0; transform: scale(.98);} to { opacity:1; transform: scale(1);} }

/* Small screens */
@media (max-width: 420px){
  #findroom-agegate-box { padding: 22px; border-radius: 16px; }
  #findroom-agegate-box .findroom-btn { padding: 10px 14px; }
}