/* ==================== 视频发布悬浮进度窗口 ==================== */
.ls-vp-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    cursor: grab;
    user-select: none;
}

.ls-vp-card {
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s cubic-bezier(.25,.8,.25,1);
    position: relative;
}
.ls-vp-card.ls-vp-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 封面背景（模糊） */
.ls-vp-card-cover {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
}

/* 内容区 */
.ls-vp-card-body {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
}

/* 圆形进度环 */
.ls-vp-card-ring {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.ls-vp-card-ring svg {
    width: 100%;
    height: 100%;
}
.ls-vp-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 3;
}
.ls-vp-ring-fg {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.5s ease;
}
.ls-vp-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* 标题和状态 */
.ls-vp-card-info {
    flex: 1;
    min-width: 0;
}
.ls-vp-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ls-vp-card-status {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* 关闭按钮 */
.ls-vp-card-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.ls-vp-card-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
