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 0;
    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__search {
    position: relative;
    display: flex;
    height: 80%;
    align-items: center;
    background-color: #474C54;
    margin: 8px 10px 0;
    padding: 8px 20px;
    border-radius: 10px;
}

.nav__search input {
    padding: 5px 5px;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 1.8rem;
    color: var(--white-color);
}

.nav__search i {
    color: var(--white-color);
    font-size: 2rem;
    margin-left: auto;
    cursor: pointer;
}

.nav__search i:hover {
    opacity: 0.8;
}

.nav__hint {
    display: none;
    position: fixed;
    width: 64%;
    margin: 5px 10px;
    padding: 5px 10px;
    background-color: var(--primary-black-color);
    border-radius: 5px;
    border-right: 2px solid var(--primary-red-color);
    border-bottom: 2px solid var(--primary-red-color);
    border-left: 2px solid var(--primary-red-color);
    box-shadow: 1px 3px 5px var(--primary-red-color);
    z-index: 1;
}

.hint__list {
    list-style: none;
}

.hint__item {
    padding: 10px 15px;
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--white-color);
    border-radius: 5px;
    cursor: pointer;
}

.hint__item:hover {
    background-color: #474C54;
}

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

.nav__signInBtn {
    display: block;
}

.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: 10px;
    padding: 5px 0;
    font-size: 1.6rem;
    color: var(--white-color);
    text-align: center;
}


/* Home */


.home__container {
    padding: 20px;
}


/* Game */

.game__container {}

.game__title {
    padding: 10px 0;
    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;
}

.game__list--notification {
    margin-top: 5px;
    line-height: 2rem;
    font-size: 2rem;
    color: var(--white-color);
}

.game__item {
    cursor: pointer;
    padding: 10px;

}

.game__link {
    text-decoration: none;
}

.game__item:hover .game__img {
    border: 2px solid #7B7475;
}

.game__item:hover .game__img img {
    opacity: 0.9;
    box-shadow: 0 0 50px -18px rgb(251 83 83 / 80%);
}

.game__content {
    padding: 0 5px;
}

.game__img {
    display: flex;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
}

.game__img img {
    display: block;
    border-radius: 5px;
    width: 100%;
    height: 180px;
    transition: ease-in 0.2s;

}

.game__name {
    font-size: 1.8rem;
    color: var(--white-color);
    margin: 10px 0 0 5px;
}


/* Responsive */

/* Pc */
@media (min-width: 1023px) {
    .hide-on-pc {
        display: none;
    }

    html {
        height: 100%;
    }
}

/* Mobile & Tablet */
@media (max-width: 1023px) {
    .hide-on-moblile-tablet {
        display: none;
    }


}

/* Tablet */
@media (min-width: 740px) and (max-width: 1024px) {
    .hide-on-tablet {
        display: none;
    }


}

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



    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0px;
        right: 0px;
        z-index: 2;
    }

    .nav__logo img {
        height: 25px;
    }

    .nav__search {
        padding: 5px 10px;
        border-radius: 5px;
    }

    .nav__search input {
        padding: 5px 5px;
        font-size: 1.6rem;

    }

    .nav__search i {
        font-size: 1.8rem;
    }

    .nav__signInBtn button {
        padding: 15px;
        font-size: 1rem;

    }

    .nav__hint {
        width: 43%;
    }



    /* Menu */
    .menu__container {
        display: none;
        position: fixed;
        background-color: var(--primary-black-color);
        top: 51px;
        z-index: 2;
    }

    .menu-footer {
        position: fixed;

    }

    .home__container {
        margin-top: 81px;
        padding: 20px 0;
    }


    /* Game */
    .game__img {
        display: flex;
        justify-content: center;
        padding: 5px;
        border-radius: 0;
    }

    .game__img img {
        display: block;
        border-radius: 0;
        width: 100%;
        height: 180px;
        transition: ease-in 0.2s;

    }

}