.minimal-audio-player {
    --map-bg: #ffffff;
    --map-text: #1a1a1a;
    --map-muted: #888888;
    --map-accent: #1a1a1a;
    --map-border: #e5e5e5;
    --map-hover: #f5f5f5;
    
    font-family: Lato, sans-serif;
    max-width: 400px;
    background: var(--map-bg);
    border: 1px solid var(--map-border);
    border-radius: 0px;
    padding: 1.25rem;
    font-size: 15px;
    text-align: center;
}

.map-now-playing {
    text-align: center;
    margin-bottom: 1rem;
}

.map-track-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--map-text);
}

.map-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.map-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--map-text);
    border-radius: 50%;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-btn:hover {
    background: var(--map-hover);
}

.map-play {
    width: 48px;
    height: 48px;
    border: 2px solid var(--map-accent);
}

.map-progress-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.map-time {
    font-size: 0.75rem;
    color: var(--map-muted);
    min-width: 36px;
    font-variant-numeric: tabular-nums;
}

.map-duration {
    text-align: right;
}

.map-progress {
    flex: 1;
    height: 4px;
    background: var(--map-border);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.map-progress-bar {
    height: 100%;
    background: var(--map-accent);
    border-radius: 2px;
    width: 0;
    transition: width 0.1s linear;
}

.map-tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.map-track {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s;
}

.map-track:hover {
    background: var(--map-hover);
}

.map-track.active {
    background: var(--map-hover);
}

.map-track.active .map-track-num,
.map-track.active .map-track-name {
    color: var(--map-accent);
    font-weight: 500;
}

.map-track-num {
    width: 24px;
    font-size: 1.3rem;
    color: var(--map-muted);
}

.map-track-name {
    font-size: 1.3rem;
    color: var(--map-text);
}

.map-playlist-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #111;
}

