/* Single post CSS extracted from style.css for single post pages. */

/* ========== SCREENSHOTS OF MOVIE SECTION ========== */
.screenshots-section {
    margin-bottom: 2rem;
}

.screenshots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.screenshots-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.screenshots-title svg {
    color: #a855f7;
    flex-shrink: 0;
}

.screenshots-count {
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* WP Slider Container */
.wp-slider-container {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-slider {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.wp-slider-inner {
    position: relative;
    overflow: hidden;
}

.wp-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #0a0a0f;
}

.wp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.wp-slide.active {
    opacity: 1;
    z-index: 2;
}

.wp-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    display: block;
    background: #0a0a0f;
}

.wp-slide-img:not(.loaded) {
    opacity: 0;
}

.wp-slide-img.loaded {
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Navigation Arrows */
.wp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.wp-nav:hover {
    background: rgba(147, 51, 234, 0.6);
    border-color: rgba(147, 51, 234, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.wp-nav-prev {
    left: 12px;
}

.wp-nav-next {
    right: 12px;
}

/* Dot Navigation */
.wp-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 8px;
}

.wp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wp-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

.wp-dot.active {
    background: #a855f7;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

/* Progress Bar */
.wp-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.wp-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9333ea, #a855f7, #c084fc);
    border-radius: 0 3px 3px 0;
}

/* WP Loading State */
.wp-loading {
    display: none;
}

/* ========== SCREENSHOT LIGHTBOX ========== */
.wp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wp-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.wp-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.wp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.wp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.wp-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 85vh;
    z-index: 5;
}

.wp-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.wp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.wp-lightbox-nav:hover {
    background: rgba(147, 51, 234, 0.5);
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.wp-lightbox-prev {
    left: 20px;
}

.wp-lightbox-next {
    right: 20px;
}

.wp-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .screenshots-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .screenshots-title {
        font-size: 1.1rem;
    }

    .wp-nav {
        width: 34px;
        height: 34px;
    }

    .wp-nav svg {
        width: 16px;
        height: 16px;
    }

    .wp-nav-prev {
        left: 8px;
    }

    .wp-nav-next {
        right: 8px;
    }

    .wp-dots {
        gap: 6px;
        padding: 10px 0 6px;
    }

    .wp-dot {
        width: 6px;
        height: 6px;
    }

    .wp-dot.active {
        width: 18px;
    }

    .wp-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .wp-lightbox-prev {
        left: 10px;
    }

    .wp-lightbox-next {
        right: 10px;
    }

    .wp-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
}

/* ==========================================================================
   WEFIM Single Post Liquid UI 2026
   Revert path: remove this whole block and the single-jump-nav markup.
   ========================================================================== */

body.single-post .single-container {
    max-width: 100%;
    padding-inline: 0;
    margin-top: 1.4rem;
}

body.single-post .breadcrumb {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(13, 14, 24, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.single-post .movie-hero {
    isolation: isolate;
    min-height: 430px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(120deg, rgba(6, 8, 18, 0.92) 0%, rgba(15, 11, 28, 0.78) 48%, rgba(8, 18, 24, 0.86) 100%),
        var(--backdrop-url) center/cover no-repeat,
        #070812;
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(147, 51, 234, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .movie-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(147, 51, 234, 0.12), rgba(8, 10, 20, 0.02) 28%, rgba(8, 10, 20, 0.08) 56%, rgba(34, 211, 238, 0.08) 78%, transparent),
        linear-gradient(180deg, rgba(6, 8, 18, 0.28), rgba(8, 10, 20, 0.1) 26%, rgba(8, 10, 20, 0.14) 58%, rgba(3, 4, 10, 0.54));
}

body.single-post .movie-hero::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.85), rgba(34, 211, 238, 0.55), transparent);
}

body.single-post .hero-backdrop {
    background-size: cover;
    opacity: 0.26;
    filter: blur(9px) saturate(1.08);
    transform: scale(1.02);
}

body.single-post .hero-content {
    z-index: 2;
    padding: 2.25rem;
    gap: 1.6rem;
}

@media (min-width: 900px) {
    body.single-post .hero-content {
        display: grid;
        grid-template-columns: minmax(190px, 245px) minmax(0, 1fr);
        align-items: end;
    }
}

body.single-post .hero-poster {
    width: 100%;
    max-width: 245px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.62),
        0 0 0 6px rgba(255, 255, 255, 0.035),
        0 0 42px rgba(147, 51, 234, 0.2);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

body.single-post .hero-poster:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.68),
        0 0 0 6px rgba(255, 255, 255, 0.045),
        0 0 54px rgba(34, 211, 238, 0.16);
}

