.lg-album-page,
.lg-album-detail-page {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 1.2rem 0 5rem;
}

.lg-albums-main {
    min-height: calc(100vh - 220px);
    padding-bottom: 6rem;
}

.lg-album-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.lg-album-kicker {
    display: inline-flex;
    margin-bottom: 0.35rem;
    color: #7a6d76;
    font-family: 'Outfit', 'Noto Sans SC', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.lg-album-toolbar h1 {
    margin: 0;
    color: #17171c;
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.05;
}

.lg-album-total {
    min-width: 92px;
    padding: 0.72rem 0.88rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 8px 26px rgba(27, 24, 28, 0.08);
    text-align: right;
}

.lg-album-total strong {
    display: block;
    color: #18181b;
    font-size: 1.5rem;
    line-height: 1;
}

.lg-album-total span {
    color: #8d7f89;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.lg-masonry {
    column-count: 2;
    column-gap: 1rem;
}

.lg-masonry-col {
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    break-inside: avoid;
}

.lg-card {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 32px rgba(27, 24, 28, 0.08);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.lg-header,
.lg-footer,
.lg-content {
    padding: 0.86rem;
}

.lg-header,
.lg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.lg-author {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 0.62rem;
}

.lg-author__ring {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.lg-author__avatar {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.lg-author__badge {
    position: absolute;
    right: -3px;
    bottom: -2px;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
}

.lg-author__badge.male { background: #4f8bff; }
.lg-author__badge.female { background: #e86fa1; }

.lg-author__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lg-author__name {
    color: #25232a;
    font-size: 0.92rem;
    font-weight: 800;
}

.lg-author__meta,
.lg-location-tag,
.lg-action-item,
.lg-photo-count .label {
    color: #827985;
    font-size: 0.76rem;
}

.lg-header-action {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    color: #25232a;
    background: #f4f1f3;
}

.lg-title {
    margin: 0;
    color: #18181b;
    font-size: 1.05rem;
    line-height: 1.4;
}

.lg-private-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    width: fit-content;
    margin-top: 0.48rem;
    padding: 0.22rem 0.52rem;
    border-radius: 999px;
    background: #fff0f5;
    color: #b83264;
    font-size: 0.72rem;
    font-weight: 800;
}

.lg-media {
    display: grid;
    gap: 3px;
    padding: 0 0.86rem;
}

.lg-media.grid-1 { grid-template-columns: 1fr; }
.lg-media.grid-2,
.lg-media.grid-3,
.lg-media.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lg-media.grid-5,
.lg-media.grid-6,
.lg-media.grid-7,
.lg-media.grid-8,
.lg-media.grid-9 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.lg-photo-box {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 8px;
    background: #ece7eb;
}

.lg-photo-box.square {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.lg-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lg-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.48);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}

.lg-location-tag,
.lg-actions-left,
.lg-action-item,
.lg-photo-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lg-location-tag {
    min-width: 0;
    max-width: 48%;
    cursor: pointer;
}

.lg-location-tag span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lg-actions-left {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lg-action-item[data-like-target] {
    border: 0;
    padding: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.lg-action-item[data-like-target]:focus-visible,
.lgnew-new-photo-head-chip[data-like-target]:focus-visible,
.lgnewui-detail-rail-btn[data-like-target]:focus-visible {
    outline: 2px solid rgba(217, 95, 136, 0.46);
    outline-offset: 3px;
}

.lg-action-item.active,
.lgnewui-detail-rail-btn.active {
    color: #d95f88;
}

.lg-photo-count .num {
    color: #242128;
    font-weight: 900;
}

.lg-album-empty {
    display: grid;
    min-height: 240px;
    place-items: center;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    color: #716875;
    text-align: center;
}

.lg-album-empty i {
    color: #c4a8b7;
    font-size: 2.6rem;
}

.lg-private-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,240,246,0.88));
    box-shadow: 0 16px 44px rgba(39, 31, 38, 0.11);
}

.lg-private-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.96), transparent 30%), radial-gradient(circle at 86% 82%, rgba(217,95,136,0.18), transparent 34%);
    pointer-events: none;
}

.lg-private-card .lg-header,
.lg-private-content {
    position: relative;
    z-index: 1;
}

.lg-private-content {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    gap: 0.95rem;
    padding: 1.2rem 1rem 1.45rem;
    text-align: left;
}

