/*
 * Tangxin Theater cinematic home stage.
 * Keeps the brand palette while joining the hero and discovery rail into one scene.
 */

body.home-index-body {
    --tx-cinema-bg: #09080d;
    --tx-cinema-panel: rgba(18, 15, 22, .78);
    --tx-cinema-ink: #fff7e8;
    --tx-cinema-muted: rgba(255, 247, 232, .66);
    --tx-cinema-line: rgba(255, 247, 232, .12);
    --tx-cinema-accent: #ee4668;
    overflow-x: hidden;
    color: var(--tx-cinema-ink);
    background: var(--tx-cinema-bg) !important;
}

body.home-index-body .member-wrap,
body.home-index-body .container.home-unified {
    background: transparent;
}

body.home-index-body #topnav .head_box.show-pc,
body.home-index-body #topnav .head_box.show-pc.is-header-end,
body.home-index-body #topnav .head_box.show-pc.is-header-solid {
    color: var(--tx-cinema-ink);
    border-bottom: 1px solid rgba(255, 247, 232, .08);
    background: linear-gradient(180deg, rgba(7, 6, 10, .9), rgba(7, 6, 10, .68)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
}

html body.home-index-body #topnav .head_box.show-pc .head_menu_a a,
html body.home-index-body #topnav .head_box.show-pc.is-header-end .head_menu_a a,
html body.home-index-body #topnav .head_box.show-pc.is-header-solid .head_menu_a a {
    color: rgba(255, 247, 232, .86) !important;
    opacity: 1 !important;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .38);
}

body.home-index-body #topnav .head_box.show-pc .tx-brand-lockup,
body.home-index-body #topnav .head_box.show-pc .tx-brand-wordmark,
body.home-index-body #topnav .head_box.show-pc .tx-brand-wordmark strong,
body.home-index-body #topnav .head_box.show-pc.is-header-solid .tx-brand-lockup,
body.home-index-body #topnav .head_box.show-pc.is-header-solid .tx-brand-wordmark,
body.home-index-body #topnav .head_box.show-pc.is-header-solid .tx-brand-wordmark strong {
    color: var(--tx-cinema-ink) !important;
    opacity: 1 !important;
}

html body.home-index-body #topnav .head_box.show-pc .head_menu_a li.active > a,
html body.home-index-body #topnav .head_box.show-pc .head_menu_a a:hover,
html body.home-index-body #topnav .head_box.show-pc .head_menu_a a:focus-visible,
html body.home-index-body #topnav .head_box.show-pc.is-header-end .head_menu_a li.active > a,
html body.home-index-body #topnav .head_box.show-pc.is-header-solid .head_menu_a li.active > a,
html body.home-index-body #topnav .head_box.show-pc.is-header-end .head_menu_a a:hover,
html body.home-index-body #topnav .head_box.show-pc.is-header-solid .head_menu_a a:hover {
    color: #ff6f8c !important;
}

.tx-cinema-stage {
    position: relative;
    isolation: isolate;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    color: var(--tx-cinema-ink);
    background:
        radial-gradient(circle at 86% 14%, rgba(238, 70, 104, .15), transparent 32%),
        linear-gradient(180deg, #08070b 0%, #100b12 70%, #111722 100%);
}

.tx-cinema-stage::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 240px;
    background: linear-gradient(180deg, transparent, #111722 88%);
    content: "";
    pointer-events: none;
}

.tx-cinema-hero {
    position: relative;
    min-height: clamp(620px, 50vw, 760px);
    overflow: hidden;
    background: #09080d;
}

.tx-cinema-hero::before {
    display: none;
}

.tx-cinema-hero::after {
    display: none;
}

.tx-cinema-hero__slides,
.tx-cinema-hero__slide {
    position: absolute;
    inset: 0;
}

.tx-cinema-hero__slide {
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.tx-cinema-hero__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.tx-cinema-hero__slide::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 6, 10, .96) 0%, rgba(7, 6, 10, .75) 30%, rgba(7, 6, 10, .18) 57%, rgba(7, 6, 10, .04) 78%, rgba(7, 6, 10, .24) 100%),
        linear-gradient(180deg, rgba(7, 6, 10, .14) 0%, transparent 48%, rgba(7, 6, 10, .92) 100%);
    content: "";
    pointer-events: none;
}

.tx-cinema-hero__ambient {
    position: absolute;
    inset: -7%;
    opacity: .24;
    background-position: center;
    background-size: cover;
    filter: blur(38px) saturate(1.08) brightness(.68);
    transform: scale(1.1);
    will-change: transform;
}

.tx-cinema-hero__art {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 1;
    overflow: hidden;
}

.tx-cinema-hero__art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(.95) contrast(1.06) brightness(.84);
    transform: scale(1.04);
    will-change: transform;
}

