body {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background: #111111;
    padding-right: 20px;
    padding-left: 20px;
 
    overflow-x: hidden;
    overflow-y: hidden;
    -ms-overflow-style: none;
 
}

::-webkit-scrollbar {
     display: none; 
}

.wrap {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: stretch;
}

main {
    box-sizing: border-box;
    padding: 20px;

    overflow:scroll;    
}

main,
footer {
    flex-shrink: 0;
}

footer {
    margin-top: 50px;
}

/* 메인 */
.inner {
    width: 1600px;
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -800px;
    top: 0;
}

.contents_title {
    width: 100%;
    height: 24px;
    float: left;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
}

.contents_text {
    width: 100%;
    height: 18px;
    float: left;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
}





/* Header css */
header {
    width: calc(100% - 40px);
    height: 190px;
    z-index: 50;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
   /*    
    background: rgba(11, 11, 20, 0.5);   
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(100px);
   */

}

h1.logo {
    width: 100%;
    height: 40px;
    /* float: left; */
    margin: 30px 0;
    position: relative;
    text-align: center;
    color: #FFFFFF;
    font-size: 25px;
}

h1.logo a {
    color: #FFFFFF;
}





/* inner */
@media screen and (max-width:1600px) {
    .inner {
        width: 96%;
        margin-left: -48%;
    }

    .sidemenu {
        width: 18%;
    }

    .sidemenu_title {
        width: 85%;
        margin: 50px 0 30px 30px;
    }

    .sidemenu_list {
        margin-left: 30px;
    }

    .mypage_wrap,
    .subpage_wrap {
        width: 79.75%;
    }

    .mypage_inner,
    .subpage_inner {
        width: 96%;
        margin-left: -48%;
    }
}

/* laptop */
@media screen and (max-width:1280px) {
    .sidemenu_title {
        margin: 50px 0 30px 20px;
    }

    .sidemenu_list {
        margin-left: 20px;
    }
}

/* tablet */
@media screen and (max-width:1080px) {
    .sidemenu {
        display: none;
    }

    .contents_title {
        height: 21px;
        font-size: 21px;
        line-height: 21px;
    }

    .contents_text {
        height: 16px;
        font-size: 16px;
        line-height: 16px;
    }

    .mypage_wrap,
    .subpage_wrap {
        width: 100%;
    }
}

/* small tablet */
@media screen and (max-width:800px) {

    .mypage_title,
    .subpage_title {
        height: 24px;
        margin: 30px 0 20px 0;
        font-size: 24px;
        line-height: 24px;
    }
}

/* small tablet 2 */
@media screen and (max-width:600px) {

    .mypage_inner,
    .subpage_inner {
        width: 100%;
        margin-left: -50%;
    }

    .mypage_title,
    .subpage_title {
        margin: 20px 0 15px 0;
        text-indent: 5px;
    }
}

/* mobile */
@media screen and (max-width:480px) {

    .mypage_title,
    .subpage_title {
        height: 18px;
        font-size: 18px;
        line-height: 18px;
    }
}






main {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 150px;
    /*width: 100%; height: 100%; position: relative; margin-top: 200px;*/
    background: #1e1e1e;
}


.top_fixed {
    margin-top: 40px;

}

.box {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    z-index: 49;
    display: none;
    -webkit-transition: all 1.5s;
}

.box>a {
    width: 100%;
    height: 100%;
}

.box>a>img {
    width: 180px;
    height: 50px;
    position: absolute;
    left: 50%;
    margin-left: -90px;
    top: 50%;
    margin-top: -25px;
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.5));
    cursor: pointer;
}

.box>a>img.soon {
    width: 200px;
    height: 50px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -25px;
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.5));
}

/* 게임리스트 css */
.game {
    width: 100%;
    min-height: 1200px;
    max-height: 2000px;
    /*float: left; position: relative;*/
    background: #0B0B14;
}