body.single-post .hero-details {
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(12, 14, 26, 0.78), rgba(23, 17, 38, 0.58));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .hero-title {
    max-width: 820px;
    margin: 0;
    color: #fff;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

body.single-post .hero-meta-row {
    gap: 0.55rem;
    margin-bottom: 0.2rem;
}

body.single-post .meta-pill {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    letter-spacing: 0;
}

body.single-post .rating-star {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(249, 115, 22, 0.1));
    border-color: rgba(250, 204, 21, 0.28);
    color: #fde68a;
}

body.single-post .lang-pill {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.26), rgba(34, 211, 238, 0.1));
    border-color: rgba(168, 85, 247, 0.38);
    color: #e9d5ff;
}

body.single-post .post-date-row {
    padding-top: 0.15rem;
    gap: 0.75rem;
}

body.single-post .post-date-item {
    padding: 0.42rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
}

body.single-post .hero-description {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.78);
}

body.single-post .hero-actions {
    gap: 0.7rem;
}

body.single-post .hero-actions .btn {
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

body.single-post .hero-actions .open-trailer {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-color: #9333ea;
    color: #fff;
}

body.single-post .hero-actions a[href*="imdb.com"] {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-color: #9333ea;
    color: #fff;
}

body.single-post .hero-actions .btn:hover {
    background: rgba(147, 51, 234, 0.22);
    border-color: rgba(168, 85, 247, 0.45);
    color: #fff;
}

body.single-post .hero-actions .open-trailer:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-color: #9333ea;
    color: #fff;
}

body.single-post .hero-actions a[href*="imdb.com"]:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-color: #9333ea;
    color: #fff;
}

body.single-post .single-jump-nav {
    position: sticky;
    top: 10px;
    z-index: 35;
    display: flex;
    gap: 0.45rem;
    align-items: center;
    margin: -0.45rem 0 1.25rem;
    padding: 0.45rem;
    overflow-x: auto;
    scrollbar-width: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(8, 10, 20, 0.76);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

body.admin-bar.single-post .single-jump-nav {
    top: 42px;
}

body.single-post .single-jump-nav::-webkit-scrollbar {
    display: none;
}

body.single-post .single-jump-nav a {
    flex: 0 0 auto;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.single-post .single-jump-nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.34), rgba(34, 211, 238, 0.16));
    transform: translateY(-1px);
}

body.single-post .movie-hero,
body.single-post .screenshots-section,
body.single-post .downloads-section,
body.single-post .about-card,
body.single-post .faq-section,
body.single-post .share-card,
body.single-post .reaction-card,
body.single-post .comment-card,
body.single-post .related-movies {
    scroll-margin-top: 92px;
}

body.single-post .post-intro-section,
body.single-post .notice-box,
body.single-post .screenshots-section,
body.single-post .downloads-section,
body.single-post .about-card,
body.single-post .faq-section,
body.single-post .share-card,
body.single-post .reaction-card,
body.single-post .comment-card {
    border-radius: 22px;
}

body.single-post .screenshots-section,
body.single-post .about-card,
body.single-post .faq-section,
body.single-post .share-card,
body.single-post .reaction-card,
body.single-post .comment-card {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
        rgba(12, 13, 24, 0.82);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.single-post .downloads-section {
    border-radius: 24px;
    border-color: rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(135deg, rgba(147, 51, 234, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(12, 13, 24, 0.96), rgba(17, 24, 39, 0.9));
    box-shadow:
        0 22px 62px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(34, 211, 238, 0.05);
}

body.single-post .downloads-header {
    background:
        linear-gradient(90deg, rgba(147, 51, 234, 0.22), rgba(34, 211, 238, 0.1), transparent);
}

body.single-post .downloads-title,
body.single-post .screenshots-title,
body.single-post .about-title,
body.single-post .faq-title,
body.single-post .share-title,
body.single-post .reaction-title,
body.single-post .comment-title {
    letter-spacing: 0;
}

body.single-post .download-category {
    background-color: rgba(255, 255, 255, 0.015);
}

body.single-post .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.single-post .category-badge,
body.single-post .screenshots-count {
    border-radius: 999px;
    letter-spacing: 0;
}

body.single-post .dl-btn {
    min-height: 52px;
    border-radius: 15px;
    background-clip: padding-box;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .dl-btn:hover {
    transform: translateY(-3px);
}

body.single-post .wp-slider-container {
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 14, 0.76);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

body.single-post .wp-slide-img {
    background: #05070e;
}

body.single-post .about-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

body.single-post .about-card-header {
    display: block;
    margin-bottom: 0.65rem;
}

body.single-post .about-heading-copy {
    min-width: 0;
}

body.single-post .about-kicker,
body.single-post .about-summary,
body.single-post .about-highlights {
    display: none !important;
}

body.single-post .about-title {
    margin-bottom: 0.15rem;
    font-size: 1.02rem;
}

body.single-post .about-title::after {
    display: none;
}

body.single-post .about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.64rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(167, 139, 250, 0.2);
    background: rgba(167, 139, 250, 0.08);
    color: #d8ccff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
}

body.single-post .about-summary {
    max-width: 54ch;
    margin: 0.18rem 0 0;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.88rem;
    line-height: 1.52;
}

body.single-post .about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

body.single-post .about-highlight-pill {
    min-height: 72px;
    padding: 0.72rem 0.82rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(7, 10, 18, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.single-post .about-highlight-label {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(148, 163, 184, 0.88);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
}

body.single-post .about-highlight-value {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.28;
}

body.single-post .about-meta-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 68px;
    gap: 0.28rem;
    padding: 0.64rem 0.74rem;
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
        rgba(10, 12, 20, 0.54);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.12);
}

body.single-post .about-meta-box:hover {
    background: rgba(147, 51, 234, 0.09);
    border-color: rgba(168, 85, 247, 0.26);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.single-post .about-meta-box-wide {
    min-height: 0;
}

body.single-post .about-cast-box {
    gap: 0.42rem;
    padding-bottom: 0.62rem;
}

body.single-post .about-meta-label {
    gap: 0.4rem;
    color: rgba(148, 163, 184, 0.88);
    font-size: 0.61rem;
    font-weight: 700;
}

body.single-post .about-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.46rem;
    height: 1.46rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, rgba(147, 51, 234, 0.16), rgba(34, 211, 238, 0.1));
    color: #f8fafc;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 6px 14px rgba(0, 0, 0, 0.14);
}

body.single-post .about-meta-label svg {
    width: 11px;
    height: 11px;
    opacity: 0.95;
}

body.single-post .about-meta-value {
    color: rgba(248, 250, 252, 0.95);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.36;
}

body.single-post .about-meta-value .meta-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

body.single-post .about-meta-value .meta-link:hover {
    color: #d8b4fe;
    border-color: rgba(216, 180, 254, 0.48);
}

body.single-post .about-cast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}

