/* ページの体裁 */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Meiryo, sans-serif;
  color: #e7e7e7;
  background: #0b0e16;
  text-align: center;
}
h1.site-title{
  position: fixed;      /* または absolute */
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 9999;
  pointer-events: none; /* クリックをシーンに通す */
  margin: 0;
}
footer { padding: 10px 0 16px; font-size: 12px; color: #9aa3b2; }

/* A-Frame シーンの枠 */
a-scene {
  width: 88vw;
  height: 70vh;
  margin: 10px auto 16px;
  border: 2px solid #334155;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
