.wf-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.78));
}

.wf-age-overlay--hidden {
  display: none;
}

.wf-age-modal {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(135deg, rgba(248, 244, 239, 0.98), rgba(228, 213, 196, 0.96));
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-medium);
}

.wf-age-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-3);
}

.wf-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: radial-gradient(circle at 30% 20%, var(--color-danger), var(--color-gold));
  color: #fff;
}

#wf-age-title {
  font-size: var(--font-size-2xl);
}

.wf-age-body p {
  margin-bottom: var(--space-3);
}

.wf-age-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.wf-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-4);
}

.wf-age-btn {
  width: 100%;
}

@media (min-width: 480px) {
  .wf-age-actions {
    flex-direction: row;
  }

  .wf-age-btn {
    width: auto;
    flex: 1;
  }
}

/* Helper: prevent background scroll while overlay is active */
body.wf-age-lock-scroll {
  overflow: hidden;
}
