:root{
    --text-color: white

}

body{
    background-color: black;
    color: var(--text-color);
}

ul,ol,li {
    padding: 0;
    margin: 0;
}
*,*>*{
    box-sizing: border-box;
}
/* base style */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}


/* header */

.header {
}
.header__content {
}

.header__auth{
    background-color: black;
    padding: 6px 0;
    text-align: right;
}

.auth-link{
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Tektur", sans-serif;
}
@media(hover:hover){
    .auth-link:hover{
        text-decoration: underline;
        text-underline-offset: 5px;
    }

}
.header__navigation{
    background-image: url(../img/bgheader-1.jpg);
    padding: 15px 0;
}
.header__navigation .container{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logotype {
    width: 250px;
    display:block;
}
.logotype__image {
    width:100%;
}
.header__button-wrapper {
    display: flex;
}
.link-other-page {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s;
    min-width: 214px;
    text-decoration: none;
}
.link-other-page__image {
    width: 100px;
    height: 100px;
}
.link-other-page__text {
    font-family: "Pixelify Sans", sans-serif;
    text-transform: capitalize;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600; 
}

.link-other-page:hover{
    opacity: 0.5;
}


/*============= main*/
.main {
    padding: 20px 0;
}
.hero {
}
.container {
}
.hero__content {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3)), 
		url(../img/bg-hero.jpg);
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
}
.hero__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);


}
.hero__title {
    font-family: "Pixelify Sans", sans-serif;
    text-transform: capitalize;
    display: inline;

}
.hero__description {
    display: inline;
    font-size: 20px;
    font-family: "Tektur", sans-serif;
    font-weight: 500;
    text-shadow: 3px 3px 3px black;
}


/* ========================aboutgame */
.about-game {

}



.about-game__content {
    height: 60vh;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
}

#slider{
    max-width: 80%;
    margin: 0 auto;
    position: relative;
}

.slick-list{
    overflow: hidden;
}

.slick-track{
    gap: 10px;
    display: flex;
}
.slick-slide{
    width: 100%;
    height: 300px;
    position: relative;
}

.slick-arrow{
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    background-color: transparent;
    font-size: 0;
    color: transparent;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;

}
.slick-prev{
    background-image: url(../img/arrow-left.svg);
    left: -70px;

}
.slick-next{
    background-image: url(../img/arrow-right.svg);
    right: -70px;
}
ul,ol,li{
    list-style: none;
}
.slick-dots{
    display: flex;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    gap: 15px;

}
.slick-dots button {
    border: none;
    outline: none;
    background-color: white;
    font-size: 0;
    color: transparent;
    width: 10px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}
.slick-active button {
    background-color: #00fa4b;
    transform: scale(1.2);
    cursor:default ;
}


.slick-slide__first {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.203), rgba(0, 0, 0, 0.3)), 
		url(../img/breed.jpg);
}
.slick-slide__second {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.203), rgba(0, 0, 0, 0.3)), 
		url(../img/huss.jpg);
}
.slick-slide__third {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.203), rgba(0, 0, 0, 0.3)), 
		url(../img/jombee.jpg);
}
.slick-slide__fourth {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.203), rgba(0, 0, 0, 0.3)), 
		url(../img/baaam.jpg);
}
.slick-slide__fifth {
    background: 
		linear-gradient(rgba(255, 255, 255, 0.203), rgba(0, 0, 0, 0.3)), 
		url(../img/vace-up.jpg);

}
.slick-slide{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.slider__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    font-family: "Tektur", sans-serif;
    font-weight: 500;
    text-shadow: 3px 3px 3px black;
    text-transform: uppercase;
    width: 90%;
    text-align: center;
    letter-spacing: 1px;
    line-height: 150%;

}

/*===========================resources*/
.resources {
}
.resources__content {
}
.list-cards {
    /* display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center; */
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2,1fr);

}
.list-cards__item {
}
.card-mod {
    /* max-width: 700px;
    width: 100%; */
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 15px;
    border-radius: 10px;

}
.card-mod:hover .card-mods__img{
    transform: scale(1.1);

}
.card-mod__wrapper-img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}
.card-mods__img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s;

}
.card-mod__link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #00fa4b;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 10px;
    text-transform: capitalize;
    font-size: 20px;
    font-family: "Tektur", sans-serif;
    font-weight: 500;
    border: none;
    outline: none;
}




/* ======================footer */
.link-messenger{
    width: 48px;
    height: 48px;
    display: block;
    
}

.social-icon{
    width:100%;
    height: 100%;
    fill: white;
}
.social-icon:hover{
    fill: green;
}

.messengers{
    display: flex;
    list-style: none;
    gap: 5px;
}
.footer__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #47d1ff 0%, #00fa4b 100%);
    border-image-slice: 1;
}

/*========================screamer*/
.screamer-img{
    height: 100vh;
    width: 100vw;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
}



/*======== adaptive*/
@media (max-width:900px) {
    .card-mod__link {
        font-size: 18px;
        padding: 5px 15px;
    }
    
}
@media (max-width:768px) {

    .header__navigation .container {
        flex-direction: column;
        gap: 10px;
    }
    .link-other-page{
        flex-direction: column;
    }
    .hero__text {
        width: 90%;
    }
    .slick-arrow{
        display: none;
    }
    #slider{
        max-width: 100%;
    }
    .about-game__content{
        padding-top: 30px;
    }
    .list-cards{
        grid-template-columns: 1fr;
    }
    
    
}
@media (max-width:425px) {
    .logotype__image{
        /* width: 125px; */
    }
    .link-other-page__image{
        width: 70px;
        height: 70px;
    }
    .link-other-page{
        min-width: 106px;
    }
    .header__button-wrapper{
        gap: 10px;
    }
    .hero__description{
        font-size: 16px;
    }
    .footer__content{
        flex-direction: column;
        align-items: center;
    }
}