.tx-cinema-hero__slide.has-poster .tx-cinema-hero__art img {
    object-position: center 22%;
    filter: saturate(.88) contrast(1.03) brightness(.7);
}

.tx-cinema-hero__copy {
    position: absolute;
    z-index: 7;
    top: 25%;
    left: max(42px, calc((100vw - 1440px) / 2 + 54px));
    width: min(43vw, 620px);
    text-shadow: 0 3px 22px rgba(0, 0, 0, .42);
}

.tx-cinema-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: rgba(255, 247, 232, .7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.tx-cinema-hero__eyebrow span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(238, 70, 104, .42);
    border-radius: 999px;
    color: #ffc2ce;
    background: rgba(238, 70, 104, .12);
    letter-spacing: .12em;
}

.tx-home-primary-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tx-cinema-hero__copy h1,
.tx-cinema-hero__copy h2 {
    max-width: 10em;
    margin: 0;
    color: var(--tx-cinema-ink);
    font-family: var(--tx-display, "HarmonyOS Sans SC", "Microsoft YaHei UI", sans-serif);
    font-size: clamp(58px, 6vw, 96px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -.055em;
}

.tx-cinema-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 16px;
}

.tx-cinema-hero__meta span {
    position: relative;
    color: rgba(255, 247, 232, .78);
    font-size: 14px;
}

.tx-cinema-hero__meta span + span::before {
    margin-right: 8px;
    color: #ee4668;
    content: "·";
}

.tx-cinema-hero__summary {
    display: -webkit-box;
    max-width: 520px;
    margin: 0;
    overflow: hidden;
    color: var(--tx-cinema-muted);
    font-size: 16px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tx-cinema-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.tx-cinema-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 247, 232, .22);
    border-radius: 999px;
    color: var(--tx-cinema-ink) !important;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.tx-cinema-action:hover,
.tx-cinema-action:focus-visible {
    border-color: rgba(255, 247, 232, .44);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.tx-cinema-action:focus-visible,
.tx-cinema-hero__nav-item:focus-visible,
body.home-index-body .tx-trend-tab:focus-visible,
body.home-index-body .tx-trend-card__link:focus-visible {
    outline: 2px solid #ff7994;
    outline-offset: 3px;
}

.tx-cinema-action--primary {
    border-color: var(--tx-cinema-accent);
    color: #fff !important;
    background: var(--tx-cinema-accent);
    box-shadow: 0 14px 34px rgba(238, 70, 104, .28);
}

.tx-cinema-action--primary:hover,
.tx-cinema-action--primary:focus-visible {
    border-color: #ff6b88;
    background: #ff5a7b;
}

.tx-cinema-action__play {
    margin-right: 9px;
    font-size: 11px;
}

.tx-cinema-hero__nav {
    position: absolute;
    z-index: 8;
    right: max(38px, calc((100vw - 1440px) / 2 + 52px));
    bottom: 220px;
    display: grid;
    width: min(250px, 21vw);
    gap: 5px;
}

.tx-cinema-hero__nav-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 8px 12px;
    overflow: hidden;
    border: 0;
    border-left: 2px solid rgba(255, 247, 232, .16);
    border-radius: 0 10px 10px 0;
    color: rgba(255, 247, 232, .54);
    background: rgba(8, 7, 11, .18);
    text-align: left;
    cursor: pointer;
    transition: color .22s ease, background-color .22s ease, border-color .22s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.tx-cinema-hero__nav-item:hover,
.tx-cinema-hero__nav-item.is-active {
    color: var(--tx-cinema-ink);
    border-left-color: var(--tx-cinema-accent);
    background: rgba(18, 15, 22, .62);
}

.tx-cinema-hero__nav-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: italic;
}

.tx-cinema-hero__nav-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.tx-cinema-hero__nav-copy strong,
.tx-cinema-hero__nav-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tx-cinema-hero__nav-copy strong {
    color: inherit;
    font-size: 14px;
}

.tx-cinema-hero__nav-copy small {
    color: rgba(255, 247, 232, .42);
    font-size: 11px;
}

.tx-cinema-hero__nav-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--tx-cinema-accent);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.tx-cinema-hero__nav-item.is-active .tx-cinema-hero__nav-progress {
    transform: scaleX(1);
}

body.home-index-body .tx-cinema-stage > .tx-trend-deck {
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    width: min(1380px, calc(100% - 64px));
    max-width: none;
    margin: -188px auto 28px;
    padding: 18px 20px 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 232, .1);
    border-radius: 20px;
    color: var(--tx-cinema-ink);
    background:
        linear-gradient(180deg, rgba(19, 16, 23, .82), rgba(11, 10, 15, .94));
    box-shadow: 0 24px 62px rgba(0, 0, 0, .34);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
}

