.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
}

.welcome-screen {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.welcome-screen h2 {
    margin-bottom: 10px;
    color: #333;
}

.welcome-screen p {
    margin-bottom: 20px;
    color: #666;
}

.game-wrapper {
    flex: 2;
    display: none;
}

#game-board {
    display: grid;
    grid-gap: 2px;
    margin-bottom: 10px;
}

#game-board .cell {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: orange;
    font-size: 18px;
    font-weight: bold;
    color: black;
    transition: background-color 0.2s;
}

#game-board .cell.blank {
    background-color: gray;
    border: 1px solid #ccc;
    cursor: default;
}

.game-controls {
    flex: 1;
    text-align: center;
    display: none;
}

.start-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.start-btn:hover {
    background-color: #0056b3;
}

.game-info {
    flex: 1;
    text-align: right;
    display: none;
}

.game-info span {
    margin-left: 10px;
}