:root {
    --ltj-pa-dark: #241323;
    --ltj-pa-cream: #fff7e8;
    --ltj-pa-paper: #fffaf1;
    --ltj-pa-yellow: #ffd84d;
    --ltj-pa-orange: #ff9233;
    --ltj-pa-pink: #ff75b8;
    --ltj-pa-soft-pink: #ffe1ef;
    --ltj-pa-soft-yellow: #fff2ae;
    --ltj-pa-green: #8bdc9b;
    --ltj-pa-shadow: 0 22px 60px rgba(36, 19, 35, 0.14);
    --ltj-pa-radius-lg: 34px;
    --ltj-pa-radius-md: 22px;
}

.ltj-pa-public,
.ltj-pa-manager {
    position: relative;
    color: var(--ltj-pa-dark);
    font-family: inherit;
    isolation: isolate;
}

.ltj-pa-public *,
.ltj-pa-manager * {
    box-sizing: border-box;
}

.ltj-pa-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--ltj-pa-yellow);
    color: var(--ltj-pa-dark);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 6px 6px 0 rgba(255, 117, 184, 0.35);
}

.ltj-pa-kicker::before {
    content: "✦";
    color: var(--ltj-pa-pink);
}

.ltj-pa-public {
    width: 100%;
    overflow: hidden;
    padding: clamp(56px, 7vw, 110px) clamp(16px, 4vw, 60px);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 216, 77, 0.55), transparent 25%),
        radial-gradient(circle at 92% 18%, rgba(255, 117, 184, 0.35), transparent 26%),
        linear-gradient(135deg, #fffaf1 0%, #fff2df 100%);
    border-radius: var(--ltj-pa-radius-lg);
}

.ltj-pa-deco {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.ltj-pa-deco-one {
    width: 180px;
    height: 180px;
    left: -50px;
    top: 18%;
    border-radius: 42% 58% 62% 38% / 42% 38% 62% 58%;
    background: rgba(255, 117, 184, 0.23);
}

.ltj-pa-deco-two {
    width: 150px;
    height: 150px;
    right: -40px;
    bottom: 15%;
    border-radius: 65% 35% 50% 50% / 40% 62% 38% 60%;
    background: rgba(255, 146, 51, 0.25);
}

.ltj-pa-public-head {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.ltj-pa-public-head h2,
.ltj-pa-manager h1,
.ltj-pa-manager h2 {
    margin: 18px 0 10px;
    color: var(--ltj-pa-dark);
    line-height: 1.02;
}

.ltj-pa-public-head h2 {
    font-size: clamp(36px, 6vw, 76px);
}

.ltj-pa-public-head p,
.ltj-pa-manager p {
    margin: 0;
    color: rgba(36, 19, 35, 0.76);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.65;
}

.ltj-pa-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px auto 38px;
}

.ltj-pa-filter,
.ltj-pa-main-btn,
.ltj-pa-soft-btn,
.ltj-pa-guide-toggle,
.ltj-pa-delete {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ltj-pa-filter {
    padding: 11px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--ltj-pa-dark);
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(36, 19, 35, 0.08);
}

.ltj-pa-filter:hover,
.ltj-pa-filter.is-active {
    transform: translateY(-2px) rotate(-1deg);
    background: var(--ltj-pa-pink);
    color: #fff;
    box-shadow: 7px 7px 0 rgba(255, 216, 77, 0.85);
}

.ltj-pa-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2vw, 24px);
    max-width: 1180px;
    margin: 0 auto;
}

.ltj-pa-card {
    grid-column: span 4;
    min-width: 0;
    transform: rotate(var(--tilt, 0deg));
}

.ltj-pa-card:nth-child(4n + 1) { --tilt: -1.2deg; }
.ltj-pa-card:nth-child(4n + 2) { --tilt: 1deg; }
.ltj-pa-card:nth-child(4n + 3) { --tilt: -0.4deg; }
.ltj-pa-card:nth-child(4n + 4) { --tilt: 0.8deg; }

.ltj-pa-card:nth-child(5n + 1),
.ltj-pa-card:nth-child(5n + 4) {
    grid-column: span 5;
}

.ltj-pa-card:nth-child(7n + 2) {
    grid-column: span 3;
}

.ltj-pa-card.is-hidden {
    display: none;
}

.ltj-pa-card-button {
    width: 100%;
    padding: 0;
    border: 0;
    background: #fff;
    color: inherit;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ltj-pa-shadow);
    text-align: left;
    cursor: zoom-in;
    position: relative;
}

.ltj-pa-card-button::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(255, 117, 184, 0.45);
    border-radius: 23px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ltj-pa-card-button:hover {
    transform: translateY(-4px);
}

.ltj-pa-card-button:hover::before {
    opacity: 1;
}

.ltj-pa-card-media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ltj-pa-soft-yellow);
}

.ltj-pa-card:nth-child(3n + 2) .ltj-pa-card-media { aspect-ratio: 1 / 1; }
.ltj-pa-card:nth-child(3n + 3) .ltj-pa-card-media { aspect-ratio: 3 / 4; }

.ltj-pa-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ltj-pa-card-button:hover img {
    transform: scale(1.06) rotate(0.7deg);
}

.ltj-pa-card-content {
    display: block;
    padding: 17px 18px 20px;
}

.ltj-pa-card-cat {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--ltj-pa-soft-pink);
    color: var(--ltj-pa-dark);
    font-weight: 800;
    font-size: 12px;
}

.ltj-pa-card-content strong {
    display: block;
    font-size: 18px;
    line-height: 1.25;
}

