#game-container {
    position: relative;
    width: 400px;
    max-width: 100%;
    height: auto;
    background: #000;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 60px; /* ボタン用のスペース */
}

#gameCanvas {
    border: 1px solid #fff;
    display: block;
    width: 100%;
    height: auto;
}

#controls {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #333;
}

#controls button {
    padding: 10px 20px;
    font-size: 16px;
    background: #555;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
    touch-action: manipulation; /* タッチ操作のスムーズ化 */
}

#controls button:active {
    background: #777;
}

/* スマートフォン向けの調整 */
@media (max-width: 600px) {
    #game-container {
        width: 100%;
    }

    #gameCanvas {
        width: 100%;
        height: auto;
    }

    #controls button {
        padding: 8px 15px;
        font-size: 14px;
    }
}