.streamtuner-sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #191414;
    color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
.streamtuner-sticky.st-sticky-bottom { bottom: 0; }
.streamtuner-sticky.st-sticky-top { top: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.st-sticky-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.st-sticky-artwork {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-sticky-artwork img { width: 100%; height: 100%; object-fit: cover; }
.st-sticky-artwork .st-artwork-placeholder { font-size: 18px; opacity: 0.4; }

.st-sticky-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.st-sticky-station {
    display: block;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-sticky-track {
    display: block;
    font-size: 12px;
    color: #b3b3b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.st-sticky-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.st-sticky-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #1db954;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-sticky-play .st-icon-pause { display: none; }
.streamtuner-sticky.is-playing .st-sticky-play .st-icon-play { display: none; }
.streamtuner-sticky.is-playing .st-sticky-play .st-icon-pause { display: flex; }

.st-sticky-volume input {
    width: 70px;
    accent-color: #1db954;
}

.st-sticky-close {
    background: none;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
}
.st-sticky-close:hover { color: #fff; }

@media (max-width: 480px) {
    .st-sticky-volume { display: none; }
}
