.right-side-movies {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

/* 完全照抄 series.css 的 .series-box 设计，但使用 2:3 比例 */
.right-movie-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    aspect-ratio: 9/15;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
    background: var(--bg-minor);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 完全照抄 series.css 的 ::before 设计 */
.right-movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
    filter: brightness(1) contrast(1.2) saturate(1.2);
}

.right-movie-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

/* 完全照抄 series.css 的 ::after 渐变设计 */
.right-movie-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* 完全照抄 series.css 的 h2 设计 */

.right-movie-card h5,
.right-movie-card h4,
.right-movie-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    width: 100%;
    color: var(--fg-light1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s, transform 0.3s, max-height 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 3.3rem;
    white-space: normal;
}

.right-movie-card h5.overflowed::after {
    content: '...';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #222 80%);
    color: #fff;
    padding-left: 20px;
    height: 1.3em;
    line-height: 1.3em;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-movie-card:hover h5 {
    color: var(--fg-primary);
    transform: translateY(-2px);
    max-height: 100vh;
    overflow: visible;
}

.right-movie-card:hover h5.overflowed::after {
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 完全照抄 series.css 的 label 设计 */
.right-movie-card p {
    position: relative;
    z-index: 2;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    text-align: left;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.right-movie-card:hover p {
    color: var(--fg-light3);
    transform: translateY(-2px);
}

.right-movie-card .movie-title {
    font-size: 0.85rem;

}

.movie-code {
    color: #ffcc00;
    font-weight: 600;
}

/* 响应式：小屏隐藏 */
@media (max-width: 1199px) {
    .right-side-movies {
        display: none;
    }
}