body.home-index-body .tx-cinema-stage .tx-trend-deck::before {
    display: none;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin: 0 0 14px;
    padding: 0 2px;
    border: 0;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__eyebrow {
    flex: 0 0 auto;
    margin: 0;
    color: #ff7894;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__heading > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__heading h2 {
    margin: 0;
    color: var(--tx-cinema-ink);
    font-family: var(--tx-display, "HarmonyOS Sans SC", "Microsoft YaHei UI", sans-serif);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
}

body.home-index-body .tx-cinema-stage .tx-trend-deck__heading p {
    margin: 0;
    overflow: hidden;
    color: rgba(255, 247, 232, .46);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home-index-body .tx-cinema-stage .tx-trend-tabs {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    width: auto;
    margin: 0;
    padding: 3px;
    border: 1px solid rgba(255, 247, 232, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
}

body.home-index-body .tx-cinema-stage .tx-trend-tab {
    min-width: auto;
    min-height: 32px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 247, 232, .58);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
}

body.home-index-body .tx-cinema-stage .tx-trend-tab:hover {
    color: var(--tx-cinema-ink);
}

body.home-index-body .tx-cinema-stage .tx-trend-tab.is-active {
    color: #fff;
    background: var(--tx-cinema-accent);
    box-shadow: 0 8px 20px rgba(238, 70, 104, .24);
}

body.home-index-body .tx-cinema-stage .tx-trend-panels,
body.home-index-body .tx-cinema-stage .tx-trend-panel {
    min-height: 0;
}

body.home-index-body .tx-cinema-stage .tx-trend-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: auto !important;
    min-height: 0 !important;
    align-content: start;
    gap: 12px;
}

body.home-index-body .tx-cinema-stage .tx-trend-card,
body.home-index-body .tx-cinema-stage .tx-trend-card--lead {
    min-width: 0;
    height: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 232, .085);
    border-radius: 14px;
    background: #17141b;
    box-shadow: none;
    transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

body.home-index-body .tx-cinema-stage .tx-trend-card:hover,
body.home-index-body .tx-cinema-stage .tx-trend-card:focus-within {
    border-color: rgba(238, 70, 104, .48);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
    transform: translateY(-4px);
}

body.home-index-body .tx-cinema-stage .tx-trend-card__link {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    color: var(--tx-cinema-ink);
}

body.home-index-body .tx-cinema-stage .tx-trend-card__media {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 57%;
    overflow: hidden;
    border-radius: 0;
    background: #17141b;
}

body.home-index-body .tx-cinema-stage .tx-trend-card__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(.86) contrast(1.02);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), filter .3s ease;
}

body.home-index-body .tx-cinema-stage .tx-trend-card:hover .tx-trend-card__media img,
body.home-index-body .tx-cinema-stage .tx-trend-card:focus-within .tx-trend-card__media img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.045);
}

body.home-index-body .tx-cinema-stage .tx-trend-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(8, 7, 11, .78));
}

body.home-index-body .tx-cinema-stage .tx-trend-card__rank {
    position: absolute;
    top: 9px;
    left: 10px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .55);
}

