:root {
    --pink-500: #ec4899;
    --blue-500: #3b82f6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: rgba(10, 1, 24, 0.95);
    color: white;
    display: flex;
    align-items: center;
}
.mini-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(59,130,246,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.mini-album-art {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    animation: pulse 3s ease-in-out infinite;
    transition: opacity 0.25s ease;
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.mini-track-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    transition: opacity 0.25s ease;
}
.mini-track-title {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mini-track-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mini-live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ef4444;
    flex-shrink: 0;
}
.mini-live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.mini-listeners {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}
.mini-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink-500);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.1s;
}
.mini-play-btn:hover { background: #d53f8c; transform: scale(1.08); }
.mini-play-btn svg { width: 20px; height: 20px; }
.mini-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.mini-volume input[type="range"] {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}
.mini-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--pink-500);
    border-radius: 50%;
    cursor: pointer;
}
.mini-station-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}
@media (max-width: 400px) {
    .mini-volume { display: none; }
    .mini-listeners { display: none; }
}
