

        .mini-player {
            position: fixed;
            top: 20px;
            left: 20px;
            width: 200px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 12px;
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            cursor: move;
            user-select: none;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
            border: 4px solid #4b6bf9;
        }

        .mini-player:hover {
            box-shadow: 
                0 12px 32px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .track-info {
            text-align: center;
            margin-bottom: 10px;
            padding: 8px;
            background-color: #4b6bf9;
            border-radius: 12px;
        }

        .track-name {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .track-artist {
            font-size: 10px;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .control-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: none;
            background-color: #4b6bf9;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: white;
            font-size: 12px;
        }

        .control-btn:hover {
            transform: scale(1.1);
            background-color: #4b6bf9;
        }

        .control-btn.play {
            width: 36px;
            height: 36px;
            background-color: #4b6bf9;
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
            color: white;
            font-size: 14px;
        }

        .control-btn.play:hover {
            transform: scale(1.15);
        }

        .control-btn:active {
            transform: scale(0.95);
        }