body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: #ffffff;
}

h1 {
    color: #61dafb;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

#board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
}

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    background-color: #444;
    border: 2px solid #61dafb;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease;
}

.cell:hover {
    background-color: #555;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #61dafb;
    color: #282c34;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4fa3d1;
}

#status {
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: bold;
    color: #ffcc00;
}
