html.age-gate-locked {
  overflow: hidden;
}

#age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(4, 4, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-modal {
  background-color: var(--bg-elevated);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.age-gate-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.age-gate-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-gate-actions .btn {
  width: 100%;
}

.age-gate-decline {
  background: none;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 13px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.age-gate-decline:hover {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

.age-gate-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin: 16px 0 0;
}
