/* Age Gate overlay */
.atw-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.atw-age-gate[hidden] { display: none; }

.atw-age-gate__inner { text-align: center; max-width: 560px; }
.atw-age-gate .atw-age-gate__logo { display: block; width: 150px; height: auto; max-width: none; margin: 0 auto; }
.atw-age-gate__title { font-family: var(--font-heading); font-weight: 700; font-size: 32px; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 1rem; }
.atw-age-gate__desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-top: 1rem; }
.atw-age-gate__btns { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.atw-age-gate__btns .atw-btn { display: inline-block; text-align: center; }
.atw-age-gate__note { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.4); }

@media (min-width: 480px) {
  .atw-age-gate__btns { flex-direction: row; justify-content: center; }
  .atw-age-gate__title { font-size: 36px; }
}
