.ftc-wrap {
    width: 100%;
    margin: 0 0 28px 0;
    background: #111;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    clear: both;
}

.ftc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 40px 12px;
    background: linear-gradient(180deg, #1d1d1d, #101010);
}

.ftc-head h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .25px;
    text-transform: uppercase;
    line-height: 1.2;
}

.ftc-head h2 span {
    color: #f0a000;
}

.ftc-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.ftc-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 6px;
    background: #f0a000;
    color: #111;
    font-size: 28px;
    line-height: 30px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.ftc-btn:hover {
    transform: translateY(-1px);
    opacity: .9;
}

.ftc-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 40px 15px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ftc-carousel::-webkit-scrollbar {
    display: none;
}

.ftc-card {
    display: block;
    flex: 0 0 255px;
    color: #fff;
    text-decoration: none !important;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    transition: transform .18s ease, box-shadow .18s ease;
}

.ftc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

.ftc-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.ftc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ftc-badge {
    position: absolute;
    top: 7px;
    right: 7px;
    background: rgba(0,0,0,.82);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
}

.ftc-duration {
    position: absolute;
    right: 7px;
    bottom: 7px;
    background: rgba(0,0,0,.78);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 3px;
}

.ftc-title {
    padding: 8px 9px 10px;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
    color: #e8e8e8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

@media (max-width: 900px) {
    .ftc-head {
        padding: 12px 14px;
    }

    .ftc-carousel {
        padding: 0 14px 12px;
    }

    .ftc-card {
        flex-basis: 210px;
    }

    .ftc-head h2 {
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .ftc-wrap {
        margin-bottom: 20px;
    }

    .ftc-card {
        flex-basis: 170px;
    }

    .ftc-controls {
        display: none;
    }
}
