* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    color: white;
}

.game-container {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin-bottom: 20px;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #121212;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
}

.cell:hover {
    background-color: #1B1B1B;
}

.reset-button {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.reset-button:hover {
    background-color: #e0e0e0;
}

.status {
    margin-top: 20px;
    font-size: 1.2rem;
}
