#albumArt-musicInfo {
    width: 450px;
}

#albumArtButton {
    margin: 0;
    padding: 0;

    width: 450px;
    height: 450px;

    /* 배경 이미지 초기 설정 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    background-image: url(../assets/images/init_art.png);

    cursor: pointer;

    border-radius: 26px;
}

#albumArtButton:hover {
    opacity: 0.8;
}

/* 실제 파일 선택 창은 숨기기 */
#albumArtInput {
    display: none;
}

/* 우클릭 컨텍스트 메뉴 */
@keyframes contextMenuIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(-6px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes contextMenuOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.92) translateY(-6px);
    }
}

#albumArtMenu {
    display: none;
    position: fixed;
    z-index: 1000;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    min-width: 160px;
    user-select: none;
    transform-origin: top left;
}

#albumArtMenu.visible {
    display: block;
    animation: contextMenuIn 0.15s cubic-bezier(0.2, 0, 0.13, 1) forwards;
}

#albumArtMenu.hiding {
    display: block;
    animation: contextMenuOut 0.12s cubic-bezier(0.2, 0, 0.13, 1) forwards;
}

#albumArtMenu li {
    padding: 9px 16px;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

#albumArtMenu li:hover {
    background: rgba(255, 255, 255, 0.1);
}

#albumArtMenu .menu-separator {
    height: 1px;
    margin: 5px 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    cursor: default;
}

#albumArtMenu .menu-separator:hover {
    background: rgba(255, 255, 255, 0.12);
}
