#minigame_window {
    overflow: hidden;
    /* Basic window styling if needed, mainly controlled by parent but defaults here */
    width: fit-content;
}
#game-container {
    position: relative;
    width: 224px;
    height: 228px;
    border: 2px solid #444;
    background-color: #000;
    margin: 0 auto;
    /* Center inside window if needed */
}

#minigame_window #score-board {
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
    text-shadow: 1px 1px 0 #000;
}

#minigame_window canvas {
    display: block;
    background-color: #000;
    outline: none;
    /* Remove focus outline */
}