.disabled-lock {
    position: relative;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.disabled-lock::before {
    content: '';
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-image: url('../images/lock.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tabChangeButton {
    width: 200px;
    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 {
    margin: 1px !important; /* Adiciona espaçamento entre as imagens */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, filter 0.3s;
}


.game-link:hover {
    transform: scale(1.05);
    /* Amplia a imagem em 45% */
    filter: brightness(180%);
    /* Diminui o brilho da imagem */
}


}

.game-link:hover::before {
    opacity: 1;
}
.game-link img {
    max-width: 500px; /* Diminui a largura da imagem */
    max-height: 2000px; /* Diminui a altura da imagem */
    width: 108%; /* Ajusta a imagem para preencher o contêiner */
    height: auto; /* Mantém a proporção da imagem */
}
/**
.game-link img {
    max-width: 120px;
    max-height: 120px;
}*/

.menuIcon {
    max-height: 26px;
    max-width: 26px;
}

.bg-yellow {
    background-color: yellow !important;
}