body {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    justify-self: center;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 10px;
    justify-content: center;
    margin: 20px auto;
}

.cell {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 10px;
    font-size: 56px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.cell:hover {
    background: rgb(220, 199, 253)
}

.status {
    font-size: 18px;
    margin: 1em;
    font-weight: bold;
    justify-self: center;
}

.reset-button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: #a200ff;
    color: white;
    cursor: pointer;
    justify-self: center;
}

.reset-button:hover {
    background: #8000b3;
}