body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: navy;
    color: white;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin: 20px 0;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: white;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    cursor: pointer;
}

.cell.x, .cell.o {
    cursor: not-allowed;
}

.cell.x::before {
    content: 'X';
    color: #09C;
}

.cell.o::before {
    content: 'O';
    color: #f44336;
}

.status {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.reset-button, .stats-button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    background-color: #f44336;
    color: white;
}

.stats-display {
    margin-top: 20px;
    font-size: 1.2rem;
}
