.filmflix-homepage-content #continue-watch-section .continue-watch-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #080d0f;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-main-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: inherit;
    background: #080d0f;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 44px 13px 10px;
    background: linear-gradient(180deg, rgba(4, 7, 8, 0) 41%, rgba(4, 7, 8, .2) 54%, rgba(4, 7, 8, .8) 76%, rgba(4, 7, 8, .98) 100%);
    pointer-events: none;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-title {
    margin: 0 0 8px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .72);
}

.filmflix-homepage-content #continue-watch-section .progress {
    width: 100%;
    height: 3px;
    margin: 0 0 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(200, 207, 212, .38);
}

.filmflix-homepage-content #continue-watch-section .progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8d1722 0%, #b62433 58%, #d13a49 100%);
}

.filmflix-homepage-content #continue-watch-section .continue-watch-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    gap: 10px;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-time,
.filmflix-homepage-content #continue-watch-section .continue-watch-season {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .72);
}

.filmflix-homepage-content #continue-watch-section .continue-watch-time {
    color: rgba(230, 234, 237, .82);
}

.filmflix-homepage-content #continue-watch-section .continue-watch-season {
    flex: 0 0 auto;
    margin-left: auto;
    color: #c92b3a;
    font-weight: 700;
    text-align: right;
}

.filmflix-homepage-content #continue-watch-section .remove_btn {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, visibility 160ms ease;
}

.filmflix-homepage-content #continue-watch-section .continue-watch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(151, 24, 38, .2);
}

.filmflix-homepage-content #continue-watch-section .continue-watch-card:hover .remove_btn {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767.98px) {
    .filmflix-homepage-content #continue-watch-section .continue-watch-overlay {
        padding: 34px 10px 8px;
    }

    .filmflix-homepage-content #continue-watch-section .continue-watch-title {
        margin-bottom: 6px;
        font-size: 14px;
    }

    .filmflix-homepage-content #continue-watch-section .continue-watch-time,
    .filmflix-homepage-content #continue-watch-section .continue-watch-season {
        font-size: 10px;
    }
}