/* プリローダー全画面オーバーレイ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* キャンバスは正方形200px */
#preloader canvas {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px;
  max-height: 200px;
  display: block;
}

/* フェードアウト用クラス */
#preloader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* メインコンテンツは最初隠す */
#main-content.hidden {
  opacity: 0;
  pointer-events: none;
}
#main-content.visible {
  opacity: 1;
  transition: opacity 0.8s ease;
}