

/* Improve focus rings for accessibility */
:focus-visible {
  outline: 3px solid rgba(168, 85, 247, 0.6); /* fuchsia-500 */
  outline-offset: 2px;
}

/* Paragraph font */
p {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: large;
}

/* No sideways scroll + stable layout on mobile */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-x: none;
}

/* Images never cause overflow */
img { max-width: 100%; height: auto; }

/* Smooth top layout */
* { box-sizing: border-box; }
