body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center; /* これで子要素（game-container）は中央に配置される */
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.game-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px; /* 白い背景の幅を維持 */
    /* ★ここを調整して、全体を平行移動させる★ */
    /* 現在の位置から右にずらす場合は正の値、左にずらす場合は負の値 */
    transform: translateX(0px); /* 初期値として0px。ここを開発者ツールで調整！ */
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.problem {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
}

.operator {
    font-size: 2.5em;
    margin-right: 15px;
    color: #555;
    padding-bottom: 2px;
}

.number-boxes {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    grid-template-rows: repeat(2, 50px);
    gap: 10px;
}

.box {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    border-radius: 5px;
}

.answer-input {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    padding: 0;
    box-sizing: border-box;
}

.answer-input.correct {
    border-color: #28a745;
    background-color: #e6ffe6;
}

.answer-input.incorrect {
    border-color: #dc3545;
    background-color: #ffe6e6;
}

.intermediate-results {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; /* これが中間結果全体を中央に配置 */
    width: 100%;
}

.intermediate-results .row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: flex-end; /* 右端揃え */
}

/* 2行目の中間結果のずれ */
.intermediate-results .row.shift-left-1 {
    margin-left: -60px;
}

/* 3行目の中間結果のずれ */
.intermediate-results .row.shift-left-2 {
    margin-left: -120px; /* 直近で調整された値 */
}

.fixed-zero {
    background-color: #f8f8f8;
    color: #888;
}

.final-result {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    margin-left: 20px; /* 以前の調整値 */
    margin-right: auto;
    max-width: fit-content;
}

hr {
    border: none;
    border-top: 2px solid #333;
    /* 線の幅を調整。画像から見て、だいたいこのくらいか、もう少し広めか */
    width: 390px; /* ★ここを調整してください。筆算の枠全体に合うように */
    margin: 20px auto; /* これでhrは自身の幅で水平中央に配置されます */
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
}

#score {
    font-weight: bold;
    color: #007bff;
}