/* =========================================================================
   Age verification gate — full-viewport overlay shown to first-time,
   signed-out, non-bot visitors (see includes/age_gate_modal.stpl for the
   markup/logic; hidden by default here so it never flashes for anyone the
   inline script decides to skip). No backdrop-dismiss / no close button on
   purpose — the visitor has to pick one of the two buttons.
   ========================================================================= */

.age-gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(46, 26, 46, 0.72);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.age-gate-overlay.is-visible {
  display: flex;
}

.age-gate-card {
  background: var(--paper);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(46, 26, 46, 0.35);
  max-width: 420px;
  width: 100%;
  padding: 2rem 1.75rem;
  text-align: center;
}

.age-gate-title {
  font-family: var(--font-display);
  color: var(--velvet);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.age-gate-text {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate-actions .btn {
  min-width: 110px;
}
