    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #37393b;
            color: #ffffff;
            min-height: 100vh;
            margin:0px;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.05) 0%, transparent 40%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 头部区域 */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 40px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background-color: #2e7d32;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: #2ecc71;
        }
        
        /* 主内容区 */
        .main-content {
            display: flex;
            gap: 60px;
            align-items: center;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        /* 专辑封面区 */
        .album-section {
            width: 380px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .album-cover {
            width: 200px;
            height: 200px;
            border-radius: 200px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(46, 125, 50, 0.2);
            margin-bottom: 30px;
            position: relative;
        }
        
        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .album-cover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
        }
        
        .song-details {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .song-title {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .song-artist {
            color: #b0b0b0;
            font-size: 16px;
            margin-bottom: 12px;
        }
        
        .song-album {
            color: #888;
            font-size: 14px;
        }
        
        .action-buttons {
            display: flex;
            gap: 16px;
        }
        
        .action-btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .favorite-btn {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        
        .favorite-btn:hover, .favorite-btn.active {
            background-color: #e74c3c;
            color: white;
        }
        
        .download-btn {
            background-color: rgba(46, 125, 50, 0.2);
            color: #2ecc71;
        }
        
        .download-btn:hover {
            background-color: #2e7d32;
            color: white;
        }
        
        /* 歌词区域 */
        .lyrics-section {
            width: 580px;
        }
        
        .section-title {
            font-size: 18px;
            margin-bottom: 20px;
            color: #b0b0b0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background-color: #2ecc71;
            border-radius: 2px;
        }
        
        .lyrics-container {
            height: 448px;
            overflow: hidden;
            position: relative;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .lyrics {
            position: absolute;
            width: calc(100% - 60px);
            transition: transform 0.3s ease-out;
            text-align: center;
        }
        
        .lyrics p {
            padding: 10px 0;
            color: #b0b0b0;
            font-size: 16px;
            transition: all 0.3s;
            line-height: 1.6;
        }
        
        .lyrics p.active {
            color: #2ecc71;
            font-size: 18px;
            font-weight: 500;
            transform: scale(1.03);
        }
        
        /* 播放器控制区 */
        .player-controls {
            background-color: rgb(55 58 59);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            backdrop-filter: blur(10px);
        }
        
        .controls-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
            color: #888;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            position: relative;
            cursor: pointer;
            margin-bottom: 20px;
        }
        
        .progress {
            height: 100%;
            background-color: #2ecc71;
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .progress-dot {
            position: absolute;
            width: 16px;
            height: 16px;
            background-color: #2ecc71;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            left: 0%;
            box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
            transition: left 0.1s linear;
        }
        
        .control-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: #b0b0b0;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .control-btn:hover {
            color: #2ecc71;
        }
        
        .prev-btn, .next-btn {
            font-size: 28px;
        }
        
        .shuffle-btn, .repeat-btn, .volume-btn {
            font-size: 20px;
        }
        
        .play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #2ecc71;
            color: white;
            font-size: 24px;
        }
        
        .play-btn:hover {
            background-color: #27ae60;
            color: white;
            transform: scale(1.05);
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 180px;
        }
        
        .volume-slider {
            width: 100%;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }
        
        .volume-level {
            height: 100%;
            background-color: #888;
            border-radius: 2px;
            width: 70%;
        }
        
        .volume-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #b0b0b0;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            left: 70%;
        }
        
        /* 底部区域 */
        .footer {
            text-align: center;
            padding: 20px 0;
            color: #666;
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* 动画效果 */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .album-cover.playing img {
            animation: rotate 20s linear infinite;
        }
        
        /* 响应式调整 */
        @media (max-width: 900px) {
            .main-content {
                flex-direction: column;
            }
            
            .album-section, .lyrics-section {
                width: 100%;
            }
        }
    </style>