.music-player-wrapper {
    /* max-width: 1200px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    z-index: 1;
    background: transparent;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: white;
}

.header p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.demo-container {
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;
}

#aplayer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

/* 自定义 APlayer 样式 */
.aplayer .aplayer-info {
    padding: 20px;
}

.aplayer .aplayer-list ol li {
    padding: 15px 20px;
}

.aplayer .aplayer-list ol li:hover {
    background: rgba(0, 123, 255, 0.1);
}

.aplayer .aplayer-list ol li.aplayer-list-light {
    background: rgba(0, 123, 255, 0.1);
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }
    
    .demo-container {
        padding: 0 15px;
    }
} 