/* Full-bleed minimal layout for CFAX */
:root{
  --bg:#000;
  --fg:#0f0;
}
html,body{
  height:100%;
  background:var(--bg);
}
body{
  margin:0;
}
.site-main{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.cfax-container{
  width: min(96vw, 1100px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
/* Make the teletext screen scale responsively */
#cfax-app .cfax-screen{
  width: min(100vw - 24px, 960px);
  height: auto;
  aspect-ratio: 640 / 384;
}
#cfax-app canvas{
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
/* Center controls and reduce clutter */
#cfax-app .cfax-controls{
  width:100%;
  max-width:960px;
  display:flex;
  gap:8px;
  justify-content:flex-start;
}
/* Minimal fallback notice */
.cfax-missing{
  color:#fff;
  font-family:'CFAX Teletext', system-ui, sans-serif;
  text-align:center;
}
/* Hide WP elements that add chrome */
.site-main > .wp-block-post-title, .site-main .entry-header{ display:none; }
