body {
    background: #1e1e2f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial;
    color: white;
    flex-direction: column;
}

h1 {
    margin-bottom: 20px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 8px;
}

.cell {
    width: 100px;
    height: 100px;
    font-size: 40px;
    background: #2c2c3b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.cell:hover {
    background: #3a3a4a;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background: #6a5acd;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #7f6bed;
}

#status {
    margin-top: 15px;
    font-size: 22px;
}