/* ==========================
   공통 스타일 (Common)
========================== */

:root{
    --bg:#080808;
    --panel:#151518;
    --panel2:#101116;
    --gold:#e0b354;
    --gold2:#f2cf7a;
    --text:#f6f2e9;
    --muted:#c9c1b5;
    --line:#34343a;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:"Pretendard","Noto Sans KR",sans-serif;
    line-height:1.7;
}

a{
    color:inherit;
    text-decoration:none;
}

.container,
.wrap{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   Header
========================== */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#050505;
    border-bottom:1px solid var(--line);
}

.head{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:900;
    white-space:nowrap;
    flex:0 0 auto;
}

.brand img{
    width:54px;
    height:54px;
    object-fit:contain;
    border-radius:50%;
}

.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:1px;
    flex-wrap:nowrap;
    flex:1;
}

.desktop-nav a{
    padding:10px 7px;
    border-radius:9px;
    color:var(--muted);
    font-size:14px;
    font-weight:850;
    white-space:nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active{
    background:rgba(224,179,84,.13);
    color:var(--gold2);
}

/* ==========================
   Footer
========================== */

footer{
    background:#050505;
    text-align:center;
    padding:50px 20px;
    border-top:1px solid var(--line);
}

footer img{
    width:120px;
    margin-bottom:20px;
}

footer p,
footer div{
    color:#aaa;
    line-height:1.8;
}

/* ==========================
   Mobile
========================== */

@media(max-width:1024px){

    .desktop-nav{
        display:none;
    }

}
