html {
    background-image: linear-gradient(to top, var(--primary-brown-color), var(--primary-black-color) 50%);
    background-repeat: no-repeat;
}

.app {}

/* Header */

.header {
    padding: 10px 10px;
    background-color: var(--primary-black-color);
}

.nav {}

.nav__icon {
    display: inline-block;
    font-size: 3rem;
    color: var(--white-color);
}

.nav__icon i {
    display: block;
    cursor: pointer;
}

.nav__icon i:hover {
    opacity: 0.8;
}

.nav__logo {
    display: inline-block;
    cursor: pointer;
}

.nav__logo img {
    height: 50px;
}

.nav__user {
    margin-left: auto;
    margin-top: auto;
}


.nav__signInBtn button {
    display: block;
    margin-left: auto;
    height: 100%;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--primary-red-color);
    cursor: pointer;
}

.nav__signInBtn button:hover {
    background-color: #a21b2f;
}





/* Body */

.body {}


/* Menu */

.menu__container {
    position: relative;
    height: 100%;
    padding: 20px;
}

.menu__list {
    list-style: none;
}


.menu__item {
    padding: 5px 10px;
    cursor: pointer;
    transition: all linear 0.2s;
}

.menu__link {
    text-decoration: none;
    color: #D5D5D5;
}

.menu__link.activated {
    color: var(--primary-red-color);
}

.menu__link:hover {
    color: var(--primary-red-color);
}


.menu__item i {
    display: inline-block;
    min-width: 35px;
    font-size: 2rem;
    padding-right: 10px;
}

.menu__item span {
    display: inline-block;
    font-size: 1.6rem;
    margin-top: 5px;
    margin-bottom: 20px;
}

.menu-footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10%;
    padding: 5px 0;
    font-size: 1.6rem;
    color: var(--white-color);
    text-align: center;
}


/* Home */


.home__container {
    padding: 20px;
}

/* Slider */

.slider {
    user-select: none;
    position: relative;
    height: 420px;
    /* background-size: 100% 100%; */
    border-radius: 20px;
    /* box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 1); */
    overflow: hidden;
    animation: appearScroll linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.slider-list {
    position: absolute;
    height: 100%;
    display: flex;
    transition: 1s;
    display: flex;
    justify-content: center;
    cursor: grab;
}

.slider-list.active {
    cursor: grabbing;
}

.slider-img {
    position: relative;
    display: block;
    margin: auto;
    height: 100%;
    width: 85vw;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-content {
    z-index: 1;
    width: 70%;
    position: absolute;
    top: 20%;
    margin-left: 55px;
    color: var(--white-color);
}

/* for bright color */
.slider-content.black-content {
    color: var(--black-color);
}

.item-title {
    font-weight: 600;
    font-size: 4rem;
}

.item-description {
    margin: 20px 0;
    font-size: 1.8rem;
    line-height: 2rem;
}

.btn-link {
    text-decoration: none;
}

.item-btn {
    background-color: transparent;
    border-radius: 20px;
    padding: 10px 25px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.6rem;
    border: 3px solid var(--white-color);
    cursor: pointer;
}

/* for bright color */
.item-btn.black-content {
    color: var(--black-color);
    border: 3px solid var(--black-color);

}

/* Set for each slide btn color */
.slider-item:nth-child(2) .item-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-black-color);
}

.slider-item:nth-child(4) .item-btn:hover {
    background-color: var(--white-color);
    color: #F4ADB3;
}


.slider-item:nth-child(3) .item-btn:hover {
    background-color: var(--black-color);
    color: #F0BF60;
}


.slider-button {
    position: absolute;
    top: 45%;
    left: 0%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-button button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-weight: bold;
}

.slider-dot {
    position: absolute;
    bottom: 10px;
    color: #fff5;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dot-item {
    cursor: pointer;
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 20px;
    border-radius: 20px;
    transition: 1s;
}

.dot-item__active {
    list-style: none;
    width: 30px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 20px;
    border-radius: 20px;
}

/* Game */

.game__container {
    padding: 20px 0 0;
}

.game__title {
    display: inline-block;
    color: var(--white-color);
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 3.5rem;
}


.game__list {
    text-decoration: none;
    list-style: none;
    margin-top: 10px;
}

.game__item {
    display: flex;
    justify-content: center;
}


.game__link {
    display: block;
    padding: 0 5px;
    height: 80%;
    width: 100%;
    cursor: pointer;

    &:hover img {
        transform: translateY(5px);
        opacity: 0.9;
        box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0.8);
    }
}

.game__item img {
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    transition: ease-in 0.2s;
}


/* Responsive */
/* Mobile */
@media (max-width: 739px) {
    .hide-on-moblile {
        display: none;
    }

    .game__item {
        margin: 20px 0;
    }

    .game__link {
        display: block;
        padding: 0 5px;
        height: 75%;
        width: 100%;
        cursor: pointer;

        &:hover img {
            transform: translateY(5px);
            opacity: 0.9;
            box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0.8);
        }
    }

    .nav__signInBtn button {
        padding: 10px 10px;
    }


}