.ltj-pa-empty-public,
.ltj-pa-empty-manager {
    max-width: 540px;
    margin: 30px auto 0;
    padding: 32px;
    border-radius: var(--ltj-pa-radius-md);
    background: #fff;
    text-align: center;
    box-shadow: var(--ltj-pa-shadow);
}

.ltj-pa-empty-public span,
.ltj-pa-empty-manager span {
    display: block;
    font-size: 42px;
    margin-bottom: 10px;
}

.ltj-pa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(36, 19, 35, 0.82);
    backdrop-filter: blur(9px);
}

.ltj-pa-lightbox.is-open {
    display: flex;
}

.ltj-pa-lightbox img {
    max-width: min(980px, 92vw);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.ltj-pa-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(620px, calc(100% - 40px));
    padding: 14px 18px;
    border-radius: 999px;
    background: #fff;
    text-align: center;
    font-weight: 800;
}

.ltj-pa-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--ltj-pa-yellow);
    color: var(--ltj-pa-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 6px 6px 0 var(--ltj-pa-pink);
}

.ltj-pa-manager {
    width: 100%;
    padding: clamp(28px, 5vw, 70px);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 216, 77, 0.72), transparent 26%),
        radial-gradient(circle at 88% 0%, rgba(255, 117, 184, 0.35), transparent 22%),
        radial-gradient(circle at 70% 100%, rgba(255, 146, 51, 0.22), transparent 28%),
        var(--ltj-pa-cream);
    border-radius: var(--ltj-pa-radius-lg);
    overflow: hidden;
}

.ltj-pa-manager-hero,
.ltj-pa-panel,
.ltj-pa-guide,
.ltj-pa-lock-card {
    background: rgba(255, 255, 255, 0.78);
    border: 2px solid rgba(255, 117, 184, 0.18);
    box-shadow: var(--ltj-pa-shadow);
    backdrop-filter: blur(12px);
}

.ltj-pa-manager-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(26px, 4vw, 46px);
    border-radius: 36px 36px 36px 16px;
    margin-bottom: 24px;
}

.ltj-pa-manager h1 {
    font-size: clamp(36px, 6vw, 68px);
}

.ltj-pa-manager h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.ltj-pa-soft-btn,
.ltj-pa-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    text-decoration: none !important;
    font-weight: 900;
    border-radius: 999px;
}

.ltj-pa-soft-btn {
    padding: 12px 18px;
    background: #fff;
    color: var(--ltj-pa-dark) !important;
    border: 2px solid rgba(36, 19, 35, 0.08);
}

.ltj-pa-main-btn {
    min-height: 48px;
    padding: 14px 22px;
    background: var(--ltj-pa-dark);
    color: #fff;
    box-shadow: 7px 7px 0 var(--ltj-pa-yellow);
}

.ltj-pa-main-btn:hover,
.ltj-pa-soft-btn:hover,
.ltj-pa-guide-toggle:hover {
    transform: translateY(-2px);
}

.ltj-pa-main-btn:hover {
    box-shadow: 9px 9px 0 var(--ltj-pa-pink);
}

.ltj-pa-guide {
    border-radius: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.ltj-pa-guide-toggle {
    width: 100%;
    padding: 18px 22px;
    background: var(--ltj-pa-yellow);
    color: var(--ltj-pa-dark);
    font-weight: 900;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ltj-pa-guide-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
}

.ltj-pa-guide-panel.is-open {
    display: grid;
}

.ltj-pa-guide-card {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
}

.ltj-pa-guide-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.ltj-pa-guide-card p {
    font-size: 14px;
    line-height: 1.5;
}

.ltj-pa-manager-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.35fr);
    gap: 24px;
    margin-bottom: 24px;
}

.ltj-pa-panel {
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 30px;
}

.ltj-pa-category-panel {
    border-radius: 30px 30px 12px 30px;
}

.ltj-pa-upload-panel {
    border-radius: 30px 12px 30px 30px;
}

.ltj-pa-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--ltj-pa-soft-pink);
    font-size: 28px;
    box-shadow: 5px 5px 0 var(--ltj-pa-soft-yellow);
}

.ltj-pa-form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.ltj-pa-form label {
    font-weight: 900;
}

.ltj-pa-form input,
.ltj-pa-form select,
.ltj-pa-form textarea {
    width: 100%;
    min-height: 48px;
    border: 2px solid rgba(36, 19, 35, 0.12);
    border-radius: 18px;
    padding: 12px 15px;
    background: #fff;
    color: var(--ltj-pa-dark);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ltj-pa-form textarea {
    min-height: 105px;
    resize: vertical;
}

.ltj-pa-form input:focus,
.ltj-pa-form select:focus,
.ltj-pa-form textarea:focus {
    border-color: var(--ltj-pa-pink);
    box-shadow: 0 0 0 4px rgba(255, 117, 184, 0.16);
}

.ltj-pa-form small {
    color: rgba(36, 19, 35, 0.62);
}

.ltj-pa-category-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    border: 2px solid rgba(36, 19, 35, 0.12);
    border-radius: 20px;
    background: #fff;
}

.ltj-pa-category-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 225, 239, 0.72);
    border: 1px solid rgba(255, 117, 184, 0.24);
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ltj-pa-category-check:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(36, 19, 35, 0.1);
}

.ltj-pa-category-check input {
    width: 16px;
    min-height: 16px;
    height: 16px;
    accent-color: var(--ltj-pa-pink);
}

.ltj-pa-category-check:has(input:checked) {
    background: var(--ltj-pa-soft-yellow);
    border-color: rgba(255, 187, 59, 0.55);
}

