        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        
        .mini-music-player {
            width: 300px;
            height: 300px;
            background: white;
            border: 6px double #ff99cc;
            padding: 12px;
            box-shadow: 0 0 15px rgba(255, 153, 204, 0.7);
            display: flex;
            flex-direction: column;
        }
        
        .mini-player-header {
            text-align: center;
            margin-bottom: 8px;
            padding-bottom: 6px;
            border-bottom: 2px dotted #99ccff;
        }
        
        .mini-player-header h3 {
            color: #ff66aa;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .mini-now-playing {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .mini-album-art {
            width: 80px;
            height: 80px;
            margin-right: 10px;
            border: 2px solid #ff99cc;
            object-fit: cover;
        }
        
        .mini-song-info {
            flex-grow: 1;
            overflow: hidden;
        }
        
        .mini-song-info h4 {
            color: #6699cc;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 3px;
        }
        
        .mini-song-info p {
            color: #888;
            font-size: 11px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .mini-progress-container {
            width: 100%;
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            margin: 8px 0;
            cursor: pointer;
        }
        
        .mini-progress {
            height: 100%;
            background: linear-gradient(to right, #99ccff, #ff99cc);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s;
        }
        
        .mini-time-info {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: #888;
            margin-bottom: 10px;
        }
        
        .mini-controls {
            display: flex;
            justify-content: center;
            margin: 8px 0;
        }
        
        .mini-control-btn {
            width: 36px;
            height: 36px;
            margin: 0 6px;
            border: none;
            background: #ff99cc;
            color: white;
            border-radius: 50%;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 3px rgba(0,0,0,0.2);
            transition: all 0.2s;
        }
        
        .mini-control-btn:hover {
            background: #ff66aa;
            transform: scale(1.05);
        }
        
        .mini-playlist {
            flex-grow: 1;
            overflow-y: auto;
            list-style: none;
            border-top: 2px dotted #99ccff;
            padding-top: 8px;
            font-size: 12px;
        }
        
        .mini-playlist li {
            padding: 5px 8px;
            border-bottom: 1px dashed #ffcc99;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .mini-playlist li:hover {
            background: #f0f8ff;
        }
        
        .mini-playlist li.playing {
            background: #ffe6f2;
            font-weight: bold;
        }
        
        .mini-playlist li .mini-play-icon {
            margin-right: 6px;
            color: #ff99cc;
            font-size: 10px;
        }
        
        .mini-playlist li .mini-song-title {
            flex-grow: 1;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* Scrollbar styling */
        .mini-playlist::-webkit-scrollbar {
            width: 6px;
        }
        
        .mini-playlist::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        .mini-playlist::-webkit-scrollbar-thumb {
            background: #ff99cc;
            border-radius: 3px;
        }
        
        /* Blinking animation for currently playing song */
        @keyframes blink {
            50% { opacity: 0.7; }
        }
        
        .playing .mini-song-title {
            animation: blink 2s infinite;
            color: #ff66aa;
        }