body.single-post .about-cast-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    min-height: 30px;
    max-width: 100%;
    padding: 0.38rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(9, 12, 20, 0.74);
    color: rgba(248, 250, 252, 0.94);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.single-post .about-cast-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(168, 85, 247, 0.34);
    background:
        linear-gradient(180deg, rgba(167, 139, 250, 0.12), rgba(34, 211, 238, 0.06)),
        rgba(10, 14, 24, 0.9);
    color: #fff;
}

body.single-post .about-cast-chip-dot {
    flex: 0 0 auto;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
}

body.single-post .reaction-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ==========================================================================
   WEFIM Share + Reaction Future Layer
   Revert path: remove this block and the reaction fill sync in post-scripts.js.
   ========================================================================== */

body.single-post .share-header,
body.single-post .reaction-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0.95rem;
}

body.single-post .share-heading-copy,
body.single-post .reaction-heading-copy {
    min-width: 0;
}

body.single-post .share-subtitle,
body.single-post .reaction-subtitle {
    margin-top: 0.28rem;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

body.single-post .share-meta,
body.single-post .reaction-votes-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 32px;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        rgba(8, 10, 18, 0.72);
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.single-post .reaction-votes-pill span {
    color: #fff;
}

body.single-post .share-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.78rem;
}

body.single-post .share-btn {
    --share-tint: rgba(148, 163, 184, 0.18);
    --share-icon-bg: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    min-height: 74px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(8, 10, 18, 0.88);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.single-post .share-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, var(--share-tint), transparent 62%);
    opacity: 0.95;
}

body.single-post .share-btn > * {
    position: relative;
    z-index: 1;
}

body.single-post .share-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .share-btn.facebook {
    --share-tint: rgba(37, 99, 235, 0.26);
    --share-icon-bg: #1877f2;
}

body.single-post .share-btn.twitter {
    --share-tint: rgba(56, 189, 248, 0.18);
    --share-icon-bg: #1d9bf0;
}

body.single-post .share-btn.telegram {
    --share-tint: rgba(14, 165, 233, 0.24);
    --share-icon-bg: #2499d5;
}

body.single-post .share-btn.whatsapp {
    --share-tint: rgba(34, 197, 94, 0.22);
    --share-icon-bg: #1fa463;
}

body.single-post .share-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
    background: var(--share-icon-bg);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.single-post .share-icon svg {
    width: 17px;
    height: 17px;
}

body.single-post .share-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.16rem;
    min-width: 0;
}

body.single-post .share-label {
    display: block;
    color: #fff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.15;
}

body.single-post .share-hint {
    display: block;
    color: rgba(226, 232, 240, 0.66);
    font-size: 0.71rem;
    font-weight: 600;
    line-height: 1.2;
}

body.single-post .reaction-options {
    gap: 0.78rem;
}

body.single-post .reaction-pill {
    --reaction-accent: rgba(148, 163, 184, 0.82);
    --reaction-fill: rgba(148, 163, 184, 0.15);
    --reaction-glow: rgba(148, 163, 184, 0.16);
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    min-height: 74px;
    padding: 0.8rem 0.9rem;
    gap: 0.7rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(8, 10, 18, 0.86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.single-post .reaction-pill::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--reaction-value);
    pointer-events: none;
    background: linear-gradient(90deg, var(--reaction-fill), rgba(255, 255, 255, 0));
}