body.home-index-body .tx-cinema-stage .tx-trend-card__body {
    position: relative;
    display: block;
    min-height: 64px;
    padding: 10px 11px 11px;
    background: linear-gradient(180deg, #17141b, #121016);
}

body.home-index-body .tx-cinema-stage .tx-trend-card__signals {
    display: flex;
    gap: 6px;
    margin: 0 0 5px;
    color: rgba(255, 247, 232, .42);
    font-size: 10px;
}

body.home-index-body .tx-cinema-stage .tx-trend-card__evidence {
    color: #ff9caf;
}

body.home-index-body .tx-cinema-stage .tx-trend-card__body h3 {
    margin: 0;
    overflow: hidden;
    color: var(--tx-cinema-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home-index-body .tx-cinema-stage .tx-trend-card__body p {
    margin: 4px 0 0;
    overflow: hidden;
    color: rgba(255, 247, 232, .44);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.home-index-body .home-unified .home-detail,
body.home-index-body:not(.bstem) .home-detail {
    margin-top: 0;
    border-top: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 88% 2%, rgba(238, 70, 104, .11), transparent 27%),
        linear-gradient(180deg, #111722 0%, #181019 48%, #16070b 100%);
}

body.home-index-body:not(.bstem) .home-detail::after {
    background:
        radial-gradient(circle at 88% 2%, rgba(238, 70, 104, .11), transparent 27%),
        linear-gradient(180deg, #111722 0%, #181019 48%, #16070b 100%);
}

@media screen and (max-width: 1080px) {
    .tx-cinema-hero__copy {
        left: 34px;
        width: 48vw;
    }

    .tx-cinema-hero__art {
        right: 0;
        width: 100%;
    }

    .tx-cinema-hero__art img {
        object-fit: cover;
        object-position: center 22%;
    }

    .tx-cinema-hero__nav {
        right: 28px;
        width: 220px;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-deck__heading p {
        display: none;
    }
}

@media screen and (max-width: 820px) {
    body.home-index-body .head_box.show-mobile,
    body.home-index-body .head_box.show-mobile.is-header-end,
    body.home-index-body .head_box.show-mobile.is-header-solid {
        color: var(--tx-cinema-ink);
        border-bottom: 1px solid rgba(255, 247, 232, .08);
        background: rgba(7, 6, 10, .86) !important;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    body.home-index-body .head_box.show-mobile .header.box {
        background: rgba(7, 6, 10, .94) !important;
    }

    body.home-index-body .head_box.show-mobile .tx-brand-wordmark,
    body.home-index-body .head_box.show-mobile .tx-brand-wordmark strong {
        color: var(--tx-cinema-ink) !important;
    }

    body.home-index-body .foot.foot_nav .hidden_mb {
        border-top: 1px solid rgba(255, 247, 232, .1);
        background: rgba(9, 8, 13, .96) !important;
        box-shadow: 0 -10px 28px rgba(0, 0, 0, .28);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    .tx-cinema-hero {
        min-height: 730px;
    }

    .tx-cinema-hero::before {
        display: none;
    }

    .tx-cinema-hero__slide::after {
        background:
            linear-gradient(180deg, rgba(7, 6, 10, .08) 0%, rgba(7, 6, 10, .18) 28%, rgba(7, 6, 10, .9) 55%, #09080d 79%, #09080d 100%),
            linear-gradient(90deg, rgba(7, 6, 10, .76), transparent 55%, rgba(7, 6, 10, .12));
    }

    .tx-cinema-hero__ambient {
        inset: -10%;
        opacity: .3;
        filter: blur(30px) saturate(.9) brightness(.64);
    }

    .tx-cinema-hero__art {
        inset: 0;
        width: 100%;
        height: 58%;
        opacity: .92;
    }

    .tx-cinema-hero__art img {
        object-position: center 34%;
    }

    .tx-cinema-hero__copy {
        top: 315px;
        right: 20px;
        left: 20px;
        width: auto;
    }

    .tx-cinema-hero__eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .tx-cinema-hero__copy h1,
    .tx-cinema-hero__copy h2 {
        font-size: clamp(44px, 13vw, 62px);
        line-height: 1;
    }

    .tx-cinema-hero__meta {
        margin: 16px 0 10px;
    }

    .tx-cinema-hero__summary {
        font-size: 14px;
        line-height: 1.6;
    }

    .tx-cinema-hero__actions {
        margin-top: 18px;
    }

    .tx-cinema-action {
        min-height: 42px;
        padding: 0 17px;
    }

    .tx-cinema-hero__nav {
        right: auto;
        bottom: 132px;
        left: 20px;
        display: flex;
        width: auto;
        gap: 8px;
    }

    .tx-cinema-hero__nav-item {
        display: flex;
        width: 42px;
        min-height: 34px;
        padding: 0;
        border: 1px solid rgba(255, 247, 232, .12);
        border-radius: 999px;
        justify-content: center;
        text-align: center;
    }

    .tx-cinema-hero__nav-item.is-active {
        width: 56px;
        border-color: rgba(238, 70, 104, .56);
    }

    .tx-cinema-hero__nav-copy {
        display: none;
    }

    .tx-cinema-hero__nav-number {
        font-size: 13px;
    }

    body.home-index-body .tx-cinema-stage > .tx-trend-deck {
        width: calc(100% - 20px);
        margin-top: -132px;
        margin-bottom: 18px;
        padding: 14px 12px 15px;
        border-radius: 18px;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-deck__head {
        display: grid;
        gap: 12px;
        margin-bottom: 12px;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-deck__heading {
        justify-content: space-between;
        gap: 10px;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-deck__heading > div {
        display: block;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-deck__heading h2 {
        font-size: 19px;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-tabs {
        width: 100%;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-tabs::-webkit-scrollbar {
        display: none;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-tab {
        flex: 0 0 auto;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-grid {
        display: grid;
        grid-auto-columns: min(72vw, 280px);
        grid-auto-flow: column;
        grid-template-columns: none;
        gap: 10px;
        padding-bottom: 3px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-grid::-webkit-scrollbar {
        display: none;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-card {
        min-height: 0 !important;
        scroll-snap-align: start;
    }

    body.home-index-body .tx-cinema-stage .tx-trend-card__media {
        min-height: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tx-cinema-action,
    .tx-cinema-hero__nav-item,
    .tx-cinema-hero__nav-progress,
    body.home-index-body .tx-cinema-stage .tx-trend-card,
    body.home-index-body .tx-cinema-stage .tx-trend-card__media img {
        transition: none !important;
    }
}
