/* OVERLAY (full screen background) */
#age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: black;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* POPUP CARD */
.age-popup {
  width: 100%;
  max-width: 420px;

  margin: 0 20px; /* ← THIS creates real side spacing */

  text-align: center;
  background: white;
  padding: 30px 25px 35px;
  border-radius: 8px;
}

/* CHARACTER IMAGE */
.age-popup img {
  width: 75%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}


/* MAIN QUESTION */
.age-popup h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 23px;
  color: black;
  margin: 0 0 10px;
}

/* SUBTEXT */
.age-popup p {
  font-family: 'Lato', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 13px;
  color: black;
  margin: 0 0 25px;
}

/* BUTTON */
.age-confirm {
  display: inline-block;
  padding: 18px 28px;

  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;

  background-color: #50528d;
  color: white;
  border-radius: 6px;

  border: none;
  box-shadow: none;       /* remove shadow */
  outline: none;          /* remove focus glow */
  appearance: none;       /* remove default styling */
  -webkit-appearance: none;

  cursor: pointer;
  transition: opacity 0.2s ease;
}

.age-confirm:hover {
  opacity: 0.85;
}