body.single-post .reaction-pill::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--reaction-value);
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
    background: var(--reaction-accent);
}

body.single-post .reaction-pill > * {
    position: relative;
    z-index: 1;
}

body.single-post .reaction-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .reaction-pill.selected {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px var(--reaction-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.single-post .reaction-like {
    --reaction-accent: #60a5fa;
    --reaction-fill: rgba(96, 165, 250, 0.16);
    --reaction-glow: rgba(96, 165, 250, 0.24);
}

body.single-post .reaction-love {
    --reaction-accent: #f472b6;
    --reaction-fill: rgba(244, 114, 182, 0.16);
    --reaction-glow: rgba(244, 114, 182, 0.24);
}

body.single-post .reaction-ok {
    --reaction-accent: #f59e0b;
    --reaction-fill: rgba(245, 158, 11, 0.16);
    --reaction-glow: rgba(245, 158, 11, 0.24);
}

body.single-post .reaction-dislike {
    --reaction-accent: #fb7185;
    --reaction-fill: rgba(251, 113, 133, 0.16);
    --reaction-glow: rgba(251, 113, 133, 0.22);
}

body.single-post .reaction-emoji {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 12px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 1.08rem;
}

body.single-post .reaction-label {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

body.single-post .reaction-percent {
    margin-left: auto;
    color: rgba(226, 232, 240, 0.74);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

body.single-post .comment-input,
body.single-post .comment-textarea {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

body.single-post .related-movies {
    padding: 0;
}

body.single-post .related-movies .comment-title {
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    body.single-post .single-jump-nav {
        display: none;
    }

    body.single-post .single-container {
        max-width: calc(100% - 20px);
        padding-inline: 0;
        margin-top: 0.8rem;
    }

    body.single-post .breadcrumb {
        margin-inline: 0.2rem;
        max-width: calc(100% - 0.4rem);
    }

    body.single-post .movie-hero {
        min-height: 0;
        border-radius: 24px;
        background-size: cover !important;
    }

    body.single-post .hero-content {
        padding: 1.15rem;
        gap: 1rem;
    }

    body.single-post .hero-poster {
        width: 185px;
        max-width: 58vw;
        margin-bottom: 0;
    }

    body.single-post .hero-details {
        width: 100%;
        padding: 1rem;
        border-radius: 20px;
    }

    body.single-post .hero-title {
        font-size: 1.7rem;
    }

    body.single-post .hero-meta-row,
    body.single-post .post-date-row {
        justify-content: center;
    }

    body.single-post .screenshots-section,
    body.single-post .about-card,
    body.single-post .faq-section,
    body.single-post .share-card,
    body.single-post .reaction-card,
    body.single-post .comment-card {
        padding: 1rem;
    }

    body.single-post .reaction-options,
    body.single-post .share-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.single-post .share-btn,
    body.single-post .reaction-pill {
        min-width: 0;
    }

    body.single-post .download-category {
        padding: 1rem;
    }

    body.single-post .dl-btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
    }
}

@media (max-width: 420px) {
    body.single-post .reaction-options,
    body.single-post .share-buttons {
        grid-template-columns: 1fr;
    }

    body.single-post .about-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================================
   WEFIM Single Post Mobile Future Layer
   Revert path: remove this block and the single-mobile-dock/hero-poster-shell markup.
   ========================================================================== */

body.single-post .hero-poster-shell {
    position: relative;
    width: min(245px, 100%);
    flex-shrink: 0;
    padding: 7px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)) padding-box,
        linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(147, 51, 234, 0.3), rgba(34, 211, 238, 0.2)) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 48px rgba(147, 51, 234, 0.2);
}

body.single-post .hero-poster-shell::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: 2;
    border-radius: 23px;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02) 31%, transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%);
    mix-blend-mode: screen;
    opacity: 0.72;
}

body.single-post .hero-poster-shell::after {
    content: '';
    position: absolute;
    left: 13%;
    right: 13%;
    bottom: -18px;
    height: 24px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(147, 51, 234, 0.34);
    filter: blur(18px);
    opacity: 0.78;
}

body.single-post .hero-poster-shell .hero-poster {
    width: 100%;
    max-width: none;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

body.single-post .hero-poster-shell .hero-poster:hover {
    transform: none;
    box-shadow: none;
}

body.single-post .single-mobile-dock {
    display: none;
}

body.single-post .hero-details::before {
    content: '';
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.9), rgba(34, 211, 238, 0.65));
    box-shadow: 0 0 16px rgba(147, 51, 234, 0.42);
}

