body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #333;
}

h1 {
    color: #4a4a4a;
}

#game-container {
    border: 2px solid #333;
    position: relative;
}

#start-screen {
    padding: 20px;
    text-align: center;
}

#ocr-result {
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #ccc;
    background-color: #fff;
}

#game-canvas {
    background-color: #000;
    display: block;
}

#ui-container {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
}

.hidden {
    display: none;
}
