/* AllayPay / RUO compliance additions — 2026-09-26 */

/* Per-product RUO note */
.ruo-note {
  font-size: 12px;
  color: #9fb3c8;
  font-style: italic;
  margin: 6px 0 4px;
}

/* Footer disclaimer */
.footer-ruo-disclaimer {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(159, 179, 200, 0.25);
  border-radius: 8px;
  background: rgba(26, 35, 51, 0.5);
}
.footer-ruo-disclaimer p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #9fb3c8;
  text-align: center;
}

/* 18+ age gate overlay */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: rgba(5, 8, 15, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-gate[hidden] { display: none; }
.age-gate-card {
  max-width: 460px;
  width: 100%;
  background: #0d1524;
  border: 1px solid rgba(159, 179, 200, 0.3);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  color: #f0f6fc;
  font-family: Inter, system-ui, sans-serif;
}
.age-gate-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.age-gate-card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: #9fb3c8;
}
.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-actions button {
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}
#age-gate-yes {
  background: #0f88c8;
  color: #fff;
}
#age-gate-yes:hover { background: #0d7ab4; }
#age-gate-no {
  background: transparent;
  color: #9fb3c8;
  border-color: rgba(159, 179, 200, 0.4);
}
#age-gate-no:hover { color: #f0f6fc; }
