header{
    padding: 45px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

header .header__logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
}

.community__list{
    width: fit-content;
    display: flex;
    gap: 40px;
}

.community__list > li{
    width: fit-content;
    height: auto;
    position: relative;
}

.community__list > li a{
    width: fit-content;
    height: auto;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
}

.hamburger{
    width: 35px;
    height: 35px;
    position: relative;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 9999;

    display: none;
}

.hamburger span{
    width: 20px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--point-color);
    transition: ease 0.2s;
}

.hamburger span:nth-child(1){
    top: 30%;
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(2){
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3){
    top: 70%;
    transform: translate(-50%, -50%);
}

.hamburger.active span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
}

.mo__menu__wrap{
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 100px;
    position: fixed;
    background-color: var(--black-color);
    top: 0;
    right: -150%;
    transition: ease .3s;
    z-index: 999;
}

.mo__menu__wrap.active{
    right: 0%;
}

.mo__menu__wrap .user__area{
    display: flex;
    padding-top: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mo__menu__wrap .user__area .user__img{
    width: 62px;
    height: 62px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo__menu__wrap .user__area .user__img img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.mo__menu__wrap .user__area .user__name{
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin: 10px 0;
    padding: 0 20px;
}

.mo__menu__wrap .user__area .point__wrap{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo__menu__wrap .user__area .point__wrap > img{
    width: 22px;
}

.mo__menu__wrap .user__area .point__wrap > p{
    font-size: 18px;
    font-weight: 700;
    color: var(--point-color);
    margin-left: 6px;
}

.charge__btn.red__btn{
    padding: 10px 30px;
    border-radius: 50px;
    margin: 20px 0 50px;
}

.mo__menu__area{
    padding: 0 18px;
}

.mo__menu__area > li{
    width: 100%;
    height: 60px;
    background-color: #292929;
    border-radius: 10px;
}

.mo__menu__area > li:nth-child(n+2){
    margin-top: 10px;
}

.mo__menu__area > li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    padding: 20px;
}

.mo__menu__area + a{
    margin-top: 50px;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #bebebe;
}

@media screen and (max-width: 768px){
    header{
        padding: 10px;
        height: 80px;
    }

    .community__list{
        display: none;
    }

    header .header__logo{
        width: 120px;
    }

    header .user__wrap{
        display: none;
    }

    .hamburger{
        display: block;
        right: 10px;
    }
}