.scroll-wrapper-movie {
    max-width: 1500px;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth !important;
    display: flex;
    margin-bottom: 10px;
}

.wrap-movie {
    width: 176px;
    border-radius: 8px;
    /* margin-right: 25px; */
    display: flex;
    flex-direction: column;
}

.more a,
.wrap-movie a {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #9D9D9D;
    text-decoration: none;
}

.item-cat {
    display: inline-block;
    width: 100%;
    height: 314px;
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
}

.item-cat:last-child {
    margin-right: 0;
}

.item-cat {
    position: relative;
    overflow: hidden;
    height: 265px;
}

/* Lớp phủ */
.item-cat .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.3s ease;
    border-radius: 8px;
    z-index: 1;
}

/* Icon play */
.item-cat .icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    z-index: 2;
    transition: 0.3s ease;
    pointer-events: none;
}

/* Khi hover */
.item-cat:hover .overlay,
.item-cat:hover .icon-play {
    opacity: 1;
}

.name-movie {
    color: rgba(32, 32, 32, 1);
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    width: 100%;
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
}

.title-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.title-anime {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: rgba(235, 91, 59, 1);
}

@media screen and (max-width: 678px) {

    .wrap-movie {
        width: 144px;
        border-radius: 8px;
        margin-right: 12.5px;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    .item-cat {
        height: 215px;
    }

    .scroll-wrapper,
    .scroll-wrapper-movie {
        gap: 0px;
    }

    .item-top-movie {
        align-items: end;
        justify-content: end;
        height: 130px;
    }

}