/* ✅ 사용자 정의 폰트 */
@font-face {
    font-family: 'kodia';
    src: url('/font/kodia.ttf') format('truetype');
}
@font-face {
    font-family: 'lottemartlight';
    src: url('/font/lottemartlight.ttf') format('truetype');
}
@font-face {
    font-family: 'lottemartmedium';
    src: url('/font/lottemartmedium.ttf') format('truetype');
}
@font-face {
    font-family: 'nanumregular';
    src: url('/font/nanumregular.otf') format('truetype');
}

* {
    font-family: 'nanumregular', sans-serif !important;
    box-sizing: border-box;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit; /* 혹은 원하는 색상 예: #000 */
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
            url("/images/bg_diablo.png") no-repeat center top fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ✅ 컨테이너 */

.container-make-top {
    width: 1000px;
    margin: 10px auto 1px auto;
    background-color: rgb(164, 12, 12);
    border-radius: 5px 5px 0 0;
    color: white;
    height: 40px;
    /*font-size: 14px;*/
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2c2c2c;

}

#container-make {
    width: 1000px;
    margin: 0 auto 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#container {
    width: 1000px;
    margin: 10px auto 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

/* ✅ 상단 메뉴 */
#top-menu {
    border-radius: 5px;
    height: 60px;
    text-align: center;
    padding-left: 20px;
    margin: 20px auto 0 auto;
    border: 1px solid #2c2c2c;
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 1000px;
}

#main-text-with-image {
    color: #D4C491;
    text-decoration: none;
    /*font-size: 14px;*/
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#none-over {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
    padding: 0 10px;
    background-color: #111111;
}

#none-over:hover {
    background-color: #000000;
    border-radius: 5px;
}

/* ✅ 하단 메뉴 (사용 중이라면) */
.horizontal-menu-bottom {
    height: 50px;
    background-color: #a40c0c;
}

/* ✅ 모바일 대응 (600px 이하) */
@media (max-width: 600px) {

    * {
        font-size: 9px !important;
    }

    .container-make-top,
    #container-make,
    #container {
        width: 100%;
    }

    .navi {
        width: 100%;
        /*font-size: 12px;*/
        padding-left: 8px;
        height: 36px;
    }

    #top-menu {
        height: auto;
        width: 100%;
        padding: 10px 0;
    }

    #none-over {
        padding: 5px 10px;
        /*font-size: 12px;*/
    }

    #main-text-with-image {
        /*font-size: 12px;*/
    }
}
