        /* (Seu estilo CSS permanece inalterado) */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.5);
            color: #000;
            background-image: url('bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-blend-mode: overlay;
        }
        #container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
            flex-wrap: wrap;
        }
        #title-container {
            width: 116px;
            height: 570px;
            margin: 10px;
        }
        #title-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        #gameCanvas {
            border: 1px solid black;
            background-color: #000;
            margin: 10px;
        }
        #nextPieceCanvas {
            border: 1px solid black;
            background-color: #000;
            margin: 10px;
        }
        #editor-container {
            display: flex;
            flex-direction: column;
            margin: 10px;
            color: black;
        }
        #codeEditor {
            width: 220px;
            height: 250px;
            resize: none;
            margin-bottom: 10px;
            background-color: #eee;
            color: black;
            border: none;
            padding: 10px;
            font-family: monospace;
            border: 1px solid black;
        }
        #executeButton {
            width: 240px;
            padding: 8px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 12.8px;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        #executeButton:hover {
            background-color: #45a049;
        }
        .code-button-container {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        .code-button {
            width: 113px;
            padding: 5px;
            margin: 3px;
            background-color: #008CBA;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 12px;
            border-radius: 5px;
        }
        .code-button:hover {
            background-color: #005580;
        }
        #clearButton {
            width: 113px;
            padding: 5px;
            margin: 3px;
            background-color: #f44336;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 12px;
            border-radius: 5px;
        }
        #clearButton:hover {
            background-color: #d32f2f;
        }
        #score-container {
            font-weight: bolder;
            margin: 10px;
            text-align: center;
            width: 100%;
        }
        #score {
            font-size: 18px;
            font-weight: bolder;
        }
        @media (max-width: 768px) {
            #container {
                flex-direction: column;
                align-items: center;
            }
            #gameCanvas, #nextPieceCanvas {
                margin: 0;
            }
            #editor-container {
                margin-left: 0;
                margin-top: 20px;
            }
            #codeEditor {
                width: 100%;
                height: 200px;
            }
            .code-button-container {
                justify-content: center;
            }
            .code-button {
                width: calc(50% - 10px);
            }
            #clearButton {
                width: calc(100% - 10px);
            }
        }
        .message {
            padding: 10px;
            margin-top: 3px;
            margin-bottom: 7px;
            border-radius: 5px;
            font-size: 11px;
            display: none;
        }
        .error {
            background-color: #f8d7da;
            color: #721c24;
        }
        .success {
            background-color: #d4edda;
            color: #155724;
        }
        .game-over {
            background-color: #cce5ff;
            color: #004085;
        }
        #musicButton {
            width: 120px;
            padding: 10px;
            background-color: #0000A0;
            color: white;
            border: none;
            cursor: pointer;
            margin:10px;
            font-size: 12px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #musicButton:hover {
            background-color: #000080;
        }
        #musicButton img {
            width: 20px;
            height: 20px;
            margin-right: 5px;
        }

        /* Adicione essas regras ao final do CSS existente */
#hiscore-container {
    margin: 10px;
    text-align: center;
    color: black;
}

#hiscore-container h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

#hiscore-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#hiscore-list li {
    background-color: #eee;
    padding: 5px;
    margin: 3px 0;
    border-radius: 5px;
    font-size: 14px;
    color: black;
}