.ltj-pa-category-checks-empty {
    width: 100%;
    color: rgba(36, 19, 35, 0.62);
    font-weight: 800;
    text-align: center;
    padding: 12px;
}

.ltj-pa-form-message {
    min-height: 22px;
    font-weight: 800;
}

.ltj-pa-form-message.is-error {
    color: #b00037;
}

.ltj-pa-form-message.is-success {
    color: #18733a;
}

.ltj-pa-preview {
    min-height: 220px;
    border: 2px dashed rgba(255, 117, 184, 0.45);
    border-radius: 24px;
    padding: 14px;
    background: rgba(255, 225, 239, 0.4);
}

.ltj-pa-preview-empty {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(36, 19, 35, 0.62);
    font-weight: 800;
}

.ltj-pa-preview-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(36, 19, 35, 0.12);
}

.ltj-pa-preview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ltj-pa-preview-card div {
    padding: 14px 16px;
}

.ltj-pa-preview-card span {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--ltj-pa-soft-yellow);
    font-weight: 900;
    font-size: 12px;
}

.ltj-pa-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.ltj-pa-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.ltj-pa-manage-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(36, 19, 35, 0.1);
}

.ltj-pa-manage-img {
    aspect-ratio: 1 / 1;
    background: var(--ltj-pa-soft-yellow);
}

.ltj-pa-manage-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ltj-pa-manage-info {
    padding: 15px;
}

.ltj-pa-manage-info span {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--ltj-pa-soft-pink);
    font-size: 12px;
    font-weight: 900;
}

.ltj-pa-manage-info strong {
    display: block;
    margin-bottom: 12px;
    line-height: 1.25;
}

.ltj-pa-delete {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff0f3;
    color: #b00037;
    font-weight: 900;
}

.ltj-pa-delete:hover {
    background: #b00037;
    color: #fff;
}

.ltj-pa-locked {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.ltj-pa-lock-bg-one,
.ltj-pa-lock-bg-two {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
}

.ltj-pa-lock-bg-one {
    width: 230px;
    height: 230px;
    left: 8%;
    top: 12%;
    background: rgba(255, 216, 77, 0.66);
}

.ltj-pa-lock-bg-two {
    width: 180px;
    height: 180px;
    right: 12%;
    bottom: 14%;
    background: rgba(255, 117, 184, 0.38);
}

.ltj-pa-lock-card {
    width: min(560px, 100%);
    padding: clamp(26px, 5vw, 48px);
    border-radius: 42px 42px 16px 42px;
    text-align: center;
}

.ltj-pa-lock-card .ltj-pa-kicker {
    margin-inline: auto;
}

.ltj-pa-lock-card h1 {
    font-size: clamp(34px, 6vw, 58px);
}

@media (max-width: 960px) {
    .ltj-pa-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .ltj-pa-card,
    .ltj-pa-card:nth-child(5n + 1),
    .ltj-pa-card:nth-child(5n + 4),
    .ltj-pa-card:nth-child(7n + 2) {
        grid-column: span 3;
    }

    .ltj-pa-manager-layout,
    .ltj-pa-guide-panel {
        grid-template-columns: 1fr;
    }

    .ltj-pa-manager-hero,
    .ltj-pa-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .ltj-pa-public,
    .ltj-pa-manager {
        border-radius: 24px;
        padding: 34px 16px;
    }

    .ltj-pa-grid {
        grid-template-columns: 1fr;
    }

    .ltj-pa-card,
    .ltj-pa-card:nth-child(5n + 1),
    .ltj-pa-card:nth-child(5n + 4),
    .ltj-pa-card:nth-child(7n + 2) {
        grid-column: auto;
        transform: none;
    }

    .ltj-pa-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .ltj-pa-filter {
        white-space: nowrap;
    }

    .ltj-pa-panel,
    .ltj-pa-manager-hero,
    .ltj-pa-lock-card {
        border-radius: 24px;
    }

    .ltj-pa-main-btn,
    .ltj-pa-soft-btn {
        width: 100%;
    }

    .ltj-pa-lightbox-caption {
        border-radius: 22px;
    }
}

.ltj-pa-category-list-wrap {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 2px dashed rgba(255, 117, 184, 0.28);
}

.ltj-pa-category-list-wrap h3 {
    margin: 0 0 6px;
    color: var(--ltj-pa-dark);
    font-size: 20px;
    line-height: 1.2;
}

.ltj-pa-mini-hint {
    margin-bottom: 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(36, 19, 35, 0.68) !important;
}

.ltj-pa-category-list {
    display: grid;
    gap: 10px;
}

.ltj-pa-category-chip,
.ltj-pa-category-empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(36, 19, 35, 0.07);
}

.ltj-pa-category-empty {
    display: block;
    color: rgba(36, 19, 35, 0.62);
    font-weight: 800;
    text-align: center;
}

.ltj-pa-category-chip strong,
.ltj-pa-category-chip span {
    display: block;
}

.ltj-pa-category-chip strong {
    font-size: 15px;
    line-height: 1.2;
}

.ltj-pa-category-chip span {
    margin-top: 4px;
    color: rgba(36, 19, 35, 0.56);
    font-size: 12px;
    font-weight: 800;
}

.ltj-pa-delete-category {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 12px;
}

@media (max-width: 640px) {
    .ltj-pa-category-chip {
        align-items: flex-start;
        flex-direction: column;
    }

    .ltj-pa-delete-category {
        width: 100%;
    }
}

.ltj-pa-public .ltj-pa-grid {
    display: block;
    column-count: 3;
    column-gap: clamp(14px, 2vw, 24px);
    max-width: 1060px;
}