.lg-private-icon-box {
    position: relative;
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    border-radius: 26px;
    background: linear-gradient(145deg, #fff, #ffeaf2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 34px rgba(217,95,136,0.2);
}

.lg-private-icon-box::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(217,95,136,0.14);
    border-radius: 31px;
}

.lg-private-icon {
    color: #d95f88;
    font-size: 2.45rem;
}

.lg-private-title {
    margin: 0 0 0.28rem;
    color: #252027;
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.lg-private-desc {
    color: #a66b83;
    font-size: 0.82rem;
    font-weight: 800;
}

html.lgnewui-private-mode body {
    min-height: 100vh;
    overflow: hidden;
}

.lgnewui-private-wrapper {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    isolation: isolate;
}

.lgnewui-private-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #1f171d;
}

.lgnewui-private-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) saturate(0.76) brightness(0.82);
    transform: scale(1.08);
}

.lgnewui-private-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.16), transparent 34%), linear-gradient(180deg, rgba(20,14,20,0.35), rgba(20,14,20,0.72));
}

.lgnewui-private-capsule {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.lgnewui-private-capsule-btn {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
}

.lgnewui-private-capsule-btn:hover {
    background: rgba(255,255,255,0.22);
}

.lgnewui-private-capsule-btn svg,
.lgnewui-private-input-icon,
.lgnewui-private-eye-icon,
.lgnewui-private-btn-icon,
.lgnewui-private-icon-box svg {
    width: 18px;
    height: 18px;
}

.lgnewui-private-capsule-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.34);
}

.lgnewui-private-main-card {
    width: min(430px, 100%);
    padding: 2rem 1.35rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.68);
    border-radius: 32px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 28px 90px rgba(24,15,23,0.28);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.lgnewui-private-header {
    text-align: center;
}

.lgnewui-private-icon-box {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 0.9rem;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, #fff0f5);
    color: #d95f88;
    box-shadow: 0 16px 34px rgba(217,95,136,0.2);
}

.lgnewui-private-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.68rem;
}

.lgnewui-private-badge {
    display: inline-flex;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(217,95,136,0.12);
    color: #bd416e;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.lgnewui-private-title {
    margin: 0;
    color: #1f1a20;
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.08;
}

.lgnewui-private-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    margin: 0.75rem 0 1.35rem;
    color: #7c707a;
    font-size: 0.9rem;
    font-weight: 700;
}

.lgnewui-private-divider-left,
.lgnewui-private-divider-right {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217,95,136,0.5));
}

.lgnewui-private-divider-right {
    background: linear-gradient(90deg, rgba(217,95,136,0.5), transparent);
}

.lgnewui-private-highlight {
    margin: 0 0.2rem;
    color: #d95f88;
    font-weight: 900;
}

.lgnewui-private-form {
    display: grid;
    gap: 0.85rem;
}

.lgnewui-private-input-wrapper {
    position: relative;
}

.lgnewui-private-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    color: #b993a3;
    transform: translateY(-50%);
}

.lgnewui-private-input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(217,95,136,0.16);
    border-radius: 18px;
    padding: 0 3rem 0 2.8rem;
    color: #241e25;
    background: rgba(255,255,255,0.74);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.84);
    outline: 0;
    font-size: 1rem;
    font-weight: 800;
}

.lgnewui-private-input:focus {
    border-color: rgba(217,95,136,0.62);
    box-shadow: 0 0 0 4px rgba(217,95,136,0.12);
}

.lgnewui-private-eye-btn {
    position: absolute;
    right: 0.55rem;
    top: 50%;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 14px;
    color: #9b7a88;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.lgnewui-private-btn {
    position: relative;
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #d95f88, #a85fd9);
    box-shadow: 0 16px 34px rgba(217,95,136,0.3);
    font-size: 0.98rem;
    font-weight: 900;
    cursor: pointer;
}

.lgnewui-private-btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.36) 45%, transparent 75%);
    transform: translateX(-110%);
    animation: lgPrivateShimmer 3s ease-in-out infinite;
}

.lgnewui-private-error {
    border-radius: 14px;
    padding: 0.62rem 0.76rem;
    background: rgba(210,59,93,0.1);
    color: #c73558;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
}

.lgnewui-private-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.lgnewui-private-avatar-img-box {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(31,24,30,0.16);
}

.lgnewui-private-avatar-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lgnewui-private-heart {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
}

.lgnewui-private-glow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d95f88;
    box-shadow: 0 0 0 8px rgba(217,95,136,0.12), 0 0 22px rgba(217,95,136,0.6);
}

