body {
    font-family: 'Roboto', sans-serif;
}

.bg-indigo {
    background-color: var(--bs-indigo);
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.img-tutorials-bg {
    position: relative;
}

.img-tutorials-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/survivor.jpg);
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
    border: rgba(179, 176, 176, 0.7) 1px solid;
}


.img-mods-bg {
    position: relative;
}

.img-mods-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/gun-store.jpg);
    background-size: cover;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
    border: rgba(179, 176, 176, 0.7) 1px solid;
}



.img-changelog-bg {
    position: relative;
}

.img-changelog-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/changelogs2.jpg);
    background-size: cover;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
    border: rgba(179, 176, 176, 0.7) 1px solid;
}

.thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: blur(2px);
    filter: grayscale(0.5);
    opacity: 0.7;
}

.img-thumb-bg {
    position: relative;
}

.img-thumb-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/thumb.jpg);
    background-size: cover;
    object-fit: cover;
    opacity: 0.5;
    z-index: -1;
}

.card-custom:hover {
    transform: scale(1.5);
    transition: ease-in-out 0.2s;

}

.card-custom2:hover {
    transform: translateY(-5px);
    transition: ease-in-out 0.5s;
}

.img-blurred {
    filter: blur(2px);
}

.img-bg {
    position: relative;
}

.img-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;


}

.img-bg-discord::before {
    background-image: url(../img/discord.jpg);
}

.img-bg-guide-beginner::before {
    background-image: url(../img/guides-beginner.jpg);
    filter: blur(1px);
}

.img-bg-guide-experienced::before {
    background-image: url(../img/guides-experienced.jpg);
    filter: blur(1px);

}

.font-banner {
    font-size: 14px;
}

.text-justify{
    text-align: justify;
    text-justify: inter-word;
}

.mod-container {
    margin-bottom: 20px;
}
.mod-image {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Garante que a imagem preencha o espaço */
}
.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limita a 3 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}