.ltj-pa-public .ltj-pa-card,
.ltj-pa-public .ltj-pa-card:nth-child(5n + 1),
.ltj-pa-public .ltj-pa-card:nth-child(5n + 4),
.ltj-pa-public .ltj-pa-card:nth-child(7n + 2) {
    display: block;
    width: 100%;
    min-width: 0;
    grid-column: auto !important;
    break-inside: avoid;
    page-break-inside: avoid;
    margin: 0 0 clamp(14px, 2vw, 24px);
}

.ltj-pa-public .ltj-pa-card-button {
    display: block;
}

.ltj-pa-public .ltj-pa-card:nth-child(4n + 1) { --tilt: -0.5deg; }
.ltj-pa-public .ltj-pa-card:nth-child(4n + 2) { --tilt: 0.45deg; }
.ltj-pa-public .ltj-pa-card:nth-child(4n + 3) { --tilt: -0.25deg; }
.ltj-pa-public .ltj-pa-card:nth-child(4n + 4) { --tilt: 0.35deg; }

body.ltj-pa-lightbox-open {
    overflow: hidden;
}

.ltj-pa-lightbox {
    z-index: 2147483000;
    pointer-events: none;
}

.ltj-pa-lightbox.is-open {
    pointer-events: auto;
}

.ltj-pa-lightbox img {
    position: relative;
    z-index: 2;
}

.ltj-pa-lightbox-close {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 2147483647;
    pointer-events: auto;
    touch-action: manipulation;
}

.ltj-pa-lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 2147483646;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--ltj-pa-dark);
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 7px 7px 0 var(--ltj-pa-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    touch-action: manipulation;
}

.ltj-pa-lightbox-prev {
    left: max(18px, env(safe-area-inset-left));
}

.ltj-pa-lightbox-next {
    right: max(18px, env(safe-area-inset-right));
}

.ltj-pa-lightbox-nav:hover,
.ltj-pa-lightbox-close:hover {
    transform: translateY(-50%) scale(1.04);
}

.ltj-pa-lightbox-close:hover {
    transform: scale(1.04);
}

