* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

/* INTRO */

.films-intro {
    max-width: 900px;
    margin: 160px auto 120px;
    padding: 0 20px;
    text-align: center;
}

.intro-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.films-intro h1 {
    font-size: 42px;
    line-height: 1.3;
}

/* FILMS */

.films {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 120px;
}

/* FILM */

.film {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    text-decoration: none;
    color: white;
}

/* VIDEO */

.film-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* POSTER — ВАЖНО: ПОВЕРХ ВИДЕО */

.film-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1) brightness(0.85);
    transition:
        opacity 0.6s ease,
        transform 1.2s ease,
        filter 0.8s ease;
    z-index: 1;
}

.film-poster.hide {
    opacity: 0;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* OVERLAY */

.film-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.6s ease;
    z-index: 2;
}

.film:hover .film-overlay {
    background: rgba(0,0,0,0.5);
}

/* TITLE */

.film-title {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.film-title span {
    font-size: 40px;
    font-weight: 600;
}

.film-title small {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    opacity: 0.7;
}

/* MOBILE */

@media (max-width: 768px) {
    .film {
        height: 65vh;
    }
}