  .movie-page {
        padding-bottom: 80px;
    }

    .movie-hero {
        position: relative;
        min-height: 520px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        margin-bottom: 50px;
        background: #111;
    }

    .movie-hero-backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .movie-hero-overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                to top,
                rgba(10, 10, 12, 1) 0%,
                rgba(10, 10, 12, .86) 35%,
                rgba(10, 10, 12, .45) 70%,
                rgba(10, 10, 12, .25) 100%
            );
    }

    .movie-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: flex-end;
        gap: 34px;
        width: 100%;
        padding: 70px 0 45px;
    }

    .movie-poster-wrapper {
        flex: 0 0 190px;
    }

    .movie-main-poster {
        display: block;
        width: 190px;
        height: 285px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 20px 55px rgba(0, 0, 0, .5);
    }

    .movie-poster-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 190px;
        height: 285px;
        border: 1px solid rgba(229, 181, 65, .25);
        border-radius: 16px;
        background: rgba(229, 181, 65, .08);
        color: #e5b541;
        font-size: 52px;
        font-weight: 700;
    }

    .movie-hero-info {
        max-width: 800px;
    }

    .movie-eyebrow {
        display: inline-block;
        margin-bottom: 10px;
        color: #e5b541;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .movie-title {
        margin: 0 0 17px;
        color: #fff;
        font-size: clamp(2.3rem, 5vw, 4.5rem);
        font-weight: 750;
        line-height: 1.05;
    }

    .movie-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .movie-meta-item {
        display: inline-flex;
        align-items: center;
        padding: 7px 12px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
        color: rgba(255, 255, 255, .78);
        font-size: .84rem;
        backdrop-filter: blur(5px);
    }

    .movie-meta-item.is-accent {
        border-color: rgba(229, 181, 65, .3);
        background: rgba(229, 181, 65, .1);
        color: #e5b541;
    }

    .movie-overview {
        max-width: 760px;
        margin: 0;
        color: rgba(255, 255, 255, .74);
        font-size: 1rem;
        line-height: 1.75;
    }

    .movie-section {
        margin-top: 45px;
    }

    .movie-section-header {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
    }

    .movie-section-title {
        margin: 0;
        color: #fff;
        font-size: 1.7rem;
        font-weight: 700;
    }

    .movie-section-text {
        margin: 7px 0 0;
        color: rgba(255, 255, 255, .55);
    }

    .movie-cast-count {
        flex-shrink: 0;
        color: #e5b541;
        font-size: .9rem;
        font-weight: 650;
    }

    .movie-cast-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 20px;
    }

    .movie-cast-card {
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 17px;
        background: rgba(255, 255, 255, .035);
        transition:
            transform .2s ease,
            border-color .2s ease,
            background .2s ease;
    }

    .movie-cast-card:hover {
        transform: translateY(-5px);
        border-color: rgba(229, 181, 65, .32);
        background: rgba(255, 255, 255, .055);
    }

    .movie-cast-actor-link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .movie-cast-image {
        display: block;
        width: 100%;
        height: 270px;
        object-fit: cover;
        object-position: center top;
    }

    .movie-cast-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 270px;
        background: rgba(255, 255, 255, .04);
        color: rgba(255, 255, 255, .22);
        font-size: 52px;
        font-weight: 700;
    }

    .movie-cast-content {
        padding: 17px;
    }

    .movie-cast-name {
        margin: 0 0 8px;
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
    }

    .movie-character-label {
        margin-bottom: 6px;
        color: rgba(255, 255, 255, .45);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .movie-character-link,
    .movie-character-name {
        display: inline-block;
        color: #e5b541;
        font-size: .92rem;
        font-weight: 600;
        line-height: 1.4;
        text-decoration: none;
    }

    .movie-character-link:hover {
        color: #fff;
    }

    .movie-empty {
        padding: 42px 25px;
        border: 1px dashed rgba(255, 255, 255, .13);
        border-radius: 17px;
        color: rgba(255, 255, 255, .55);
        text-align: center;
    }

    @media (max-width: 767px) {
        .movie-hero {
            min-height: auto;
        }

        .movie-hero-content {
            align-items: flex-start;
            flex-direction: column;
            padding-top: 160px;
        }

        .movie-poster-wrapper,
        .movie-main-poster,
        .movie-poster-placeholder {
            width: 135px;
            height: 202px;
            flex-basis: auto;
        }

        .movie-title {
            font-size: 2.35rem;
        }

        .movie-cast-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 13px;
        }

        .movie-cast-image,
        .movie-cast-placeholder {
            height: 220px;
        }

        .movie-cast-content {
            padding: 14px;
        }
    }

    @media (max-width: 430px) {
        .movie-cast-grid {
            grid-template-columns: 1fr;
        }

        .movie-cast-image,
        .movie-cast-placeholder {
            height: 360px;
        }
    }