   .character-page {
        padding: 55px 0 80px;
    }

    .character-hero {
        position: relative;
        overflow: hidden;
        margin-bottom: 50px;
        padding: 45px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 22px;
        background:
            radial-gradient(
                circle at top right,
                rgba(229, 181, 65, .14),
                transparent 38%
            ),
            rgba(255, 255, 255, .035);
    }

    .character-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .character-image-wrapper {
        flex: 0 0 180px;
    }

    .character-image {
        display: block;
        width: 180px;
        height: 240px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
    }

    .character-image-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        height: 240px;
        border: 1px solid rgba(229, 181, 65, .2);
        border-radius: 16px;
        background: rgba(229, 181, 65, .06);
        color: #e5b541;
        font-size: 52px;
        font-weight: 700;
    }

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

    .character-title {
        margin-bottom: 15px;
        color: #fff;
        font-size: clamp(2.2rem, 5vw, 4rem);
        font-weight: 750;
        line-height: 1.05;
    }

    .character-intro {
        max-width: 720px;
        margin: 0;
        color: rgba(255, 255, 255, .72);
        font-size: 1.05rem;
        line-height: 1.75;
		font-weight:800
    }

    .character-description {
        max-width: 720px;
        margin-top: 16px;
        color: rgba(255, 255, 255, .62);
        line-height: 1.7;
    }

    .character-count {
        display: inline-flex;
        align-items: center;
        margin-top: 22px;
        padding: 8px 13px;
        border: 1px solid rgba(229, 181, 65, .2);
        border-radius: 999px;
        background: rgba(229, 181, 65, .08);
        color: #e5b541;
        font-size: .85rem;
        font-weight: 650;
    }

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

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

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

    .character-actors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 22px;
    }

    .character-actor-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;
    }

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

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

    .character-actor-image {
        display: block;
        width: 100%;
        height: 285px;
        object-fit: cover;
        object-position: center top;
    }

    .character-actor-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 285px;
        background: rgba(255, 255, 255, .04);
        color: rgba(255, 255, 255, .22);
        font-size: 52px;
    }

    .character-actor-content {
        padding: 18px;
    }

    .character-actor-name {
        margin: 0 0 13px;
        color: #fff;
        font-size: 1.08rem;
        font-weight: 700;
    }

    .character-movies {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .character-movie {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        color: rgba(255, 255, 255, .62);
        font-size: .87rem;
        line-height: 1.4;
    }

    .character-movie-year {
        flex-shrink: 0;
        color: #e5b541;
    }

    .character-empty {
        padding: 40px;
        border: 1px dashed rgba(255, 255, 255, .12);
        border-radius: 16px;
        color: rgba(255, 255, 255, .55);
        text-align: center;
    }

    @media (max-width: 767px) {
        .character-page {
            padding-top: 30px;
        }

        .character-hero {
            padding: 28px 22px;
        }

        .character-hero-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .character-image-wrapper,
        .character-image,
        .character-image-placeholder {
            width: 130px;
            height: 175px;
            flex-basis: auto;
        }

        .character-title {
            font-size: 2.25rem;
        }

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

        .character-actor-image,
        .character-actor-placeholder {
            height: 220px;
        }

        .character-actor-content {
            padding: 14px;
        }

        .character-movie {
            flex-direction: column;
            gap: 2px;
        }
    }

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

        .character-actor-image,
        .character-actor-placeholder {
            height: 360px;
        }
    }