.ltj-pa-ink-mark {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50% 48% 52% 45%;
    background: #1a1018;
    box-shadow: 0 0 0 7px rgba(26, 16, 24, 0.04);
    cursor: pointer;
    opacity: 0.24;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ltj-pa-ink-mark:hover {
    opacity: 0.7;
    transform: scale(1.08) rotate(-8deg);
}

.ltj-pa-ink-splash {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    width: 24px;
    height: 24px;
    border-radius: 52% 48% 40% 60% / 46% 44% 56% 54%;
    background:
        radial-gradient(circle at 22% 28%, #1a1018 0 8px, transparent 9px),
        radial-gradient(circle at 70% 22%, #1a1018 0 5px, transparent 6px),
        radial-gradient(circle at 82% 72%, #1a1018 0 7px, transparent 8px),
        #1a1018;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.1) rotate(-18deg);
}

.ltj-pa-ink-splash.is-active {
    animation: ltj-pa-ink-pop 1.25s ease both;
}

@keyframes ltj-pa-ink-pop {
    0% { opacity: 0; transform: scale(0.1) rotate(-18deg); filter: blur(0); }
    18% { opacity: 0.92; transform: scale(5.8) rotate(9deg); filter: blur(0); }
    72% { opacity: 0.7; transform: scale(6.4) rotate(14deg); filter: blur(0.6px); }
    100% { opacity: 0; transform: scale(6.9) rotate(18deg); filter: blur(2px); }
}

@media (max-width: 960px) {
    .ltj-pa-public .ltj-pa-grid {
        column-count: 2;
        column-gap: 16px;
    }

    .ltj-pa-public .ltj-pa-card,
    .ltj-pa-public .ltj-pa-card:nth-child(5n + 1),
    .ltj-pa-public .ltj-pa-card:nth-child(5n + 4),
    .ltj-pa-public .ltj-pa-card:nth-child(7n + 2) {
        grid-column: auto !important;
    }
}

@media (max-width: 640px) {
    .ltj-pa-public .ltj-pa-grid {
        column-count: 2;
        column-gap: 12px;
    }

    .ltj-pa-public .ltj-pa-card,
    .ltj-pa-public .ltj-pa-card:nth-child(5n + 1),
    .ltj-pa-public .ltj-pa-card:nth-child(5n + 4),
    .ltj-pa-public .ltj-pa-card:nth-child(7n + 2) {
        margin-bottom: 12px;
        transform: rotate(var(--tilt, 0deg));
    }

    .ltj-pa-public .ltj-pa-card-content {
        padding: 11px 12px 13px;
    }

    .ltj-pa-public .ltj-pa-card-cat {
        font-size: 9px;
        padding: 4px 7px;
        margin-bottom: 5px;
    }

    .ltj-pa-public .ltj-pa-card-content strong {
        font-size: 12px;
    }

    .ltj-pa-lightbox {
        padding: 18px 12px 88px;
    }

    .ltj-pa-lightbox img {
        max-width: 94vw;
        max-height: 72vh;
        border-radius: 18px;
    }

    .ltj-pa-lightbox-close {
        top: auto;
        right: auto;
        left: 50%;
        bottom: max(18px, env(safe-area-inset-bottom));
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
    }

    .ltj-pa-lightbox-close:hover {
        transform: translateX(-50%) scale(1.04);
    }

    .ltj-pa-lightbox-nav {
        top: auto;
        bottom: max(18px, env(safe-area-inset-bottom));
        width: 48px;
        height: 48px;
        font-size: 34px;
        transform: none;
        box-shadow: 5px 5px 0 var(--ltj-pa-pink);
    }

    .ltj-pa-lightbox-prev {
        left: calc(50% - 112px);
    }

    .ltj-pa-lightbox-next {
        right: calc(50% - 112px);
    }

    .ltj-pa-lightbox-nav:hover {
        transform: scale(1.04);
    }

    .ltj-pa-lightbox-caption {
        bottom: 82px;
        width: min(520px, calc(100% - 28px));
        font-size: 12px;
        padding: 10px 14px;
    }
}


html.ltj-pa-lightbox-open,
body.ltj-pa-lightbox-open {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none;
}

.ltj-pa-public .ltj-pa-card.is-hidden {
    display: none !important;
}

.ltj-pa-lightbox-stage {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(980px, 92vw);
    max-height: 78vh;
}

.ltj-pa-lightbox .ltj-pa-lightbox-stage img {
    max-width: 100%;
    max-height: 78vh;
}

.ltj-pa-lightbox .ltj-pa-lightbox-close {
    position: absolute !important;
    top: -17px !important;
    right: -17px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ltj-pa-yellow), var(--ltj-pa-pink));
    color: var(--ltj-pa-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 5px 5px 0 rgba(255, 255, 255, 0.55);
    transform: none !important;
}

.ltj-pa-lightbox .ltj-pa-lightbox-close:hover {
    transform: rotate(5deg) scale(1.05) !important;
}

.ltj-pa-lightbox-caption {
    z-index: 4;
}

@media (max-width: 640px) {
    .ltj-pa-lightbox {
        padding: 22px 12px 78px;
    }

    .ltj-pa-lightbox-stage {
        max-width: 94vw;
        max-height: 70vh;
    }

    .ltj-pa-lightbox .ltj-pa-lightbox-stage img {
        max-width: 100%;
        max-height: 70vh;
        border-radius: 18px;
    }

    .ltj-pa-lightbox .ltj-pa-lightbox-close {
        top: -14px !important;
        right: -8px !important;
        width: 44px;
        height: 44px;
        font-size: 25px;
    }
}

.ltj-pa-kicker-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ltj-pa-kicker-row .ltj-pa-kicker {
    margin-bottom: 0;
}

.ltj-pa-test-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 2px solid rgba(36, 19, 35, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(36, 19, 35, 0.62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(255, 117, 184, 0.18);
}

.ltj-pa-lightbox-caption {
    border-radius: 24px !important;
    width: min(640px, calc(100% - 40px));
    padding: 14px 18px 15px;
    text-align: center;
    line-height: 1.35;
}

.ltj-pa-lightbox-caption strong,
.ltj-pa-lightbox-caption span,
.ltj-pa-lightbox-caption p {
    display: block;
}

.ltj-pa-lightbox-caption strong {
    font-size: 16px;
    font-weight: 950;
    color: var(--ltj-pa-dark);
}

.ltj-pa-lightbox-caption span {
    margin-top: 3px;
    color: rgba(36, 19, 35, 0.62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ltj-pa-lightbox-caption p {
    margin: 8px auto 0;
    max-width: 560px;
    color: rgba(36, 19, 35, 0.76);
    font-size: 14px;
    font-weight: 650;
}

.ltj-pa-ink-splash {
    display: none !important;
}

.ltj-pa-ink-cinematic-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147482400;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 82% 78%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.86) 16%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.38) 68%, rgba(0, 0, 0, 0.18) 100%),
        rgba(0, 0, 0, 0.18);
    backdrop-filter: grayscale(0) contrast(1) brightness(1);
    -webkit-backdrop-filter: grayscale(0) contrast(1) brightness(1);
    transition: opacity 3.2s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 3.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-backdrop-filter 3.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.ltj-pa-ink-mode .ltj-pa-ink-cinematic-overlay {
    opacity: 0.92;
    backdrop-filter: grayscale(1) contrast(1.22) brightness(0.66);
    -webkit-backdrop-filter: grayscale(1) contrast(1.22) brightness(0.66);
}

body.ltj-pa-ink-mode .ltj-pa-manager,
body.ltj-pa-ink-mode .ltj-pa-public {
    filter: grayscale(1) saturate(0) brightness(0.76) contrast(1.08);
    transition: filter 3.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ltj-pa-manager,
.ltj-pa-public {
    transition: filter 3.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.ltj-pa-ink-mode .ltj-pa-ink-mark,
.ltj-pa-ink-mark.is-bleached {
    background: #ffffff;
    opacity: 0.9;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12), 0 8px 26px rgba(0, 0, 0, 0.28);
}

body.ltj-pa-ink-mode .ltj-pa-ink-mark:hover,
.ltj-pa-ink-mark.is-bleached:hover {
    opacity: 1;
    transform: scale(1.1) rotate(8deg);
}

@media (max-width: 640px) {
    .ltj-pa-test-badge {
        font-size: 10px;
        padding: 5px 9px;
    }

    .ltj-pa-lightbox-caption {
        bottom: 76px;
        padding: 11px 13px 12px;
    }

    .ltj-pa-lightbox-caption strong {
        font-size: 14px;
    }

    .ltj-pa-lightbox-caption span {
        font-size: 10px;
    }

    .ltj-pa-lightbox-caption p {
        font-size: 12px;
        margin-top: 6px;
    }
}


.ltj-pa-paint-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147482400;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    background: transparent;
    transition: opacity 0.35s ease;
}

.ltj-pa-paint-overlay::after {
    content: "";
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity 2.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ltj-pa-paint-overlay.is-active {
    opacity: 1;
}

.ltj-pa-paint-overlay.is-filled::after {
    opacity: 0.97;
}

.ltj-pa-paint-drop {
    position: absolute;
    left: var(--ltj-drop-x);
    top: -18vh;
    z-index: 1;
    width: var(--ltj-drop-size);
    height: var(--ltj-drop-size);
    border-radius: 53% 47% 58% 42% / 44% 52% 48% 56%;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.08) 0 6%, transparent 7%),
        #000;
    opacity: 0;
    filter: blur(var(--ltj-drop-blur));
    transform: translate3d(0, -10vh, 0) scale(0.35) rotate(-16deg);
    animation: ltj-pa-paint-rain var(--ltj-drop-duration) cubic-bezier(0.18, 0.82, 0.22, 1) var(--ltj-drop-delay) forwards;
}

.ltj-pa-paint-drop:nth-child(3n) {
    border-radius: 48% 52% 44% 56% / 58% 42% 54% 46%;
}

.ltj-pa-paint-drop:nth-child(4n) {
    border-radius: 999px;
}

.ltj-pa-paint-drop:nth-child(5n) {
    background:
        radial-gradient(circle at 70% 28%, #000 0 16%, transparent 17%),
        radial-gradient(circle at 22% 76%, #000 0 18%, transparent 19%),
        #000;
}

@keyframes ltj-pa-paint-rain {
    0% {
        opacity: 0;
        transform: translate3d(0, -14vh, 0) scale(0.25) rotate(-18deg);
    }
    12% {
        opacity: 0.95;
    }
    54% {
        opacity: 0.98;
        transform: translate3d(var(--ltj-drop-wobble), calc(var(--ltj-drop-fall) * 0.72), 0) scale(1.15) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(calc(var(--ltj-drop-wobble) * -0.35), var(--ltj-drop-fall), 0) scale(var(--ltj-drop-grow)) rotate(26deg);
    }
}

.ltj-pa-ink-mark::before,
.ltj-pa-ink-mark::after {
    content: "";
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ltj-pa-ink-mark.is-heart {
    position: fixed;
    right: max(26px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
    z-index: 2147482700;
    width: 23px;
    height: 23px;
    border-radius: 5px 5px 4px 5px;
    background: #fff !important;
    opacity: 1 !important;
    transform: rotate(-45deg) scale(1);
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.ltj-pa-ink-mark.is-heart::before,
.ltj-pa-ink-mark.is-heart::after {
    width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #fff;
    opacity: 1;
}

.ltj-pa-ink-mark.is-heart::before {
    left: 0;
    top: -11.5px;
}

.ltj-pa-ink-mark.is-heart::after {
    left: 11.5px;
    top: 0;
}

.ltj-pa-ink-mark.is-heart:hover {
    transform: rotate(-45deg) scale(1.12);
    box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.12), 0 18px 42px rgba(0, 0, 0, 0.52);
}

body.ltj-pa-paint-night {
    overflow: hidden;
}

body.ltj-pa-paint-night .ltj-pa-manager,
body.ltj-pa-paint-night .ltj-pa-public {
    transition: filter 2.4s ease;
}

@media (max-width: 640px) {
    .ltj-pa-paint-drop {
        top: -14vh;
    }

    .ltj-pa-ink-mark.is-heart {
        width: 21px;
        height: 21px;
        right: max(22px, env(safe-area-inset-right));
        bottom: max(22px, env(safe-area-inset-bottom));
    }

    .ltj-pa-ink-mark.is-heart::before,
    .ltj-pa-ink-mark.is-heart::after {
        width: 21px;
        height: 21px;
    }

    .ltj-pa-ink-mark.is-heart::before {
        top: -10.5px;
    }

    .ltj-pa-ink-mark.is-heart::after {
        left: 10.5px;
    }
}

.ltj-pa-ink-mark,
.ltj-pa-ink-mark.is-heart,
body.ltj-pa-paint-night .ltj-pa-ink-mark,
body.ltj-pa-paint-night .ltj-pa-ink-mark.is-heart {
    position: fixed;
    right: max(26px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
    z-index: 2147482700;
    width: 23px;
    height: 23px;
    border: 0;
    border-radius: 5px 5px 4px 5px;
    background: #fff !important;
    cursor: pointer;
    opacity: 1 !important;
    transform: rotate(-45deg) scale(1);
    box-shadow:
        0 0 0 1px rgba(26, 16, 24, 0.12),
        0 0 0 9px rgba(255, 255, 255, 0.12),
        0 14px 34px rgba(0, 0, 0, 0.36);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.ltj-pa-ink-mark::before,
.ltj-pa-ink-mark::after,
.ltj-pa-ink-mark.is-heart::before,
.ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-ink-mark::before,
body.ltj-pa-paint-night .ltj-pa-ink-mark::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #fff;
    opacity: 1;
    pointer-events: none;
}

.ltj-pa-ink-mark::before,
.ltj-pa-ink-mark.is-heart::before,
body.ltj-pa-paint-night .ltj-pa-ink-mark::before {
    left: 0;
    top: -11.5px;
}

.ltj-pa-ink-mark::after,
.ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-ink-mark::after {
    left: 11.5px;
    top: 0;
}

.ltj-pa-ink-mark:hover,
.ltj-pa-ink-mark.is-heart:hover,
body.ltj-pa-paint-night .ltj-pa-ink-mark:hover,
body.ltj-pa-paint-night .ltj-pa-ink-mark.is-heart:hover {
    opacity: 1 !important;
    transform: rotate(-45deg) scale(1.12);
    box-shadow:
        0 0 0 1px rgba(26, 16, 24, 0.16),
        0 0 0 11px rgba(255, 255, 255, 0.18),
        0 18px 42px rgba(0, 0, 0, 0.48);
}

.ltj-pa-ink-mark.is-busy {
    pointer-events: none;
    animation: ltj-pa-heart-witness 1.5s ease-in-out infinite;
}

@keyframes ltj-pa-heart-witness {
    0%, 100% {
        transform: rotate(-45deg) scale(1);
    }
    50% {
        transform: rotate(-45deg) scale(1.14);
    }
}

.ltj-pa-paint-overlay {
    transition: opacity 0.45s ease;
}

.ltj-pa-paint-overlay.is-fading {
    opacity: 0;
    transition: opacity 1.15s ease;
}

.ltj-pa-paint-overlay.is-fading::after {
    opacity: 0 !important;
    transition: opacity 1.15s ease;
}

@media (max-width: 640px) {
    .ltj-pa-ink-mark,
    .ltj-pa-ink-mark.is-heart,
    body.ltj-pa-paint-night .ltj-pa-ink-mark,
    body.ltj-pa-paint-night .ltj-pa-ink-mark.is-heart {
        width: 21px;
        height: 21px;
        right: max(22px, env(safe-area-inset-right));
        bottom: max(22px, env(safe-area-inset-bottom));
    }

    .ltj-pa-ink-mark::before,
    .ltj-pa-ink-mark::after,
    .ltj-pa-ink-mark.is-heart::before,
    .ltj-pa-ink-mark.is-heart::after,
    body.ltj-pa-paint-night .ltj-pa-ink-mark::before,
    body.ltj-pa-paint-night .ltj-pa-ink-mark::after {
        width: 21px;
        height: 21px;
    }

    .ltj-pa-ink-mark::before,
    .ltj-pa-ink-mark.is-heart::before,
    body.ltj-pa-paint-night .ltj-pa-ink-mark::before {
        top: -10.5px;
    }

    .ltj-pa-ink-mark::after,
    .ltj-pa-ink-mark.is-heart::after,
    body.ltj-pa-paint-night .ltj-pa-ink-mark::after {
        left: 10.5px;
    }
}


.ltj-pa-manager .ltj-pa-ink-mark,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
    position: absolute !important;
    right: 26px !important;
    bottom: 26px !important;
    z-index: 25 !important;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 5px 5px 4px 5px;
    background: #fff !important;
    cursor: pointer;
    opacity: 1 !important;
    transform: rotate(-45deg) scale(1);
    box-shadow:
        0 0 0 2px rgba(36, 19, 35, 0.20),
        0 0 0 10px rgba(255, 255, 255, 0.26),
        0 14px 34px rgba(36, 19, 35, 0.32);
}

.ltj-pa-manager .ltj-pa-ink-mark::before,
.ltj-pa-manager .ltj-pa-ink-mark::after,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
    width: 24px;
    height: 24px;
    background: #fff;
}

.ltj-pa-manager .ltj-pa-ink-mark::before,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
    left: 0;
    top: -12px;
}

.ltj-pa-manager .ltj-pa-ink-mark::after,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
    left: 12px;
    top: 0;
}

.ltj-pa-manager .ltj-pa-ink-mark:hover,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart:hover {
    transform: rotate(-45deg) scale(1.12);
    box-shadow:
        0 0 0 2px rgba(36, 19, 35, 0.24),
        0 0 0 12px rgba(255, 255, 255, 0.34),
        0 18px 42px rgba(36, 19, 35, 0.42);
}

.ltj-pa-paint-overlay::after {
    opacity: 0;
    background: #000;
    transition: opacity 1.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ltj-pa-paint-overlay.is-filled::after {
    opacity: 1 !important;
}

.ltj-pa-paint-drop {
    box-shadow:
        0 0 22px rgba(0, 0, 0, 0.85),
        0 0 52px rgba(0, 0, 0, 0.65);
}

@media (max-width: 640px) {
    .ltj-pa-manager .ltj-pa-ink-mark,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
        right: 22px !important;
        bottom: 22px !important;
        width: 22px;
        height: 22px;
    }

    .ltj-pa-manager .ltj-pa-ink-mark::before,
    .ltj-pa-manager .ltj-pa-ink-mark::after,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
        width: 22px;
        height: 22px;
    }

    .ltj-pa-manager .ltj-pa-ink-mark::before,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
        top: -11px;
    }

    .ltj-pa-manager .ltj-pa-ink-mark::after,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
        left: 11px;
    }
}


