.disabled-lock {
    position: relative;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.disabled-lock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-image: url('https://app.betserver.site/img/lock.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tabChangeButton {
    width: 150px;
    background-color: transparent !important;
    transition: 0.2s;
}

.tabChangeButton:hover {
    background-color: var(--button-color) !important;
    transition: 0.2s;
}

.game-link {
    margin: 0px 10px !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, filter 0.3s;

}

.game-link:hover {
    transform: scale(1.05);
    /* Amplia a imagem em 5% */
    filter: brightness(60%);
    /* Diminui o brilho da imagem */
}

.game-link::before {
    content: "RECEBER BÔNUS";
    font-size: 0.75em;
    position: absolute;
    top: 30%;
    left: 50%;
    width: 125px;
    transform: translate(-55%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-link:hover::before {
    opacity: 1;
}

.game-link img {
    max-width: 120px;
    max-height: 120px;
}

.menuIcon {
    max-height: 25px;
    max-width: 25px;
}

.bg-yellow {
    background-color: yellow !important;
}