.fade-in-up {
    animation: lgPrivateFadeUp 0.58s cubic-bezier(.2,.8,.2,1) both;
}

.lgnewui-private-shake {
    animation: lgPrivateShake 0.36s ease both;
}

@keyframes lgPrivateFadeUp {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lgPrivateShimmer {
    0%, 52% { transform: translateX(-110%); }
    100% { transform: translateX(110%); }
}

@keyframes lgPrivateShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-7px); }
    40%, 80% { transform: translateX(7px); }
}

.lg-private-gate {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 1.5rem;
    width: min(1040px, 100%);
    margin: 1.8rem auto 0;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 24px 70px rgba(43, 33, 43, 0.12);
}

.lg-private-gate__media {
    min-height: 420px;
    overflow: hidden;
    border-radius: 20px;
    background: #efe8ec;
}

.lg-private-gate__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) saturate(0.8);
    transform: scale(1.04);
}

.lg-private-gate__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.lg-private-gate__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.36rem 0.74rem;
    border-radius: 999px;
    background: #fff0f5;
    color: #b83264;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.lg-private-gate__panel h1 {
    margin: 0;
    color: #211b22;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
}

.lg-private-gate__panel p {
    margin: 0.9rem 0 1.4rem;
    color: #6b626d;
    line-height: 1.7;
}

.lg-private-gate__form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a424c;
    font-size: 0.82rem;
    font-weight: 800;
}

.lg-private-gate__input-row {
    display: flex;
    gap: 0.6rem;
}

.lg-private-gate__input-row input {
    min-width: 0;
    flex: 1;
    height: 46px;
    border: 1px solid rgba(181, 128, 154, 0.3);
    border-radius: 14px;
    padding: 0 0.9rem;
    color: #211b22;
    background: rgba(255,255,255,0.82);
    outline: 0;
}

.lg-private-gate__input-row input:focus {
    border-color: #d95f88;
    box-shadow: 0 0 0 4px rgba(217, 95, 136, 0.12);
}

.lg-private-gate__input-row button {
    height: 46px;
    border: 0;
    border-radius: 14px;
    padding: 0 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #d95f88, #9c5fd9);
    font-weight: 900;
    cursor: pointer;
}

.lg-private-gate__error {
    margin-top: 0.7rem;
    color: #d23b5d;
    font-size: 0.82rem;
    font-weight: 800;
}

.lg-album-back {
    color: #18181b;
    font-weight: 800;
}

.lgnew-new-photo-head-wrapper {
    width: min(1120px, 100%);
    margin: 0 auto 1.4rem;
}

.lgnew-new-photo-head-hero-header {
    position: relative;
    min-height: min(64vh, 560px);
    overflow: hidden;
    border-radius: 26px;
    background: #161317;
}

.lgnew-new-photo-head-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lgnew-new-photo-head-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.72) 100%);
}

.lgnew-new-photo-head-hero-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem);
    color: #fff;
}

.lgnew-new-photo-head-title {
    margin: 0 0 1rem;
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 7vw, 4.8rem);
    line-height: 1;
}

.lgnew-new-photo-head-info-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.lgnew-new-photo-head-chips-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.lgnew-new-photo-head-watermark,
.lgnew-new-photo-head-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.34rem 0.62rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.78rem;
    font-weight: 700;
}

button.lgnew-new-photo-head-chip {
    border: 1px solid rgba(255,255,255,0.2);
    font-family: inherit;
    cursor: pointer;
}

.lgnew-new-photo-head-watermark {
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.lgnew-new-photo-head-watermark-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f6a7bf;
}

.lgnew-new-photo-head-chip-icon-bg {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
}

.lgnew-new-photo-head-chip-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.lgnewui-new-photo {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.imglist-masonry-grid {
    column-count: 3;
    column-gap: 1rem;
}

.imglist-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    overflow: hidden;
    break-inside: avoid;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(27,24,28,0.08);
    position: relative;
}

.imglist-item img {
    display: block;
    width: 100%;
    height: auto;
}

.imglist-image-fallback {
    display: none;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #6f6886;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, #f7f3fb, #eef4ff);
}

.imglist-image-fallback i {
    color: #8b5cf6;
    font-size: 30px;
}

.imglist-image-fallback em {
    font-style: normal;
}

.imglist-live-video {
    position: absolute;
    inset: 0 0 43px 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
    background: #17131f;
    z-index: 1;
}

