/* FULLSCREEN BACKDROP */
#age-gate {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Value Sans', system-ui, Arial, sans-serif;
}

/* WRAPPER */
#age-gate .box {
  text-align: center;
  max-width: 500px;
  padding: 40px;
  border: 2px solid #000;
  border-radius: 16px;
  background: #fff;
}

/* QUESTION TEXT */
#age-gate h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

/* BUTTONS CONTAINER */
#age-gate .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BUTTONS */
#age-gate button {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

#age-gate button.yes {
  background: #fae053;
  color: #000;
}

#age-gate button.yes:hover {
  background: #e0cc48;
}

#age-gate button.no {
  background: #000;
  color: #fff;
}

#age-gate button.no:hover {
  background: #222;
}