/* APlayer Spectrum Plugin CSS */
#music-spectrum {
    position: fixed;
    width: 84px;
    height: 30px;
    bottom: 67px;
    z-index: 90;
    display: none;
    /*background: rgba(0, 0, 0, 0.7);*/
    /*backdrop-filter: blur(10px);*/
    /*-webkit-backdrop-filter: blur(10px);*/
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#spectrum-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.spectrum-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    background: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-family: 'Microsoft YaHei', sans-serif;
    transition: all 0.3s ease;
    pointer-events: none;
}

.spectrum-status.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 频谱动画 */
@keyframes spectrum-pulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.3; }
}

.spectrum-loading {
    animation: spectrum-pulse 1.5s infinite;
}

 /*频谱容器悬停效果 */
/*#music-spectrum:hover {*/
/*    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);*/
/*}*/
