

#morePanel {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

#moreContainer {
    position: absolute;
    background: linear-gradient(45deg, #f58c05, #f2f505);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 10px;
    padding: 10px;
}

#moreContent {
    width: 320px;
    height: 380px;
    overflow-y: auto;
}

.list-item {
    display: inline-block;
    margin: 10px 5px;
}

.game-icon {
    width: 64;
    height: 64;
    background: #eee;
    border-radius: 5px;
}

#btnClose {
    position: absolute;
    width: 42px;
    bottom: -45px;
    left: 42%;
}