body.single-post .screenshots-title::after,
body.single-post .downloads-title::after,
body.single-post .about-title::after,
body.single-post .faq-title::after,
body.single-post .comment-title::after {
    content: '';
    flex: 1;
    min-width: 28px;
    height: 1px;
    margin-left: 0.35rem;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.45), transparent);
}

@media (hover: hover) {
    body.single-post .hero-poster-shell:hover {
        transform: translateY(-4px);
        transition: transform 0.28s ease, box-shadow 0.28s ease;
        box-shadow:
            0 34px 86px rgba(0, 0, 0, 0.68),
            0 0 0 1px rgba(255, 255, 255, 0.08),
            0 0 58px rgba(34, 211, 238, 0.18);
    }
}

@media (max-width: 767px) {
    body.single-post {
        background:
            linear-gradient(180deg, #050713 0%, #080a16 42%, #05060d 100%);
    }

    body.single-post.wefim-mobile-dock-enabled .single-container {
        padding-bottom: calc(5.9rem + env(safe-area-inset-bottom));
    }

    body.single-post.wefim-mobile-dock-disabled .single-container {
        padding-bottom: 0;
    }

    body.single-post .movie-hero {
        min-height: 0;
        overflow: hidden;
        border-radius: 30px;
        margin-bottom: 0.95rem;
    }

    body.single-post .movie-hero::after {
        left: 18px;
        right: 18px;
    }

    body.single-post .hero-backdrop {
        border-radius: inherit;
        opacity: 0.32;
        filter: blur(7px) saturate(1.08);
    }

    body.single-post .hero-content {
        padding: 0.82rem 0.82rem 0.92rem;
        gap: 0.62rem;
    }

    body.single-post .hero-poster-shell {
        width: min(49vw, 170px);
        padding: 4px;
        border-radius: 24px;
        transform: none;
    }

    body.single-post .hero-poster-shell::before {
        inset: 5px;
        border-radius: 18px;
        opacity: 0.54;
    }

    body.single-post .hero-poster-shell::after {
        display: none;
    }

    body.single-post .hero-poster-shell .hero-poster {
        border-radius: 18px;
    }

    body.single-post .hero-details {
        width: 100%;
        gap: 0.72rem;
        padding: 0.9rem 0.92rem;
        border-radius: 22px;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
            rgba(9, 10, 20, 0.74);
        border-color: rgba(255, 255, 255, 0.14);
        box-shadow:
            0 18px 48px rgba(0, 0, 0, 0.38),
            inset 0 1px 0 rgba(255, 255, 255, 0.09);
    }

    body.single-post .hero-details::before {
        display: none;
    }

    body.single-post .hero-title {
        font-size: clamp(1.42rem, 6.6vw, 1.95rem);
        line-height: 1.04;
    }

    body.single-post .hero-meta-row {
        display: flex;
        gap: 0.42rem;
        justify-content: center;
    }

    body.single-post .meta-pill {
        min-height: 32px;
        padding: 0.38rem 0.68rem;
        font-size: 0.74rem;
    }

    body.single-post .post-date-row {
        gap: 0.42rem;
    }

    body.single-post .post-date-item {
        font-size: 0.72rem;
        padding: 0.42rem 0.6rem;
    }

    body.single-post .hero-description {
        max-height: none;
        overflow: visible;
        padding-right: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    body.single-post .hero-description::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    body.single-post .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    body.single-post .hero-actions .btn {
        width: 100%;
        min-height: 46px;
        padding: 0.75rem 0.85rem;
        border-radius: 16px;
        font-size: 0.84rem;
    }

    body.single-post .single-jump-nav {
        top: 8px;
        padding: 0.4rem;
        border-radius: 22px;
        background: rgba(8, 9, 18, 0.68);
    }

    body.single-post .single-mobile-dock {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        transform: none;
        z-index: 1200;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        gap: 0.36rem;
        padding: 0.45rem 0.5rem;
        padding-bottom: max(0.45rem, env(safe-area-inset-bottom, 0px));
        overflow: visible;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(147, 51, 234, 0.2);
        background:
            linear-gradient(180deg,
                rgba(147, 51, 234, 0.06) 0%,
                rgba(8, 10, 19, 0.98) 40%),
            rgb(8, 10, 19);
        backdrop-filter: blur(24px) saturate(1.3);
        -webkit-backdrop-filter: blur(24px) saturate(1.3);
        box-shadow:
            0 -8px 32px rgba(0, 0, 0, 0.35),
            0 -2px 12px rgba(147, 51, 234, 0.06),
            inset 0 1px 0 rgba(168, 85, 247, 0.12);
    }

    body.single-post.wefim-mobile-dock-disabled .single-mobile-dock {
        display: none !important;
    }

    /* Bottom extension to cover browser chrome gaps */
    body.single-post .single-mobile-dock::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -1px;
        bottom: -80px;
        background: inherit;
        z-index: -1;
        pointer-events: none;
    }

    body.single-post .single-mobile-dock::after {
        display: none;
    }

    body.single-post .single-mobile-dock a {
        position: relative;
        z-index: 1;
        min-width: 0;
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.45rem 0.16rem 0.4rem;
        border-radius: 16px;
        border: 1px solid rgba(147, 51, 234, 0.15);
        background:
            linear-gradient(165deg,
                rgba(147, 51, 234, 0.14) 0%,
                rgba(99, 102, 241, 0.08) 40%,
                rgba(34, 211, 238, 0.05) 100%
            ),
            rgba(15, 15, 25, 0.65);
        color: rgba(255, 255, 255, 0.92);
        text-decoration: none;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        backdrop-filter: blur(12px) saturate(1.4);
        -webkit-backdrop-filter: blur(12px) saturate(1.4);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            inset 0 -1px 0 rgba(147, 51, 234, 0.08),
            0 4px 16px rgba(0, 0, 0, 0.25),
            0 0 0 0.5px rgba(147, 51, 234, 0.1);
        transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                    background 0.22s ease,
                    border-color 0.22s ease,
                    box-shadow 0.22s ease,
                    color 0.18s ease;
        -webkit-tap-highlight-color: transparent;
        overflow: hidden;
    }

    /* Liquid glass refraction highlight */
    body.single-post .single-mobile-dock a::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background:
            radial-gradient(ellipse 80% 50% at 50% -10%,
                rgba(168, 85, 247, 0.22), transparent 70%),
            linear-gradient(180deg,
                rgba(255, 255, 255, 0.16) 0%,
                rgba(255, 255, 255, 0.02) 35%,
                transparent 55%,
                rgba(147, 51, 234, 0.06) 100%);
        opacity: 1;
    }

    /* ── Individual icon color identities ── */

    /* Home — indigo to cyan */
    body.single-post .single-mobile-dock a:first-child {
        border-color: rgba(99, 102, 241, 0.18);
        background:
            linear-gradient(165deg,
                rgba(99, 102, 241, 0.16) 0%,
                rgba(34, 211, 238, 0.08) 60%,
                rgba(15, 15, 25, 0.5) 100%
            ),
            rgba(15, 15, 25, 0.65);
    }

    body.single-post .single-mobile-dock a:first-child svg {
        filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.35));
        color: rgba(165, 180, 252, 0.95);
    }

    /* Screenshots — purple to rose */
    body.single-post .single-mobile-dock a[href="#screenshots-heading"] {
        border-color: rgba(168, 85, 247, 0.18);
        background:
            linear-gradient(165deg,
                rgba(168, 85, 247, 0.14) 0%,
                rgba(236, 72, 153, 0.07) 60%,
                rgba(15, 15, 25, 0.5) 100%
            ),
            rgba(15, 15, 25, 0.65);
    }

    body.single-post .single-mobile-dock a[href="#screenshots-heading"] svg {
        filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.35));
        color: rgba(196, 148, 255, 0.95);
    }

    /* Downloads — vibrant purple CTA (primary action) */
    body.single-post .single-mobile-dock a[href="#download-links"] {
        border-color: rgba(147, 51, 234, 0.28);
        background:
            linear-gradient(165deg,
                rgba(147, 51, 234, 0.28) 0%,
                rgba(124, 58, 237, 0.18) 40%,
                rgba(99, 102, 241, 0.1) 100%
            ),
            rgba(20, 12, 35, 0.7);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(147, 51, 234, 0.12),
            0 4px 20px rgba(147, 51, 234, 0.2),
            0 0 0 0.5px rgba(147, 51, 234, 0.18),
            0 0 24px rgba(147, 51, 234, 0.08);
    }

    body.single-post .single-mobile-dock a[href="#download-links"] svg {
        filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.45));
        color: rgba(196, 148, 255, 1);
    }

    body.single-post .single-mobile-dock a[href="#download-links"] span {
        color: rgba(196, 148, 255, 0.95);
    }

    /* Info — blue to indigo */
    body.single-post .single-mobile-dock a[href="#about-heading"] {
        border-color: rgba(96, 165, 250, 0.15);
        background:
            linear-gradient(165deg,
                rgba(96, 165, 250, 0.12) 0%,
                rgba(99, 102, 241, 0.08) 60%,
                rgba(15, 15, 25, 0.5) 100%
            ),
            rgba(15, 15, 25, 0.65);
    }

    body.single-post .single-mobile-dock a[href="#about-heading"] svg {
        filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.35));
        color: rgba(147, 197, 253, 0.95);
    }

    /* Top — neutral glass with subtle cyan */
    body.single-post .single-mobile-dock a:last-child {
        border-color: rgba(255, 255, 255, 0.1);
        background:
            linear-gradient(165deg,
                rgba(34, 211, 238, 0.08) 0%,
                rgba(255, 255, 255, 0.04) 50%,
                rgba(15, 15, 25, 0.5) 100%
            ),
            rgba(15, 15, 25, 0.65);
    }

    body.single-post .single-mobile-dock a:last-child svg {
        filter: drop-shadow(0 0 3px rgba(34, 211, 238, 0.3));
        color: rgba(165, 243, 252, 0.9);
    }

    /* ── Active / Press state ── */
    body.single-post .single-mobile-dock a:active {
        transform: scale(0.94);
        background:
            linear-gradient(165deg,
                rgba(147, 51, 234, 0.32) 0%,
                rgba(124, 58, 237, 0.2) 50%,
                rgba(99, 102, 241, 0.12) 100%
            ),
            rgba(20, 15, 35, 0.8);
        color: #fff;
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 0 12px rgba(147, 51, 234, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }

    /* ── SVG icon base ── */
    body.single-post .single-mobile-dock svg {
        width: 19px;
        height: 19px;
        flex: 0 0 auto;
        stroke-width: 2;
        transition: filter 0.22s ease, color 0.22s ease;
    }

    /* ── Label styling ── */
    body.single-post .single-mobile-dock a span {
        position: relative;
        z-index: 1;
        opacity: 0.85;
        transition: opacity 0.18s ease, color 0.18s ease;
    }

    body.single-post .single-mobile-dock a:active span {
        opacity: 1;
    }

    body.single-post .screenshots-section,
    body.single-post .downloads-section,
    body.single-post .about-card,
    body.single-post .faq-section,
    body.single-post .share-card,
    body.single-post .reaction-card,
    body.single-post .comment-card {
        border-radius: 26px;
        margin-bottom: 1rem;
    }

    body.single-post .screenshots-header,
    body.single-post .category-header,
    body.single-post .download-header,
    body.single-post .reaction-header,
    body.single-post .share-header {
        align-items: center;
    }

    body.single-post .downloads-section {
        overflow: hidden;
    }

    body.single-post .downloads-header {
        padding: 1rem 1.05rem;
    }

    body.single-post .download-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    body.single-post .dl-btn {
        width: 100%;
        min-height: 60px;
        justify-content: flex-start;
        border-radius: 18px;
        padding: 0.78rem 0.9rem;
    }

    body.single-post .dl-icon {
        margin-left: auto;
    }

    body.single-post .about-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    body.single-post .about-card-header {
        margin-bottom: 0.55rem;
    }

    body.single-post .about-meta-box {
        min-height: 68px;
        border-radius: 14px;
        padding: 0.64rem 0.68rem;
    }

    body.single-post .about-cast-box {
        padding-bottom: 0.68rem;
    }

    body.single-post .about-meta-label {
        gap: 0.42rem;
    }

    body.single-post .about-meta-icon {
        width: 1.46rem;
        height: 1.46rem;
        border-radius: 999px;
    }

    body.single-post .about-meta-value {
        font-size: 0.84rem;
    }

    body.single-post .about-cast-list {
        gap: 0.38rem;
    }

    body.single-post .about-cast-chip {
        min-height: 30px;
        padding: 0.38rem 0.56rem;
        font-size: 0.72rem;
    }

    body.single-post .share-header,
    body.single-post .reaction-header {
        align-items: flex-start;
        gap: 0.78rem;
    }

    body.single-post .share-meta,
    body.single-post .reaction-votes-pill {
        min-height: 30px;
        padding: 0.4rem 0.68rem;
        font-size: 0.7rem;
    }

    body.single-post .share-buttons,
    body.single-post .reaction-options {
        gap: 0.6rem;
    }

    body.single-post .share-btn,
    body.single-post .reaction-pill {
        min-height: 68px;
        padding: 0.74rem 0.82rem;
        border-radius: 16px;
    }

    body.single-post .share-icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    body.single-post .share-label,
    body.single-post .reaction-label {
        font-size: 0.88rem;
    }

    body.single-post .share-hint,
    body.single-post .reaction-percent {
        font-size: 0.7rem;
    }

    body.single-post .reaction-emoji {
        width: 2rem;
        height: 2rem;
        border-radius: 11px;
        font-size: 1rem;
    }

    body.single-post .wp-slider-container {
        border-radius: 24px;
    }

    body.single-post .wp-nav {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 360px) {
    body.single-post .hero-actions {
        grid-template-columns: 1fr;
    }

    body.single-post .single-mobile-dock {
        padding-inline: 0.35rem;
        border-radius: 0;
    }

    body.single-post .single-mobile-dock a {
        min-height: 50px;
        padding-inline: 0.12rem;
        font-size: 0.58rem;
        border-radius: 14px;
    }

    body.single-post .single-mobile-dock svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   WEFIM Screenshot Filmstrip Gallery
   Revert path: remove this block and restore wp-dots markup in single.php.
   ========================================================================== */

body.single-post .screenshots-header {
    gap: 1rem;
}

body.single-post .screenshots-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

body.single-post .screenshots-hint {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    font-weight: 600;
}

body.single-post .wp-slider-container {
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
        rgba(5, 7, 14, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.single-post .wp-slider {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 22%),
        #05070e;
}

body.single-post .wp-slider-inner {
    margin: 0.72rem 0.72rem 0;
    border-radius: 22px;
    background: #02030a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.single-post .wp-slides {
    border-radius: inherit;
    overflow: hidden;
}

body.single-post .wp-slide-img {
    border-radius: inherit;
}

body.single-post .wp-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%, transparent 78%, rgba(0, 0, 0, 0.22)),
        radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.16), transparent 45%);
    opacity: 0.78;
}

