/* Shrine Media — the DOM is intentionally almost empty. Everything visible is
   painted to offscreen canvases and cross-dissolved in a WebGL shader. */

/* Optional: drop a real brush face at assets/fonts/brush.woff2 and it takes
   priority over the marker fallback everywhere the brush lettering is used. */
@font-face {
  font-family: 'ShrineBrush';
  src: url('../assets/fonts/brush.woff2') format('woff2'),
       url('../assets/fonts/brush.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  touch-action: none;
}

body { cursor: none; }

#gl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
}

#a11y {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

#noscript {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: #fff;
  color: #000;
  z-index: 10;
  padding: 2rem;
}
#noscript h1 { font-weight: 700; letter-spacing: .08em; }
#noscript a  { color: #000; }
