        /* Sticky Player Container - Bottom */

        .sticky-player {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            padding-bottom: 20px;
            transition: padding-bottom 0.3s ease;
            display:none;
        }
        .sticky-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(24,44,105,1) 11%, rgba(29,60,149,1) 46%);
            box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
            z-index: 10000;
            transition: all 0.3s ease;
            height: 70px;
        }

        .player-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            height: 70px;
        }

        .player-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }

        .player-cover {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .player-details {
            color: white;
            min-width: 0;
        }

        .player-title {
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-artist {
            font-size: 12px;
            opacity: 0.8;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .control-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
        }

        .control-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .control-btn.play-pause {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.25);
        }

        /* Progress Bar */
        .progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            display: none;
        }

        .progress-bar {
            height: 100%;
            background: rgba(255,255,255,0.8);
            width: 0%;
            transition: width 0.1s linear;
        }

        .progress-container:hover .progress-bar {
            background: white;
        }

        /* Playlist Panel */

        .playlist-panel {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            padding-bottom: 20px;
            transition: padding-bottom 0.3s ease;
            display:none;
        }
         

        .playlist-panel {
            position: fixed;
            bottom: 70px;
            left: 0;
            right: 0;
            top: 0;
            background: white;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .playlist-panel.open {
            transform: translateY(0);
        }

        .playlist-header {
            background: linear-gradient(180deg, rgba(24,44,105,1) 11%, rgba(29,60,149,1) 46%);
            color: white;
            padding: 0px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .playlist-header h2 {
            color: #ffffff;
            margin-bottom: 2px;
            padding: 20px;
            font-size: 20px;
        }



        .playlist-content {
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .playlist-selector {
            display: none;
        }

        .playlist-selector select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        .playlist-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .playlist-item:hover {
            background-color: #f8f9fa;
        }

        .playlist-item.active {
            background-color: #e3f2fd;
            border-left: 4px solid #667eea;
        }

        .playlist-item-cover {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
        }

        .playlist-item-info {
            padding-top: 20px;
        }

        .playlist-item-info h3 {
            font-size: 16px;
            margin-bottom: 3px;
            color: #333;
        }

        .playlist-item-info p {
            font-size: 14px;
            color: #666;
        }

        /* Playlist Toggle Button */
        .playlist-toggle {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 18px;
        }

        .playlist-toggle:hover {
            background: rgba(255,255,255,0.3);
        }

        .playlist-toggle.active {
            background: rgba(255,255,255,0.4);
        }

        /* Close Button */
        .close-playlist {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sticky-player {
                padding: 0px 12px;
            }

            .player-header {
                padding: 0px 15px;
            }

            .player-cover {
                width: 40px;
                height: 40px;
            }

            .player-title {
                font-size: 13px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 120px;
            }

            .player-artist {
                font-size: 11px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 120px;
            }

            .player-controls {
                gap: 10px;
            }

            .control-btn {
                width: 32px;
                height: 32px;
            }

            .control-btn.play-pause {
                width: 38px;
                height: 38px;
            }

            .player-details {
                max-width: 150px;
                min-width: 0;
            }

            .progress-container {
                display: none !important;
            }

            .playlist-panel {
                top: 70px;
            }

            .playlist-item {
                padding: 12px;
                gap: 12px;
            }

            .playlist-item-cover {
                width: 40px;
                height: 40px;
            }

            .playlist-item-info h3 {
                font-size: 14px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .playlist-item-info p {
                font-size: 12px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        @media (max-width: 480px) {
            .player-details {
                max-width: 100px;
            }

            .player-title {
                font-size: 12px;
            }

            .player-artist {
                display: none;
            }

            .playlist-panel {
                bottom: 60px;
            }
        }

        @media (min-width: 769px) {
            .progress-container {
                display: block !important;
            }
        }



        /* Mini Player State */
        .sticky-player.mini {
            /* background: rgba(102, 126, 234, 0.95); */
            /* backdrop-filter: blur(20px); */
        }

        /* Hidden APlayer */
        .aplayer {
            display: none;
        }