.game_menu {
    width: 1188px;
    height: 50px;
    float: left;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.game_menu li {
    height: 100%;
    float: left;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 25px;
    text-align: center;
    line-height: 46px;
    cursor: pointer;
}

.game_menu li:nth-child(1) {
    width: 110px;
    font-weight: 700;
}

.game_menu li:nth-child(2) {
    width: 110px;
}

.game_menu li:nth-child(3) {
    width: 110px;
}

.game_menu li:nth-child(4) {
    width: 110px;
}

.game_menu li>p {
    width: 100%;
    height: 100%;
    position: absolute;
    color: #FFFFFF;
}

.game_menu li>div {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FFFFFF;
    display: none;
}

.game_menu li.selected {
    border: none;
    line-height: 50px;
}

.game_menu li>p.selected {
    font-weight: 800;
    color: #0B0B14;
    z-index: 1;
}

.game_menu li>div.selected {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #FFFFFF;
    display: block;
}

.game_search {
    width: 300px;
    height: 0px;
    float: left;
    position: absolute;
    right: 35px;
    top: 120px;
    background: #2F2F51;
    border-radius: 25px;
    font-size: 24px;
    line-height: 24px;
    color: #0B0B14;
}

.game_search>input {
    width: 100%;
    height: 35px;
    position: absolute;
    left: 0px;
    top: -5px;
    background: #2F2F51;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 18px;
    line-height: 35px;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding-left: 10px;
}

.game_search>input:focus {
    outline: none;
}

.game_search>i {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0px;
    top: 2px;
}

.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.game_line {
    width: 100%;
    height: 2px;
    float: left;
    /*background: #2F2F51; */
    margin-top: 130px;
    display: block;
}

.game_tab {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin-top: 42px;
    display: none;
}

.game_tab.selected {
    display: block;
}

.game_list {
    width: 100%;
    float: left;
    margin-top: 30px;
    padding-bottom: 200px;    
}

.game_list li {
    width: 19%;
    float: left;
    margin-right: 1.25%;
    padding-bottom: 58px;
    position: relative;
}

.game_list li:nth-child(5n) {
    margin-right: 0;
}

.game_img {
    width: 100%;
    height: 100%;
    float: left;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.game_img>img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
}

.game_img:hover>img {
    -webkit-transform: scale(1.1, 1.1);
    filter: brightness(50%) blur(2px);
}

.game_img:hover>.box {
    display: block;
}

.game_name {
    position: absolute;
    bottom: 30px;
    font-weight: 700;
    text-align: center;
}




/* tablet */
@media screen and (max-width:1080px) {
    .game_list li {
        width: 23.5%;
        margin-right: 2%;
    }

    .game_list li:nth-child(5n) {
        margin-right: 2%;
    }

    .game_list li:nth-child(4n) {
        margin-right: 0;
    }

    .game_list .box a img {
        width: 59.21%;
        margin-left: -29.605%;
        height: 16.447%;
        margin-top: -8.2235%
    }

    .game_img:hover>img {
        -webkit-transform: none;
        filter: none;
    }

    .game_list .box a img {
        display: none;
    }
}

/* small tablet */
@media screen and (max-width:800px) {
    .game_list li {
        width: 32%;
    }

    .game_list li:nth-child(4n) {
        margin-right: 2%;
    }

    .game_list li:nth-child(3n) {
        margin-right: 0;
    }
}

/* small tablet 2 */
@media screen and (max-width:600px) {
    .game_list li {
        width: 49%;
    }

    .game_list li:nth-child(3n) {
        margin-right: 2%;
    }

    .game_list li:nth-child(2n) {
        margin-right: 0;
    }

    .more_btn {
        display: block;
    }
}



/*page*/
#pagination {
    border: 1px solid #669900;
    height: 20px;
    width: 20px;
    margin: 0px 3px;
    background: none;
    text-align: center;
    font-weight: bold;
    padding: 0
}

#pagination a {
    padding: 0;
    margin: 0 color#ffffff;
}

.not_found {
    text-align: center;
    padding-top: 100px; 
    padding-bottom: 200px;
}

.not_found img {
    width: 250px;
}

.highlight {color:#ffd800;}