/* ===========================================================================
   Pretence Games & Pretencify — Base element styling
   Minimal, opinionated resets that apply the brand defaults globally.
   =========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font: var(--type-body-md);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  color: var(--text-strong);
  font-family: var(--font-serif);
  font-weight: var(--fw-semibold);
  line-height: 1.15;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--pg-violet-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

hr {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: var(--space-6) 0;
}
