/*-----------Mods----------*/
.body-mods {
    background-image: url("/images/Banners/Games.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.mod-img {
    width: 100%;
    margin-top: 20px;
    border-radius: 15px;
    max-height: 300px;
    object-fit: cover;
    animation: bounceIn 1s ease-out; /* Bounce effect for images */
}

.mod-txt {
    color: white;
    text-shadow: #000000 1px 0 10px;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;;
    animation: slideIn 1s ease-in-out; /* Slide-in for title */
}

.mod-description-text-box {
    position: relative;
}

.mod-description-img {
    width: 100%;
    margin-top: 10px;
}

.mod-description-txt {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;;
}

/* Keyframes for animations */
@keyframes fadeIn {
    0% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    60% {
        transform: scale(1.01);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.mod-stats {
    margin-top: 10px;
    text-align: center;
}
.stats-box {
    background: rgba(31, 31, 31, 0.8);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #705373;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
.stats-txt {
    margin: 2px 0;
    color: white;
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;;
    font-size: 14px;
    text-shadow: #000000 1px 0 5px;
}
.stats-date {
    margin: 5px 0 0;
    color: #b0b0b0; /* Lighter gray */
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;;
    font-size: 12px;
    text-shadow: #000000 1px 0 3px;
}

/* These are used for "Mods" filtering */
.filterDiv {
    display: none; /* Hidden by default */
}

.show /* The "show" class is added to the filtered elements */ 
{
    display: block;
}

.mods-subpage-text {
    max-width: 760px;
    color: lightgray;
    text-align: center;
    text-shadow: #000000 1px 0 10px;
}

.mods-black-bar {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    max-width: 100%;
    background-color: black;
    filter: drop-shadow(5px 4px 4px #000000);
    text-align: center;
    color: white;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 2%;
}

.mods-content-box {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    max-width: 100%;
    background-image: linear-gradient(#1f1f1f, #101010);
    filter: drop-shadow(5px 4px 4px #000000);
    text-align: center;
    color: white;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 1%;
}

.mods-section-header
{
    margin-bottom: 0px;
    margin-top: 2%;
}

.slick-prev {
    position: absolute;
    top: 0;
    left: -2%;
    height: 100%;
    width: 3%;
    z-index: 99;
    background-color: #705373;
    font-size: 150%;
    border-color: #705373;
    border-radius: 6px;
}

.slick-next {
    position: absolute;
    top: 0;
    right: -2.5%;
    height: 100%;
    width: 3%;
    z-index: 99;
    background-color: #705373;
    font-size: 150%;
    border-color: #705373;
    border-radius: 6px;
}

.slick-slide {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

@media (max-width: 768px)
{
    .mods-content-box
    {
        width: 100%;
        max-width: 100%;
    }

    .slick-prev,
    .slick-next
    {
        width: 5%;
    }
}