body.single-post .wp-filmstrip {
    display: flex;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.85rem 0.85rem 0.95rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

body.single-post .wp-filmstrip::-webkit-scrollbar,
body.single-post .wp-lightbox-filmstrip::-webkit-scrollbar {
    display: none;
}

body.single-post .wp-thumb {
    position: relative;
    flex: 0 0 118px;
    aspect-ratio: 16 / 9;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

body.single-post .wp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.68;
    transform: scale(1.02);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

body.single-post .wp-thumb span {
    position: absolute;
    left: 0.42rem;
    bottom: 0.38rem;
    min-width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.single-post .wp-thumb:hover,
body.single-post .wp-thumb.active {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 0 0 2px rgba(147, 51, 234, 0.22),
        0 0 22px rgba(147, 51, 234, 0.24);
}

body.single-post .wp-thumb:hover img,
body.single-post .wp-thumb.active img {
    opacity: 1;
    transform: scale(1.06);
}

body.single-post .wp-progress-bar {
    margin-inline: 0.85rem;
    border-radius: 999px;
}

body.single-post .wp-lightbox-overlay {
    background:
        radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.18), transparent 38%),
        rgba(0, 0, 0, 0.94);
}

body.single-post .wp-lightbox-content {
    top: 46%;
    max-height: calc(100vh - 190px);
}

body.single-post .wp-lightbox-img {
    max-height: calc(100vh - 190px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.72),
        0 0 0 1px rgba(147, 51, 234, 0.12);
}

body.single-post .wp-lightbox-counter {
    top: 22px;
    bottom: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 9, 18, 0.68);
}

