#ageverify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  display: none; /* escondido por defeito, JS decide mostrar */
  align-items: center;
  justify-content: center;
}

#ageverify-popup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ageverify-popup {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#ageverify-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#ageverify-logo img {
  height: auto;
}

#ageverify-popup p {
  margin-top: 140px;
  margin-bottom: 0;
}

.ageverify-buttons {
  margin-top: 20px;
  text-align: center;
}

.ageverify-buttons button {
  margin: 0 10px;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

body.ageverify-locked {
  overflow: hidden;
}
