/* ===========================================
   SECTION: Vì sao nên chọn xem Ngoại Hạng Anh trên FPT Play
   Ảnh nguồn thiết kế: banner nền + ảnh cầu thủ/cúp + 5 thumbnail nội dung
   chưa có file thật — xem README asset ở cuối file để biết path cần bổ sung.
   =========================================== */
body{
    background: #f3f3f3;
}
.nha-section {
    position: relative;
    width: 100%;
    padding: 40px 15px;
    box-sizing: border-box;
    overflow: hidden;
    /* fallback khi chưa có bg-main thật: xoáy hồng -> cam -> xanh lá sân cỏ */
    background-color: #d6295e;
    background-image:
        url('https://hi-static.fpt.vn/sys/shop/stag/2026-08-11/6a7b0cf7a02c3_1786449143.png'),
        linear-gradient(115deg, #c22a63 0%, #d6376a 22%, #e8623f 52%, #e2892f 72%, #2f8f4e 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 12px 0;
}

.nha-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* ---------- Header ---------- */

.nha-header {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 100%;
}

.nha-title {
    margin: 0 0 12px;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.nha-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.5;
}

/* ---------- Layout: lưới feature (trái) + promo card (phải) ---------- */

.nha-content {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 24px;
    align-items: stretch;
}

.nha-content > * {
    min-width: 0;
}

.nha-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nha-feature-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 24px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nha-feature-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.nha-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nha-feature-title {
    margin: 0;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.nha-feature-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.nha-features-spacer{
    display: none;
}

/* ---------- Promo card (phải) ---------- */

.nha-promo {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nha-promo img{
    border-radius: 18px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.nha-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF4D2E 0%, #FF8A3D 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nha-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .nha-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nha-header{
        margin-bottom: 24px;
    }

    .nha-feature-icon{
        width: 52px;
        height: 52px;
    }

    .nha-feature-title {
        font-size: 16px;
        margin-top: 8px;
    }

    .nha-feature-desc {
        font-size: 14px;
    }

}

@media (max-width: 767px) {
    .nha-section {
        padding: 40px 16px;
        margin: 4px 0;
    }

    .nha-title {
        font-size: 24px;
    }

    .nha-subtitle {
        font-size: 14px;
    }

.nha-features-wrapper {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;

        overflow: hidden;
    }

    .nha-features {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;

        width: 100%;

        overflow-x: auto;

        padding: 0;
        margin: 0;

        scrollbar-width: none;
        -ms-overflow-style: none;

        -webkit-overflow-scrolling: touch;
    }

    .nha-features::-webkit-scrollbar {
        display: none;
    }

    .nha-features-spacer {
        display: block;
        flex: 0 0 0;
        width: 16px;
    }

    .nha-feature-card {
        flex: 0 0 66%;
        width: 66%;

        box-sizing: border-box;

        padding: 16px;
        border-radius: 12px;

        scroll-snap-align: start;
    }

    .nha-promo {
        padding: 0;
        border-radius: 20px;
    }

    .nha-cta {
        width: 100%;
        padding: 14px 24px;
    }
}
