/* Boot CSS — fonts + the reset the shell needs before React mounts.
   Lives here rather than inline because there are now TWO html entries
   (index.html and fte.html) and a duplicated <style> block would drift. */
@font-face {
  font-family: 'Selecta';
  src: url('/fonts/Selecta-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Selecta';
  src: url('/fonts/Selecta-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Selecta';
  src: url('/fonts/Selecta-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body, #root { height: 100%; width: 100%; overflow: hidden; }
body {
  font-family: 'Selecta', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  body { background: #fafafa; }
}
