
        :root {
            --bg-dark: #0f1117;
            --bg-card: rgba(25, 28, 36, 0.95);
            --bg-hover: rgba(45, 50, 65, 0.85);
            --primary: #d4af37;
            --primary-dark: #b08d26;
            --accent: #ffd700;
            --text-primary: #f0f0f8;
            --text-secondary: #a0a8c0;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s ease;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            --glass: rgba(255, 255, 255, 0.05);
            --glow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(135deg, #0f1117 0%, #1a1d28 100%);
            color: var(--text-primary);
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            min-height: 100vh;
            padding: 15px 10px;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
            pointer-events: none;
            z-index: -2;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 10px;
            position: relative;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            border-radius: var(--radius-md);
            transition: var(--transition);
            z-index: 1001;
        }
        
        .mobile-menu-btn:hover {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.1);
           
        }
        
        @media (max-width: 1023px) {
            .mobile-menu-btn {
                display: flex;
            }
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: -0.5px;
            color: var(--primary);
        }
        
        @media (min-width: 1024px) {
            .logo {
                font-size: 24px;
            }
        }
        
        .logo i {
            color: var(--primary);
            font-size: 28px;
            transition: transform 0.5s ease;
        }
        
        .logo:hover i {
            transform: rotate(15deg);
        }
        
        /* 导航菜单样式 - 新设计 */
        .nav-menu {
            display: flex;
            gap: 5px;
            position: relative;
        }
        
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            overflow: hidden;
        }
        
        .nav-link i {
            font-size: 16px;
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
            transform: translateY(-3px);
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
            pointer-events: none;
            opacity: 0;
        }
        
        .nav-link:hover::before {
            transform: translateX(0);
            opacity: 1;
            transition-duration: 0.6s;
        }
        
        .nav-link.active {
            color: var(--accent);
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.5);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }
        
        .nav-link.active::before {
            transform: translateX(0);
            opacity: 1;
            transition-duration: 0.6s;
        }
        
        /* 移动端菜单 - 优化设计 */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 17, 23, 0.95);
            z-index: 1000;
            flex-direction: column;
            backdrop-filter: blur(10px);
            transform: translateX(100%);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            visibility: hidden;
            display: flex;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            min-height: 70px;
        }
        
        .mobile-menu-center-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            color: var(--primary);
        }
        
        .mobile-menu-logo {
            font-size: 22px;
            color: var(--primary);
            font-weight: 600;
            display: none;
            align-items: center;
            gap: 10px;
        }
        
        .mobile-menu-logo i {
            font-size: 22px;
            color: var(--primary);
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 24px;
            cursor: pointer;
            padding: 12px;
            border-radius: var(--radius-md);
            transition: var(--transition);
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            flex-shrink: 0;
        }
        
        .mobile-menu-close:hover {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.2);
           
        }
        
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            padding: 20px;
            overflow-y: auto;
            flex-grow: 1;
        }
        
        .mobile-menu .nav-link {
            padding: 15px;
            font-size: 16px;
            width: 100%;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border-radius: var(--radius-md);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            opacity: 0;
            transform: translateX(20px);
            margin-bottom: 8px;
            box-sizing: border-box;
        }
        
        .mobile-menu.active .nav-link {
            opacity: 1;
            transform: translateX(0);
            transition-delay: calc(0.05s * var(--index, 0));
        }
        
        .mobile-menu .nav-link:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateX(5px);
            color: var(--primary);
        }
        
        .mobile-menu .nav-link.active {
            color: var(--primary);
            background: rgba(212, 175, 55, 0.15);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        }
        
        .mobile-menu .nav-link:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .mobile-menu-footer {
            padding: 20px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        /* 移动端菜单按钮 - 优化设计 */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
        }
        
        .mobile-menu-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary);
        }
        
        .mobile-menu-btn span {
            position: absolute;
            height: 3px;
            width: 24px;
            background: currentColor;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn span:nth-child(1) {
            top: 12px;
        }
        
        .mobile-menu-btn span:nth-child(2) {
            top: 18px;
        }
        
        .mobile-menu-btn span:nth-child(3) {
            top: 24px;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 18px;
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 18px;
        }
        
        /* 移动端专属样式 */
@media (max-width: 767px) {
  .album-item {
    flex-direction: column !important;
    width: 100%;
    aspect-ratio: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .album-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }

  .album-image img {
    object-fit: cover;
    height: 100% !important;
    border-radius: 8px;
  }
}

/* 音乐播放器样式 */
.player-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        @media (min-width: 1024px) {
            .player-container {
                flex-direction: row;
                align-items: stretch; /* 修改为stretch使子元素高度拉伸 */
                justify-content: space-between;
                gap: 30px; /* 增加间距 */
                height: 600px; /* 设置固定高度 */
                max-width: 1400px; /* 增加总宽度 */
                margin: 10px auto; /* 居中显示 */
            }
            
            .songs-sidebar {
                width: 380px; /* 增大列表区域 */
                flex-shrink: 0;
                margin-top: 0;
                display: flex;
                flex-direction: column;
            }
            
            .songs-sidebar .songs-list {
                flex: 1; /* 占据剩余空间 */
                overflow-y: auto; /* 启用滚动 */
            }
            
            .main-player {
                flex: 1;
                margin-top: 0;
                min-width: 0;
            }
        }
        
        /* 主播放器样式 */
        .main-player {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }@media (max-width: 768px) {
            .main-player {
               gap: 10px;
            }
        }
        
        .player-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .album-cover {
            width: 280px;
            height: 280px;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            overflow: visible;
        }
        
        .album-cover:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
        }
        
        .album-cover .cover-image {
            width: 100%;
            height: 100%;
            border-radius: var(--radius-md);

            z-index: 2;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .album-cover .cover-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            /* 调整图像圆角以匹配容器 */
            border-radius: var(--radius-md);
            /* 增加图像缩放以消除直角边 */
            transform: scale(1.05);
            /* 确保图像在容器内正确显示 */
            will-change: transform;
        }
        
        /* 黑胶唱片样式 */
        .vinyl-record {
            position: absolute;
            width: 280px; /* 从200px增大到280px */
            height: 280px; /* 从200px增大到280px */
            background: radial-gradient(circle, #000 0%, #000 60%, #333 100%);
            border-radius: 50%;
            border: 2px solid #222;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
            top: 50%;
            right: -140px; /* 调整位置以适应增大后的尺寸 */
            transform: translateY(-50%);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* 添加唱片纹理效果 */
            background-image: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px, 40px 40px, 25px 25px;
        }
        
        .vinyl-record::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #222;
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            z-index: 3;
            /* 添加高光效果 */
            box-shadow: 
                0 0 5px rgba(0, 0, 0, 0.5),
                inset 0 0 5px rgba(255, 255, 255, 0.3);
        }
        
        .vinyl-record .label {
            width: 85px; /* 从60px增大到85px */
            height: 85px; /* 从60px增大到85px */
            background: #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: space-around;
            color: #000;
            font-weight: bold;
            font-size: 8px; /* 调整字体大小为8px */
            text-align: center;
            z-index: 2;
            border: 2px solid #222;
            /* 添加标签细节 */
            box-shadow: 
                inset 0 0 5px rgba(0, 0, 0, 0.5),
                0 0 2px rgba(0, 0, 0, 0.3);
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
            line-height: 1.2;
        }
        
        .label-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: -2px; /* 将整个组向上移动一点 */
            margin-left: -14px; /* 根据用户要求修改 */
        }
        
        .second-group {
            /* 调整第二组位置使其对称 */
            margin-right: -14px; /* 根据用户要求修改 */
            
        }
        
        /* 添加唱片高光效果 */
        .vinyl-record::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        
        /* 播放时黑胶旋转动画 */
        .album-cover.playing .vinyl-record {
            animation: rotate 3s linear infinite;
            will-change: transform;
        }
        
        @keyframes rotate {
            from {
                transform: translateY(-50%) rotate(0deg);
            }
            to {
                transform: translateY(-50%) rotate(360deg);
            }
        }
        
        /* 移动端优化动画 */
        @media (max-width: 768px) {
            .album-cover.playing .vinyl-record {
                animation: rotate 4s linear infinite; /* 移动端减慢旋转速度 */
            }
            
            /* 移动端播放动画已移除 */
            

        }
        

        
        .album-cover:hover img {
            filter: brightness(1.2);
        }
        
        /* 播放动效已移除 */
        
        .player-info {
            text-align: center;
            margin-top: 5px;
            max-width: 550px; /* 增加最大宽度 */
        }
        
        .song-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }
        
        .song-artist {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        
        .player-controls {
            width: 100%;
            max-width: 550px; /* 增加最大宽度 */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 20px auto;
        }
        @media (max-width: 768px) {
            .player-controls {
                gap: 10px;margin: 10px auto;
            }
        }
    
        
        /* 控制按钮样式 - 磨砂玻璃效果 */
        .control-btn, .nav-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .control-btn::before, .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: -1;
            pointer-events: none;
        }
        
        .control-btn:hover::before, .nav-btn:hover::before {
            transform: translateX(100%);
            transition-duration: 1s;
        }
        
        .control-btn {
            font-size: 18px;
        }
        
        .nav-btn {
            font-size: 28px;
            width: 60px;
            height: 60px;
        }
        
        .control-btn:hover, .nav-btn:hover {
            background: rgba(212, 175, 55, 0.15);
            color: var(--primary);
            border: 1px solid rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
            border-radius: var(--radius-md);
            z-index: 2;
            transform: translateY(-2px);
        }
        
        /* 播放/暂停按钮样式 - 磨砂玻璃效果 */
        .play-pause-btn {
            width: 80px;
            height: 80px;
            font-size: 32px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .play-pause-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: -1;
            pointer-events: none;
        }
        
        .play-pause-btn:hover::before {
            transform: translateX(100%);
            transition-duration: 1s;
        }
        
        .play-pause-btn:hover {
            background: rgba(212, 175, 55, 0.15);
            color: var(--primary);
            border: 1px solid rgba(212, 175, 55, 0.4);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
            border-radius: var(--radius-md);
            z-index: 2;
            transform: scale(1.05);
        }
        
        .play-pause-btn:active {
            transform: scale(0.98);
        }
        
        /* 音量和进度条样式增强 */
        .progress-container {
            width: 100%;
            max-width: 550px; /* 增加最大宽度 */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 1px auto;
        }
        
        .progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: height 0.2s ease;
        }
        
        .progress-bar:hover {
            height: 8px;
        }
        
        .progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            transition: width 0.1s ease;
            position: relative;
        }
        
        .progress::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 10px var(--primary);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .progress-bar:hover .progress::after {
            opacity: 1;
        }
        
        .time {
            font-size: 12px;
            color: var(--text-secondary);
            min-width: 40px;
            text-align: center;
        }
        
        /* 歌曲列表样式 */
        .songs-sidebar {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.15);
            max-height: 100%;
            overflow-y: auto;
            display: none;
        }
        
        @media (min-width: 1024px) {
            .songs-sidebar {
                display: block;
            }
        }
        
        .songs-sidebar.active {
            display: block;
        }
        
        .songs-header {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(212, 175, 55, 0.05);
        }
        
        .songs-list {
            padding: 10px;
        }
        
        .song-item {
            padding: 10px 15px;
            margin-bottom: 5px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .song-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: -1;
            pointer-events: none;
        }
        
        .song-item:hover::before {
            transform: translateX(100%);
            transition-duration: 1s;
        }
        
        .song-item:hover {
            background: var(--bg-hover);
            transform: translateX(5px);
        }
        
        .song-item.active {
            background: rgba(212, 175, 55, 0.15);
            border-left: 3px solid var(--primary);
        }
        
        .song-number {
            color: var(--text-secondary);
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        .song-details {
            flex: 1;
            overflow: hidden;
        }
        
        .song-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-bottom: 2px;
        }
        
        .song-artist-name {
            font-size: 12px;
            color: var(--text-secondary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        /* 专辑列表样式 - 居中显示 */
        .albums-section {
            
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .albums-list {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            justify-items: center;
            max-width: 1300px; /* 增加最大宽度以容纳6列 */
            width: 100%;
        }
        
        .album-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: var(--shadow);
            width: 100%;
            
        }
        
        .album-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: 1;
            pointer-events: none;
        }
        
        .album-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            z-index: 2;
            border-color: var(--primary);
        }
        
        .album-item:hover::before {
            transform: translateX(100%);
            transition-duration: 1s;
        }
        
        .album-image {
            width: 100%;
            aspect-ratio: 1/1;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;
            /* 确保在所有设备上保持正确的宽高比 */
            flex-shrink: 0;
        }
        
 
        
        .album-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .album-item:hover .album-image img {
            transform: scale(1.05);
        }
        
        .album-info {
            padding: 6px;
            text-align: center;
            border-top: 2px solid #fdd504;
        }
        
        .album-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition: color 0.3s ease;
        }
        
        .album-item:hover .album-title {
            color: var(--primary);
        }
        
        /* 移动端歌曲列表样式 */
        .mobile-songs-list {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.15);
           
            display: block;
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        @media (min-width: 1024px) {
            .mobile-songs-list {
                display: none;
            }
        }
        
        @media (max-width: 1023px) {
            .mobile-songs-list .songs-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 20px;
                cursor: pointer;
            }
            
            .mobile-songs-list .songs-title {
                display: flex;
                align-items: center;
                font-size: 16px;
                font-weight: 500;
                color: var(--text-primary);
            }
            
            .mobile-songs-list .songs-title i {
                margin-right: 8px;
            }
            
            .mobile-songs-list .collapse-btn {
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(212, 175, 55, 0.1);
                border-radius: 50%;
                cursor: pointer;
                transition: all 0.3s ease;
                color: var(--text-secondary);
            }
            
            .mobile-songs-list .collapse-btn:hover {
                background: rgba(212, 175, 55, 0.2);
                color: var(--primary);
            }
            
            .mobile-songs-list .collapse-btn i {
                transition: transform 0.3s ease;
                font-size: 14px;
            }
            
            .mobile-songs-list.collapsed .collapse-btn i {
                transform: rotate(180deg);
            }
            
            .mobile-songs-list .songs-list {
                max-height: 250px; /* 约5首歌曲的高度 */
                overflow-y: auto;
                padding: 0;
                transition: all 0.3s ease;
            }
            
            .mobile-songs-list.collapsed .songs-list {
                max-height: 0;
                padding: 0;
                overflow: hidden;
            }
            
            .mobile-songs-list .song-item {
                margin-bottom: 0;
                border-radius: 0;
                border-bottom: 1px solid rgba(212, 175, 55, 0.05);
            }
            
            .mobile-songs-list .song-item:last-child {
                border-bottom: none;
            }
            
            .mobile-songs-list .song-item:hover {
                transform: none;
            }
        }
        
        /* 移动端歌曲列表限制高度和滚动 */
        @media (max-width: 1023px) {
            .mobile-songs-list .songs-list {
                max-height: 250px; /* 约5首歌曲的高度 */
                overflow-y: auto;
                overflow-x: hidden;
                scrollbar-width: thin;
                scrollbar-color: var(--primary) transparent;
            }
            
            .mobile-songs-list .songs-list::-webkit-scrollbar {
                width: 4px;
            }
            
            .mobile-songs-list .songs-list::-webkit-scrollbar-track {
                background: transparent;
            }
            
            .mobile-songs-list .songs-list::-webkit-scrollbar-thumb {
                background: var(--primary);
                border-radius: 2px;
            }
        }
        
        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: rgba(212, 175, 55, 0.5);
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
        footer {
            text-align: center;
            padding: 30px 0 15px;
            color: var(--text-secondary);
            font-size: 14px;    
            
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 1023px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-menu {
                display: none;
            }
            
            .album-cover {
                width: 220px;
                height: 220px;
            }
            
            /* 移动端黑胶唱片适配 */
            .vinyl-record {
                width: 220px;
                height: 220px;
                right: -110px;
            }
            
            .vinyl-record .label {
                width: 65px;
                height: 65px;
                font-size: 5px;
            }
        }
        
        @media (max-width: 768px) {
            .albums-list {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
                
            }
            
            .album-item {
                max-width: none;
                width: 100%;
                padding: 0;
               height: auto;
            }
            
            .album-info {
                padding: 0;
                display: none;
            }
            
            .album-title {
                display: none;
                margin-bottom: 0;
            }
            .album-image {
                width: 100%;
                aspect-ratio: 1 / 1;
                position: relative;
                overflow: hidden;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            
            .song-title {
                font-size: 20px;
            }
            
            /* 进一步缩小专辑封面和黑胶唱片 */
            .album-cover {
                width: 200px;
                height: 200px;
            }
            
            .vinyl-record {
                width: 200px;
                height: 200px;
                right: -100px;
            }
            
            .vinyl-record .label {
                width: 60px;
                height: 60px;
                font-size: 4px;
            }
        }
        
        @media (max-width: 767px) {
  .album-item {
    width: 100%;
    aspect-ratio: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .album-image img {
    height: 100% !important;
    object-fit: cover;
  }
}
        @media (max-width: 480px) {
            .album-cover {
                width: 160px;
                height: 160px;
            }
            
            /* 移动端黑胶唱片适配 */
            .vinyl-record {
                width: 160px;
                height: 160px;
                right: -80px;
            }
            
            .vinyl-record .label {
                width: 50px;
                height: 50px;
                font-size: 3px;
            }
            

            
            .player-controls {
                gap: 15px;
            }
            
            .control-btn {
                padding: 10px;
                font-size: 14px;
            }
            
            .play-pause-btn {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .nav-btn {
                font-size: 24px;
                width: 50px;
                height: 50px;
            }
            
            .albums-list {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
              
            }
            
            .album-item {
                max-width: none;
                width: 100%;
                padding: 0;
                /* 确保在小屏幕上正确显示 */
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .album-info {
                padding: 0;
                display: none;
                border-top:none;
            }
            
            .album-title {
                display: none;
                margin-bottom: 0;
            }
        }
        




        

        
        /* 加载状态样式 */
        .play-pause-btn.loading {
            position: relative;
            cursor: not-allowed;
        }
        
        .loading-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--primary);
            font-size: 20px;
            z-index: 10;
        }
        
        /* 错误提示样式 */
        .error-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: rgba(220, 53, 69, 0.95);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 10000;
            font-size: 14px;
            max-width: 300px;
            backdrop-filter: blur(10px);
            animation: slideInRight 0.3s ease-out;
        }
        
        .error-toast i {
            font-size: 16px;
            color: white;
        }
        
        .error-toast.fade-out {
            animation: slideOutRight 0.3s ease-out forwards;
        }
        
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
