body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 400px;
    margin: 0 auto;
}

h1 {
    color: #333;
}

.board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
    margin: 20px auto;
    width: 300px;
    height: 300px; /* 固定高さでグリッド均等 */
}

.cell {
    background-color: white;
    border: 2px solid #333;
    font-size: 30px; /* ○のサイズ調整（神の漢字に合わせ小さめ） */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    height: 70px; /* 固定高さ（縦伸び防止） */
    line-height: 70px; /* テキスト縦中央揃え */
    box-sizing: border-box; /* ボーダー込みで計算 */
}

.cell:hover {
    background-color: #e0e0e0;
}

.cell:disabled {
    cursor: not-allowed;
    background-color: #f9f9f9;
}

#status {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}