body {
    background: #0f172a;
    color: #fff;
    margin: 0px;
    padding: 0px;
}

#COINBOSS {
    display: flex;
    flex-direction: column;
    height: 100vh; /* 또는 원하는 높이 */
}

.Boss {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.Boss img {
    border: 1px solid #3c4a7a;
    border-radius: 10px;
    margin-top: -40px;
}

#Boss_Menu {
    position: fixed;       /* 화면에 고정 */
    bottom: 0;             /* 하단에 붙임 */
    left: 0;               /* 왼쪽 정렬 */
    width: 100%;           /* 가로 폭 100% */
    height: 55px;         /* 높이 110px */
    z-index: 9999;         /* 다른 요소들보다 위로 표시 */
    background-color: #020824; /* 배경색이 투명할 경우 설정 필요 */
    border-top: 2px solid #3c4a7a; /* 상단에 선 추가 */
}


#Boss_Menu .Menu {
    display: flex;              /* 메뉴 항목들을 가로로 배치 */
    justify-content: center;    /* 메뉴 항목들을 중앙 정렬 */
    align-items: center;        /* 메뉴 항목들을 수직 중앙 정렬 */
    height: 100%;               /* 메뉴 항목이 메뉴 바 전체 높이를 차지하도록 설정 */
    padding-right: 10px;
    gap: 10px;                 /* 메뉴 항목 사이의 간격 */
}
#Boss_Menu .Menu a {
    flex: 1;
    
    
}
#Boss_Menu .Menu button {
    width: 100%;
    background: #081450;
    border: 1px solid #394ca0;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin: 0px 5px;
    padding: 10px 0px;
    transition: background 0.7s;
}
#Boss_Menu .Menu button:hover {
    background: #4466ff;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #020824;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb {
    background: #3c4a7a;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4466ff;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #3c4a7a #020824;
}
