.film-strip {
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
}

.film-track {
    display: flex;
    gap: 15px;
    width: max-content;

    animation: scrollFilm 25s linear infinite;
}

.film-strip:hover .film-track {
    animation-play-state: paused;
}

.film-item {
    flex-shrink: 0;
    text-align: center;
}
.sidebar-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
}
.film-item img {
    width: 100%;
    height: 25em;
    object-fit: cover;
    border-radius: 8px;

    transition: 0.3s;
}

.film-item:hover img {
    transform: scale(1.1);
}

.film-item h4 {
    font-size: 12px;
    margin-top: 6px;
    color: #333;

    height: 32px;
    overflow: hidden;
}
.recommend-all {
    display: block;
    width: fit-content;
    margin: 20px auto 0;

    padding: 12px 25px;
    border-radius: 30px;

    background: linear-gradient(135deg, #f58220, #ff9a3c);
    color: white;
    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(245,130,32,0.4);

    transition: 0.3s;
}

.recommend-all:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(245,130,32,0.6);
}

@keyframes scrollFilm {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}