.game-list {
    list-style: none;
    padding: 0;
}

.game-list a {
    display: block;
    padding: 15px;
    margin: 10px 0;
    background-color: rgba(76, 175, 80, 0.3);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
}

.game-list a:hover {
    background-color: rgba(129, 199, 132, 0.5);
}

/* ===== GAME SCORE PANEL STYLES ===== */
/*
USAGE TEMPLATE:
<div class="game-with-score">
    <div id="sketch-holder"></div>
    <div class="game-score-panel">
        <div class="game-score-header">Score: 0</div>
        <div class="game-score-stats">
            <div class="stat-item">
                <span class="stat-label">Stat Name:</span>
                <span class="stat-value">0</span>
            </div>
            <!-- Add more stat items as needed -->
        </div>
    </div>
</div>

JAVASCRIPT UPDATE FUNCTION:
function updateScoreDisplay() {
    const scoreElement = document.querySelector('.game-score-panel');
    if (scoreElement) {
        scoreElement.innerHTML = `
            <div class="game-score-header">Score: ${score}</div>
            <div class="game-score-stats">
                <div class="stat-item">
                    <span class="stat-label">Stat Name:</span>
                    <span class="stat-value">${value}</span>
                </div>
            </div>
        `;
    }
}
*/
.game-score-panel {
    position: absolute;
    right: -180px;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #4CAF50;
    color: white;
    font-family: 'Arial', sans-serif;
    min-width: 150px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-score-header {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.game-score-stats {
    font-size: 0.9rem;
    line-height: 1.4;
}

.game-score-stats .stat-item {
    margin-bottom: 5px;
    padding: 2px 0;
}

.game-score-stats .stat-label {
    color: #ccc;
    font-weight: bold;
}

.game-score-stats .stat-value {
    color: #fff;
    margin-left: 5px;
}

/* Game container with score panel positioning */
.game-with-score {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .game-score-panel {
        position: static;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
    
    .game-with-score {
        flex-direction: column;
        align-items: center;
    }
}