.imglist-item.live-playing .imglist-live-video {
    opacity: 1;
    pointer-events: auto;
}

.imglist-item.live-buffering img {
    filter: brightness(0.86);
}

.imglist-live-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 68px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: 999px;
    background: rgba(17,24,39,0.62);
    color: #fff;
    font-family: 'Outfit', 'Noto Sans SC', sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(20,17,32,0.18), inset 0 1px 0 rgba(255,255,255,0.16);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.imglist-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fb7185;
    box-shadow: 0 0 0 4px rgba(251,113,133,.22), 0 0 16px rgba(251,113,133,.72);
}

.imglist-live-message {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 52px;
    z-index: 3;
    display: none;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(20,17,32,0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.imglist-item.live-error .imglist-live-message {
    display: block;
}

.imglist-live-btn:hover {
    background: rgba(236,72,153,0.82);
    transform: translateY(-1px);
}

.imglist-item.live-playing .imglist-live-btn {
    background: rgba(236,72,153,0.88);
}

.imglist-item.live-buffering .imglist-live-dot {
    animation: imglistLivePulse .8s ease-in-out infinite;
}

@keyframes imglistLivePulse {
    0%, 100% { transform: scale(1); opacity: .68; }
    50% { transform: scale(1.42); opacity: 1; }
}

.imglist-item figcaption {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.72rem 0.86rem;
    color: #4a444d;
    font-size: 0.86rem;
    font-weight: 700;
}

.imglist-item figcaption span {
    color: #9b8f99;
}

.imglist-load-done {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.2rem auto 0;
    color: #928690;
    font-size: 0.8rem;
}

.imglist-done-line {
    width: 52px;
    height: 1px;
    background: #ddd4da;
}

.lgnewui-detail-vertical-rail {
    position: fixed;
    right: max(18px, calc((100vw - 1120px) / 2 + 12px));
    bottom: 128px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.lgnewui-detail-rail-btn {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.86);
    color: #25232a;
    box-shadow: 0 8px 24px rgba(27,24,28,0.12);
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.lgnewui-detail-rail-btn:hover {
    background: #fff;
    color: #ec4899;
    transform: translateY(-1px);
}

.lgnewui-detail-rail-btn i {
    font-size: 20px;
}

.lgnewui-detail-rail-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    display: none;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(20,17,32,0.88);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(20,17,32,0.14);
}

.lgnewui-detail-rail-btn:hover .lgnewui-detail-rail-tooltip {
    display: inline-flex;
}

    @media (max-width: 900px) {
    .lg-masonry,
    .imglist-masonry-grid {
        column-count: 2;
    }

    .lg-private-gate {
        grid-template-columns: 1fr;
    }

    .lg-private-gate__media {
        min-height: 260px;
    }

    .lgnew-new-photo-head-info-bar {
        flex-direction: column;
    }

    .lgnewui-detail-vertical-rail {
        right: 14px;
        bottom: 104px;
        top: auto;
        flex-direction: column;
        transform: none;
    }

    .lgnewui-detail-rail-tooltip {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .lg-album-page,
    .lg-album-detail-page {
        width: min(100% - 18px, 1120px);
    }

    .lg-album-toolbar {
        align-items: flex-start;
    }

    .lg-masonry,
    .imglist-masonry-grid {
        column-count: 1;
    }

    .lgnew-new-photo-head-hero-header {
        min-height: 58vh;
        border-radius: 20px;
    }

    .lg-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .lg-location-tag {
        max-width: 100%;
    }

    .lg-private-gate {
        padding: 0.72rem;
        border-radius: 20px;
    }

    .lg-private-gate__panel {
        padding: 1.2rem 0.7rem 1.4rem;
    }

    .lg-private-gate__input-row {
        flex-direction: column;
    }

    .lg-private-content {
        min-height: 190px;
        justify-content: flex-start;
    }

    .lgnewui-private-wrapper {
        min-height: 100svh;
        padding: 4.8rem 0.85rem 1.4rem;
    }

    .lgnewui-private-main-card {
        border-radius: 26px;
        padding: 1.65rem 1rem 1.2rem;
    }

    .lgnewui-private-title {
        font-size: 2.15rem;
    }

    .lgnewui-private-subtitle {
        gap: 0.42rem;
        font-size: 0.82rem;
    }

    .lgnewui-private-divider-left,
    .lgnewui-private-divider-right {
        width: 24px;
    }
}
