/* ─── AGE GATE (shared across all pages) ─── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: #04A12B;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
  font-family: 'Roboto Slab', serif;
}
.age-gate.dismissed { opacity: 0; visibility: hidden; pointer-events: none; }
/* Verified visitors / bots: hide instantly so there is no flicker
   while the deferred styles or transitions catch up. */
html.age-verified .age-gate { display: none; }
.age-gate-card {
  background: #04A12B; border-radius: 24px; padding: 56px 48px;
  text-align: center; max-width: 440px; width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  position: relative; overflow: hidden;
}
.age-gate-logo {
  height: 80px; width: 80px; margin: 0 auto 24px;
  display: block; border-radius: 50%;
}
.age-gate h2 {
  font-family: 'Cartoonist Kooky', cursive;
  font-size: 2.2rem; color: #FFFFFF;
  margin: 0 0 10px; font-weight: normal;
}
.age-gate p {
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  margin: 0 0 32px; line-height: 1.6;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate-yes {
  font-family: 'Roboto Slab', serif; font-weight: 700; font-size: 1.1rem;
  background: #D3FF00; color: #0D0D0D;
  padding: 14px 40px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.age-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,255,0,0.3); }
.age-gate-no {
  font-family: 'Roboto Slab', serif; font-weight: 700; font-size: 0.9rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 14px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.age-gate-no:hover { border-color: #FFFFFF; color: #FFFFFF; }
@media (max-width: 480px) {
  .age-gate-card { padding: 44px 24px; }
  .age-gate-yes { padding: 14px 28px; font-size: 1rem; }
  .age-gate-no { padding: 14px 22px; font-size: 0.85rem; }
  .age-gate-buttons { gap: 10px; }
}
