/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 根元素样式 */
html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* 文字循环按钮样式 */
.loop-text-btn {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    cursor: pointer;
    user-select: none;
    color: #1db954;
}

.loop-text-btn:hover {
    background: rgba(29, 185, 84, 0.2);
    transform: translateY(-1px);
}

.loop-text {
    display: inline-block;
    transition: all 0.3s ease;
}

.loop-all,
.loop-one {
    font-weight: 600;
}

.loop-none {
    opacity: 0.7;
}

/* 顶部循环按钮特殊样式 */
#topRepeatBtn {
    font-size: 11px;
    padding: 3px 6px;
}

/* 主播放器容器 - 全屏 */
.player-container {
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f3 100%);
    max-width: 1360px;
    margin: 0 auto;
}


/* 主要内容区域 */
.player-main {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* 左侧歌曲列表面板 */
.song-list-panel {
    width: 75%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    border-left: 1px solid #dddddd;
}

.list-header {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.list-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.list-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    height: 36px;
    padding: 0 12px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.control-btn span {
    display: block;
    padding: 0 4px;
}

.control-btn:hover {
    color: #fff;
    background: rgba(29, 185, 84, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

/* 歌曲列表内容 - 卡片样式 */
.list-content {
    flex: 1;
    overflow-y: auto;
    padding: 0px 0px 0px 0px;
}

.song-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 13px;
}

.song-table th,
.song-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.song-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.song-table tbody tr {
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.song-table tbody tr:hover {
    background-color: #f8f9fa;
}

.song-table tbody tr.active {
    background-color: #e6f7ed;
}

.song-table tbody tr.playing {
    background-color: #e6f7ed;
}

/* 播放图标样式 */
.play-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 歌曲操作按钮容器 */
.song-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.song-actions .action-btn {
    width: 28px;
    height: 28px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.song-actions .action-btn:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
}

.song-actions .action-btn.favorite.active {
    color: #1db954;
    background: rgba(29, 185, 84, 0.2);
}

.song-actions .action-btn.download.disabled {
    color: #ccc;
    background: rgba(0, 0, 0, 0.05);
    cursor: not-allowed;
}

.song-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.song-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #1db954;
}

.song-card.active {
    border-color: #1db954;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f3 100%);
}

.song-card.playing {
    border-color: #1db954;
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ed 100%);
}

.song-card.playing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1db954;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-artist {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-album {
    font-size: 0.8rem;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
}

.song-card:hover .card-actions {
    opacity: 1;
}

.action-btn {
    width: 28px;
    height: 28px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.action-btn:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
}

.action-btn.favorite.active {
    color: #1db954;
    background: rgba(29, 185, 84, 0.2);
}

.action-btn.download.disabled {
    color: #ccc;
    background: rgba(0, 0, 0, 0.05);
    cursor: not-allowed;
}

.vip-badge {
    display: inline-block;
    background: linear-gradient(45deg, #fb6a6a, #e1ad19);
    color: #fff;
        padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.5rem;
    margin-left: 8px;
}

/* 加载状态 */
.loading-row {
    height: 200px;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
}

.loading i {
    font-size: 1.2rem;
}

/* 错误提示样式 */
.error-cell {
    padding: 40px 20px;
    text-align: center;
}

.error-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: 8px;
    color: #1db954;
}

.error-container i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.error-container h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.error-container p {
    margin-bottom: 20px;
    color: #15883e;
}

.error-details {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: left;
}

.error-details p {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.error-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-details li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.error-details li:before {
    content: "•";
    color: #1db954;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-retry {
    background: #1db954;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-retry i {
    margin-right: 8px;
    font-size: 16px;
    display: inline;
}

.btn-retry:hover {
    background: #15883e;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(29, 185, 84, 0.3);
}

/* 右侧播放面板 */
.player-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*background: linear-gradient(135deg, #ffffff 0%, #f0f8f3 100%);*/
    padding: 30px;
    background-color: #fff;
    border-right: 1px solid #dddddd;
}

/* 专辑封面和歌词区域 */
.album-lyric-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.album-cover-container {
    text-align: center;
}

.album-cover {
    width: 320px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
    background: #fff;
    border: 2px solid #e8e8e8;
}

.album-cover:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 185, 84, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .cover-overlay {
    opacity: 1;
}

.play-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(29, 185, 84, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.play-indicator:hover {
    transform: scale(1.1);
    background: rgba(29, 185, 84, 1);
}

.play-indicator i {
    color: #fff;
    font-size: 1rem;
    margin-left: 5px;
}

.cover-info h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.cover-info p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* 歌词容器 */
.lyric-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.lyric-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.lyric-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.lyric-content {
    height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

.lyric-line {
    text-align: center;
    padding: 8px 0;
    color: #999;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    line-height: 1.8;
    border-bottom: 1px solid rgb(57 56 56 / 8%);
}

.lyric-line.active {
    color: #1db954;
    font-size: 1.1rem;
    font-weight: 600;
    transform: scale(1.05);
}

.lyric-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ccc;
}

.lyric-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lyric-placeholder p {
    font-size: 1.1rem;
}

/* 相关推荐 */
.related-section {
    margin-top: auto;
    width: 100%;
    max-width: 500px;
}

.related-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.related-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.related-item {
    min-width: 120px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-info h4 {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-info p {
    color: #999;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 空状态提示样式 */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}

.empty-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    padding: 50px 0 70px 0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
    color: #1db954;
}

.empty-container h3 {
    color: #666;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-container p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-browse {
    background: linear-gradient(135deg, #1db954, #15883e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-browse:hover {
    background: linear-gradient(135deg, #15883e, #1db954);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

/* 底部播放控制栏 */
.player-footer {
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    position: relative;
}

.footer-left {
    width: 300px;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.now-playing img {
    width: 60px;
    height: 60px;
    border-radius:50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.playing-info h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.playing-info p {
    color: #666;
    font-size: 0.85rem;
}

.btn-mini {
    width: 32px;
    height: 32px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-mini:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
}

.btn-mini.active {
    color: #fff;
    background: #1db954;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    margin-right: 6%;
}

.play-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-control {
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 10px;
    width: 40px;
    height: 40px;
}

.btn-control:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

/* 循环播放按钮样式 */
.loop-btn {
    border-radius: 20px !important;
    padding: 8px 12px !important;
    width: auto !important;
    height: 36px !important;
    font-size: 0.85rem !important;
}

.loop-active,
.loop-one-active {
    animation: pulse 2s infinite;
    color: #fff !important;
    background: #1db954 !important;
}

.loop-active i,
.loop-one-active i {
    transition: all 0.3s ease;
    margin-right: 4px;
}

.loop-active:hover i,
.loop-one-active:hover i {
    transform: scale(1.1);
}

.loop-disabled {
    opacity: 0.6;
}

.loop-disabled:hover {
    opacity: 0.8;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-play {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1db954, #15883e);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    padding: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-play i {
    font-size: 22px;
}

.btn-play.playing i {
    margin-left: 0px;
}

.btn-play:hover {
    background: linear-gradient(135deg, #15883e, #1db954);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% - 40px);
    /* max-width: 800px; */
    position: absolute;
    top: -11px;
    left: 20px;
}

.progress-section .loading-indicator {
    font-size: 11px;
    position: absolute;
    top: -6px;
    left: 47%;
    z-index: 2;
    color: #1db954;
}

.time-current,
.time-total {
    color: #666;
    font-size: 0.8rem;
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    border-radius: 3px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1db954, #15883e);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
    transition: all 0.3s ease;
    left: 0%;
    opacity: 0;
    border: 2px solid #fff;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.5);
}

.footer-right {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-volume {
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 8px;
    width: 36px;
    height: 36px;
}

.btn-volume:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
}

.volume-slider-container {
    width: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.volume-control:hover .volume-slider-container {
    opacity: 1;
}

#volumeSlider {
    width: 100%;
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#volumeSlider::-webkit-slider-thumb:hover {
    background: #15883e;
    transform: scale(1.2);
}

#volumeSlider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#volumeSlider::-moz-range-thumb:hover {
    background: #15883e;
    transform: scale(1.2);
}

/* VIP弹窗 */
.vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.vip-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f3 100%);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    z-index: 1001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.modal-header h3 i {
    color: #1db954;
}

.btn-close {
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.2);
    color: #1db954;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    color: #fff;
    background: #1db954;
    transform: scale(1.1);
}

.vip-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #1db954;
}

.modal-body h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.modal-body p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.vip-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
}

.feature i {
    color: #1db954;
}

.btn-vip-subscribe {
    background: linear-gradient(135deg, #1db954, #15883e);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-vip-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #1db954;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #15883e;
}

/* 跳动动画 */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.song-card.playing .card-title {
    animation: pulse 1.5s infinite;
    color: #1db954;
}

/* 循环模式样式 */
.btn-control.loop-all i::after {
    content: '1';
    position: absolute;
    font-size: 0.7rem;
    font-weight: bold;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-control.loop-one i::after {
    content: '1';
    position: absolute;
    font-size: 0.7rem;
    font-weight: bold;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .song-list-panel {
        width: 500px;
    }
    
    .song-cards {
        grid-template-columns: 1fr;
    }
    
    .album-cover {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .player-main {
        flex-direction: column;
    }
    
    .song-list-panel {
        width: 100%;
        height: 400px;
    }
    
    .player-panel {
        height: 500px;
    }
    
    .album-lyric-area {
        flex-direction: column;
        text-align: center;
    }
    
    .related-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .player-header {
        padding: 0 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .search-box {
        width: 200px;
    }
    
    .player-footer {
        padding: 0 20px;
    }
    
    .footer-left {
        width: 200px;
    }
    
    .now-playing img {
        width: 50px;
        height: 50px;
    }
    
    .playing-info h4 {
        font-size: 0.9rem;
    }
    
    .playing-info p {
        font-size: 0.8rem;
    }
    
    .song-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .album-cover {
        width: 240px;
        height: 240px;
    }
    
    .lyric-container {
        max-width: 100%;
    }
}

/* 顶部导航栏样式 */
.player-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.player-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1db954;
}

.player-header .logo img {
    display: block;
    height: 30px;
}

.player-header .logo i {
    font-size: 1.8rem;
}

.player-header .main-nav {
    display: flex;
    gap: 30px;
}

.player-header .nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.player-header .nav-item:hover {
    color: #1db954;
    background: rgba(29, 185, 84, 0.1);
    transform: translateY(-1px);
}

.player-header .nav-item.active {
    color: #fff;
    background: #1db954;
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

.player-header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-header .search-box {
    position: relative;
    width: 300px;
}

.player-header .search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.player-header .search-box input {
    width: 100%;
    height: 36px;
    background: rgba(29, 185, 84, 0.05);
    border: 1px solid rgba(29, 185, 84, 0.2);
    border-radius: 18px;
    padding: 0 40px 0 35px;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.player-header .search-box input:focus {
    outline: none;
    border-color: #1db954;
    background: rgba(29, 185, 84, 0.1);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.player-header .search-box input::placeholder {
    color: #999;
}

.player-header .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.player-header .user-info i {
    font-size: 1.2rem;
    color: #1db954;
}