/* 基本設定 */
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-color: #111; /* 初期背景色 */
}

/* 感情エフェクトを描画するキャンバス */
#effect-canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 表情認識に使うビデオ (画面には表示しない) */
#video {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0; /* 完全に透明にする */
    pointer-events: none; /* マウスイベントを無効化 */
    z-index: -1; /* 他の要素の背後に隠す */
}

/* ローディング画面のスタイル */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    text-align: center;
    z-index: 10;
    transition: opacity 0.5s ease;
}

#loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

#loading-overlay .message {
    padding: 20px;
}