.yixian-live-photo {
    position: relative;
    margin: 1.2rem 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.yixian-live-photo__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0f172a;
}

.yixian-live-photo__poster,
.yixian-live-photo__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yixian-live-photo__poster {
    z-index: 1;
    transition: opacity .28s ease;
}

.yixian-live-photo__video {
    z-index: 2;
    opacity: 0;
    transition: opacity .28s ease;
    background: transparent;
}

.yixian-live-photo.is-playing .yixian-live-photo__poster {
    opacity: 0;
}

.yixian-live-photo.is-playing .yixian-live-photo__video {
    opacity: 1;
}

.yixian-live-photo__toggle {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.58);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.yixian-live-photo__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    font-size: 12px;
    font-weight: 700;
}

.yixian-live-photo__hint {
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .yixian-live-photo {
        border-radius: 18px;
    }

    .yixian-live-photo__toggle {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: center;
    }
}
