      /* 播放器主容器 */
        .music-player {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1920px;
            height: 100px;
            background: linear-gradient(90deg, #d10000, #a80000, #7a0000);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 -5px 25px rgba(200, 0, 0, 0.7);
            z-index: 1000;
            transition: all 0.5s ease;
            overflow: hidden;
        }
        
        /* 播放器内容区域 */
        .player-container {
            width: 1300px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        
        /* 控制按钮区域 */
        .controls {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        /* 控制按钮样式 */
        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .play-btn {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* 滚动文字区域 */
        .marquee-container {
            flex-grow: 1;
            margin: 0 30px;
            overflow: hidden;
            white-space: nowrap;
            height: 40px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            padding: 0 15px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .marquee-text {
            display: inline-block;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            animation: marquee 15s linear infinite;
            padding-left: 100%;
        }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* 右侧功能按钮区域 - 美化按钮 */
        .action-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .action-btn {
            padding: 10px 20px;
            border-radius: 25px;
            border: none;
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }
        
        .action-btn:hover::before {
            transform: translateX(100%);
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        
        .action-btn i {
            font-size: 18px;
        }
        
        #qq-btn {
            background: linear-gradient(135deg, #1e90ff, #0066cc);
        }
        
        #group-btn {
            background: linear-gradient(135deg, #ff6b6b, #cc0000);
        }
        
        #hide-btn {
            background: linear-gradient(135deg, #32cd32, #008000);
        }
        
        /* 迷你播放器样式 */
        .mini-player {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff0000, #b31217);
            display: none;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
        }
        
        .mini-player:hover {
            transform: scale(1.1);
        }
        
        .mini-player i {
            font-size: 24px;
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 1300px) {
            .player-container {
                width: 100%;
                padding: 0 10px;
            }
            
            .marquee-container {
                margin: 0 15px;
            }
        }
        
        @media (max-width: 768px) {
            .player-container {
                flex-wrap: wrap;
                height: auto;
                padding: 15px;
            }
            
            .marquee-container {
                order: 3;
                width: 100%;
                margin: 15px 0;
            }
            
            .action-buttons {
                order: 4;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .action-btn {
                margin: 5px;
            }
        }
        
        /* 状态提示 */
        .status-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 14px;
            z-index: 2000;
            display: none;
        }
        
        /* 配置说明 */
        .config-info {
            max-width: 800px;
            margin: 50px auto;
            background: rgba(30, 30, 60, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }
        
        .config-info h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #ff6b6b;
        }
        
        .config-info ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .config-info li {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .config-info code {
            background: rgba(0, 0, 0, 0.3);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: monospace;
        }
        
        .config-note {
            background: rgba(229, 45, 39, 0.2);
            border-left: 4px solid #e52d27;
            padding: 15px;
            border-radius: 0 4px 4px 0;
            margin: 20px 0;
        }