
.page--video {
    padding: 3rem 0 3rem;
}
.video-hero {
    padding: 2.5rem 0 2rem;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.video-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}
.video-hero__poster-img {
    width: 100%;
    display: block;
    border-radius: 1.2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}
.video-hero__poster-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: 1.2rem;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}
.video-hero__title {
    font-size: 2.2rem;
    margin: 0 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.video-hero__title-icon {
    font-size: 1.5rem;
}
.video-hero__original {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    opacity: 0.85;
}
.video-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.6rem 0 0.8rem;
    font-size: 0.9rem;
    opacity: 0.9;
}
.video-hero__meta span::before {
    content: "•";
    margin: 0 0.4rem 0 0;
}
.video-hero__meta span:first-child::before {
    content: "";
    margin: 0;
}
.video-hero__genres {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.genre-chip {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.video-hero__description {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 60rem;
}
.video-hero__actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}
.video-hero__play-label {
    margin: 0 0 0.3rem;
    font-size: 0.85rem;
    opacity: 0.85;
}
.video-hero__warning {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #ffcc70;
}
.video-hero__tmdb-link {
    font-size: 0.9rem;
    opacity: 0.85;
    text-decoration: underline;
}
.video-hero__cast {
    margin-top: 1.7rem;
}
.video-hero__cast h2 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.video-hero__cast ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}
.video-hero__cast li {
    opacity: 0.9;
}

.video-trailer {
    max-width: 1100px;
    margin: 2.2rem auto 0;
}
.video-trailer__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}
.video-trailer__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Modal */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}
.video-modal--active {
    display: flex;
}
.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.9), rgba(0,0,0,0.98));
}
.video-modal__dialog {
    position: relative;
    width: min(100% - 2rem, 960px);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}
.video-modal__player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.video-modal__close {
    position: absolute;
    top: 0.4rem;
    right: 0.7rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 2;
}
.video-modal__message {
    color: #fff;
    padding: 1.5rem;
}

@media (max-width: 900px) {
    .video-hero__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}


.video-trailer__frame--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
}