body.single-post .wp-lightbox-filmstrip {
    position: absolute;
    left: 78px;
    right: 78px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 12;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
        rgba(8, 9, 18, 0.76);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
    scrollbar-width: none;
}

body.single-post .wp-lightbox-thumb {
    flex: 0 0 78px;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    opacity: 0.58;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

body.single-post .wp-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.single-post .wp-lightbox-thumb.active,
body.single-post .wp-lightbox-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.88);
}

@media (max-width: 768px) {
    body.single-post .screenshots-header {
        align-items: flex-start;
    }

    body.single-post .screenshots-meta {
        width: 100%;
        justify-content: flex-start;
    }

    body.single-post .screenshots-hint {
        font-size: 0.72rem;
    }

    body.single-post .wp-slider-container {
        border-radius: 24px;
    }

    body.single-post .wp-slider-inner {
        margin: 0.55rem 0.55rem 0;
        border-radius: 20px;
    }

    body.single-post .wp-slides {
        aspect-ratio: 16 / 10;
    }

    body.single-post .wp-nav {
        top: calc(50% - 42px);
    }

    body.single-post .wp-filmstrip {
        gap: 0.55rem;
        padding: 0.72rem 0.65rem 0.85rem;
    }

    body.single-post .wp-thumb {
        flex-basis: 92px;
        border-radius: 14px;
    }

    body.single-post .wp-thumb span {
        min-width: 1.18rem;
        height: 1.18rem;
        font-size: 0.62rem;
    }

    body.single-post .wp-progress-bar {
        display: none;
    }

    body.single-post .wp-lightbox-content {
        top: 45%;
        max-width: 96vw;
        max-height: calc(100vh - 176px);
    }

    body.single-post .wp-lightbox-img {
        max-width: 96vw;
        max-height: calc(100vh - 176px);
        border-radius: 14px;
    }

    body.single-post .wp-lightbox-close {
        top: calc(12px + env(safe-area-inset-top));
        right: 12px;
    }

    body.single-post .wp-lightbox-counter {
        top: calc(14px + env(safe-area-inset-top));
        font-size: 0.78rem;
    }

    body.single-post .wp-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    body.single-post .wp-lightbox-prev {
        left: 10px;
    }

    body.single-post .wp-lightbox-next {
        right: 10px;
    }

    body.single-post .wp-lightbox-filmstrip {
        left: 10px;
        right: 10px;
        justify-content: flex-start;
        bottom: calc(12px + env(safe-area-inset-bottom));
        border-radius: 20px;
    }

    body.single-post .wp-lightbox-thumb {
        flex-basis: 74px;
        border-radius: 12px;
    }
}
