/* ===== AGE POPUP – СТИЛЬ ПІД ЗЕЛЕНИЙ САЙТ ===== */

.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* біла картка з легким тіньом */
.age-popup-box {
  max-width: 520px;
  width: 90%;
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid #222222;
  padding: 30px 26px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
}

/* заголовок як на головній */
.age-popup-box h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
}

/* текст */
.age-popup-box p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: #444444;
}

/* посилання всередині тексту – зелений акцент */
.age-popup-box p a {
  color: #f00ef8;
  font-weight: 600;
  text-decoration: underline;
}

/* кнопка підтвердження – така ж, як "RECEBA O BÔNUS" */
.age-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60%;
  border: none;
  border-radius: 999px;
  padding: 11px 32px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  background: #f00ef8;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.age-btn-main:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.age-btn-main:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* "Sair" – просте текстове посилання */
.age-exit-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* блокування скролу, поки попап відкритий */
body.age-locked {
  overflow: hidden;
}
