.podcast-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(22, 16, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    z-index: 999999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.podcast-sticky-player.is-visible {
    transform: translateY(0);
}
.podcast-sp-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}
.podcast-sp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 25%;
    min-width: 200px;
}
.podcast-sp-info img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    background: #333;
}
.podcast-sp-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.podcast-sp-text strong {
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.podcast-sp-text span {
    font-size: 13px;
    color: #aaa;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.podcast-sp-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 600px;
}
.podcast-sp-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.podcast-sp-buttons button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}
.podcast-sp-buttons button:hover {
    color: #da9157;
    transform: scale(1.1);
}
.podcast-sp-buttons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
#podcast-sp-play svg {
    width: 36px;
    height: 36px;
}
.podcast-sp-timeline {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 12px;
    color: #aaa;
    font-variant-numeric: tabular-nums;
}
.podcast-sp-timeline input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    --progress: 0%;
    background-image: linear-gradient(#da9157, #da9157);
    background-size: var(--progress) 100%;
    background-repeat: no-repeat;
}
.podcast-sp-timeline input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.podcast-sp-timeline:hover input[type="range"]::-webkit-slider-thumb {
    opacity: 1;
}
.podcast-sp-timeline input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.podcast-sp-timeline:hover input[type="range"]::-moz-range-thumb {
    opacity: 1;
}
.podcast-sp-timeline input[type="range"]::-moz-range-track {
    background: transparent;
}
.podcast-sp-actions {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}
#podcast-sp-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
#podcast-sp-close:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .podcast-sp-inner {
        flex-direction: column;
        padding: 15px;
        padding-bottom: env(safe-area-inset-bottom, 15px);
    }
    .podcast-sp-info {
        width: 100%;
    }
    .podcast-sp-controls {
        width: 100%;
    }
    .podcast-sp-actions {
        position: absolute;
        top: 15px;
        right: 15px;
        width: auto;
    }
}