.ltj-pa-paint-overlay {
    contain: paint;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ltj-pa-paint-overlay::after {
    background: #000;
    opacity: 0;
    transition: opacity 1.45s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.ltj-pa-paint-overlay.is-filled::after {
    opacity: 1 !important;
}

.ltj-pa-paint-overlay.is-fading {
    opacity: 0 !important;
    transition: opacity 1.05s ease !important;
}

.ltj-pa-paint-overlay.is-fading::after {
    opacity: 0 !important;
    transition: opacity 1.05s ease !important;
}

.ltj-pa-paint-drop {
    box-shadow: none !important;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

body.ltj-pa-paint-night .ltj-pa-manager,
body.ltj-pa-paint-night .ltj-pa-public {
    filter: none !important;
}



.ltj-pa-manager .ltj-pa-ink-mark,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
    width: 18px !important;
    height: 18px !important;
    right: 28px !important;
    bottom: 28px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.72 !important;
    padding: 0 !important;
    cursor: pointer;
}

.ltj-pa-manager .ltj-pa-ink-mark::before,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
    content: "🫀" !important;
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    transform: none !important;
    filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0,0,0,0.38));
    pointer-events: none;
}

.ltj-pa-manager .ltj-pa-ink-mark::after,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
    content: none !important;
    display: none !important;
}

