body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    display: flex;
}

#left-half {
    width: 3968px;
    height: 1536px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 5px solid #fff;
    box-sizing: border-box;
}

#right-half {
    width: 6400px;
    height: 1536px;
}

#pre-game-screen {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#pre-game-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#game-title {
    font-size: 10em;
    margin-bottom: 1em;
}

#connection-status {
    font-size: 4em;
    margin-bottom: 1em;
}

#qr-code-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qr-code {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
}

#game-canvas {
    display: none; /* Initially hidden */
    width: 3968px;
    height: 1536px;
}
