.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 9, 13, 0.88);
  display: grid;
  place-items: center;
  z-index: 9999;
  padding: 1.5rem;
  animation: age-gate-fade 200ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .age-gate-backdrop { animation: none; }
}
@keyframes age-gate-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.age-gate-card {
  max-width: 440px;
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  color: var(--fg);
}
.age-gate-card h2 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--accent);
}
.age-gate-card p {
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0.75rem 0;
}
.age-gate-card .age-gate-confirm {
  font-weight: 600;
  color: var(--fg);
  margin-top: 1.25rem;
}
.age-gate-card .age-gate-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.age-gate-reset {
  margin-top: 0.75rem;
  font-size: 0.75rem;
}
.age-gate-reset a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.age-gate-reset a:hover { color: var(--accent); }