.ltj-pa-manager .ltj-pa-ink-mark:hover,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart:hover,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark:hover,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart:hover {
    transform: scale(1.08) !important;
    opacity: 0.9 !important;
    box-shadow: none !important;
}

.ltj-pa-manager .ltj-pa-ink-mark.is-busy {
    animation: ltj-pa-anatomical-heart-witness 1.35s ease-in-out infinite !important;
}

@keyframes ltj-pa-anatomical-heart-witness {
    0%, 100% { transform: scale(1); opacity: 0.72; }
    50% { transform: scale(1.12); opacity: 0.96; }
}

@media (max-width: 640px) {
    .ltj-pa-manager .ltj-pa-ink-mark,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
        width: 17px !important;
        height: 17px !important;
        right: 23px !important;
        bottom: 23px !important;
    }

    .ltj-pa-manager .ltj-pa-ink-mark::before,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
        font-size: 14px !important;
    }
}

.ltj-pa-manager .ltj-pa-ink-mark,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
    position: absolute !important;
    left: 26px !important;
    right: auto !important;
    bottom: 26px !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0.92 !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ltj-pa-manager .ltj-pa-ink-mark::before,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
    content: "" !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 25px !important;
    height: 25px !important;
    border-radius: 0 !important;
    background: transparent url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2064%2064%22%3E%3Cpath%20d=%22M35%2058c-8-6-18-10-20-21-2-8%202-17%2010-19%204-1%207%200%2010%203%203-7%208-11%2014-9%207%202%209%2011%206%2019-4%2011-11%2020-20%2027Z%22%20fill=%22%23fff%22%20stroke=%22%232b1528%22%20stroke-width=%223.4%22%20stroke-linejoin=%22round%22/%3E%3Cpath%20d=%22M34%2021c-1-7%201-12%206-16%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%223.4%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M39%2015c3-3%207-4%2012-3%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%223.4%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M30%2022c-4-5-9-7-15-7%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%223.4%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M28%2033c5%203%209%208%2010%2015%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%222.7%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M39%2032c-2%206-4%2012-3%2020%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%222.7%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M24%2040c4%202%207%205%208%2011%22%20fill=%22none%22%20stroke=%22%232b1528%22%20stroke-width=%222.4%22%20stroke-linecap=%22round%22/%3E%3C/svg%3E") center / contain no-repeat !important;
    opacity: 1 !important;
    filter: drop-shadow(0 0 1.2px rgba(43, 21, 40, 0.95)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.38));
    pointer-events: none !important;
}

