/* ==========================================================
   Exe.Gaming — Base
   リセット / body / 共通要素スタイル
   ========================================================== */
*,*::before,*::after { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-jp);
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  /* position: relative は付けない: 負の z-index 子要素が body 背景の上に出ない挙動を維持 */
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--bg); }
