/* Cairo Play — loaded from Google Fonts CDN */
@import url('https://fonts.googleapis.com/css2?family=Cairo+Play:wght@200..1000&display=swap');

/* Dark base background — applied globally so no flash of white */
html, body {
  background-color: #0b1722 !important;
  color-scheme: dark;
}

/*
  Override the engine's compiled font rules.
  !important is required because public/_astro/_slug_.B97dlsMJ.css
  has high-specificity font-family rules for every element.
*/
html, body,
button, input, textarea, select,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, label {
  font-family: "Cairo Play", sans-serif !important;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
}