.ltj-pa-manager .ltj-pa-ink-mark::after,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
    content: none !important;
    display: none !important;
}

.ltj-pa-manager .ltj-pa-ink-mark:hover,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart:hover {
    opacity: 1 !important;
    transform: scale(1.08) rotate(-3deg) !important;
    box-shadow: none !important;
}

.ltj-pa-manager .ltj-pa-ink-mark.is-busy {
    animation: ltj-pa-heart-witness-soft 1.5s ease-in-out infinite !important;
}

@keyframes ltj-pa-heart-witness-soft {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 640px) {
    .ltj-pa-manager .ltj-pa-ink-mark,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
        left: 20px !important;
        right: auto !important;
        bottom: 20px !important;
        width: 32px !important;
        height: 32px !important;
    }

    .ltj-pa-manager .ltj-pa-ink-mark::before,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before {
        width: 24px !important;
        height: 24px !important;
    }
}


.ltj-pa-manager .ltj-pa-ink-mark,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
    left: 24px !important;
    right: auto !important;
    bottom: 24px !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 0 0 1px rgba(43, 21, 40, 0.28), 0 0 0 5px rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.32) !important;
    opacity: 0.96 !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ltj-pa-manager .ltj-pa-ink-mark::before,
.ltj-pa-manager .ltj-pa-ink-mark::after,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::before,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart::after,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::before,
body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark::after {
    content: none !important;
    display: none !important;
}

.ltj-pa-heart-symbol {
    display: block;
    font-size: 20px;
    line-height: 1;
    filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 1px rgba(31, 17, 30, 1)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
    transform: translateY(1px) scale(1.02);
    opacity: 1;
    pointer-events: none;
}

.ltj-pa-manager .ltj-pa-ink-mark:hover,
.ltj-pa-manager .ltj-pa-ink-mark.is-heart:hover {
    opacity: 1 !important;
    transform: scale(1.06) rotate(-2deg) !important;
    box-shadow: 0 0 0 1px rgba(43, 21, 40, 0.34), 0 0 0 6px rgba(255, 255, 255, 0.20), 0 16px 34px rgba(0, 0, 0, 0.42) !important;
}

.ltj-pa-manager .ltj-pa-ink-mark.is-busy {
    animation: ltj-pa-heart-witness-soft 1.5s ease-in-out infinite !important;
}

@media (max-width: 640px) {
    .ltj-pa-manager .ltj-pa-ink-mark,
    .ltj-pa-manager .ltj-pa-ink-mark.is-heart,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark,
    body.ltj-pa-paint-night .ltj-pa-manager .ltj-pa-ink-mark.is-heart {
        left: 20px !important;
        right: auto !important;
        bottom: 20px !important;
        width: 32px !important;
        height: 32px !important;
    }

    .ltj-pa-heart-symbol {
        font-size: 19px;
    }
}
