
       


        /* Card chính làm nổi bật dịch vụ */
        .main-livestream-service {
            background: #fff;
            padding: 20px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            position: relative; /* Cần cho vùng chứa hiệu ứng */
            overflow: hidden; /* Ẩn các hiệu ứng tràn ra ngoài */
            
            /* Animation "đang phát sóng" */
            border: 2px solid #ff5252;
            border-radius: 12px;
            animation: pulsing-glow 1.8s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .main-livestream-service:hover {
            transform: translateY(-3px);
        }

        .main-livestream-service .icon-wrapper {
            background-color: #007bff;
            color: #fff;
            width: 65px;
            height: 65px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background-color 0.3s ease;
        }

        .main-livestream-service .icon-wrapper img {
            width: 40px;
            height: 40px;
        }

        .main-livestream-service .service-content {
            text-align: left;
            flex-grow: 1;
        }

        .main-livestream-service .service-title {
            font-size: 18px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 5px;
        }

        .main-livestream-service .service-tagline {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* Tiêu đề cho các dịch vụ khác */
        .other-services-title {
            text-align: center;
            font-weight: 600;
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        /* Các card dịch vụ phụ trợ */
        .sub-service-card {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #343a40;
            cursor: pointer;
            height: 100%;
        }

        .sub-service-card:hover, .sub-service-card.active {
            border-color: #007bff;
            background-color: #e7f1ff;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
        }

        .sub-service-card .sub-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .sub-service-card .sub-title {
            font-weight: 500;
            font-size: 14px;
            margin: 0;
        }

        /* Animation viền đỏ nhấp nháy */
        @keyframes pulsing-glow {
            0% {
                box-shadow: 0 0 5px rgba(255, 82, 82, 0.4), 0 0 10px rgba(255, 82, 82, 0.3);
                border-color: rgba(255, 82, 82, 0.7);
            }
            70% {
                box-shadow: 0 0 15px rgba(255, 82, 82, 0.8), 0 0 25px rgba(255, 82, 82, 0.6);
                border-color: rgba(255, 82, 82, 1);
            }
            100% {
                box-shadow: 0 0 5px rgba(255, 82, 82, 0.4), 0 0 10px rgba(255, 82, 82, 0.3);
                border-color: rgba(255, 82, 82, 0.7);
            }
        }

        /* --- CSS CHO HIỆU ỨNG ĐỘNG (THÊM VÀO) --- */
        #live-effects-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .viewer-counter {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            z-index: 10;
            display: flex;
            align-items: center;
        }
        .viewer-counter .fa-eye {
            margin-right: 6px;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(0) scale(0.5);
                opacity: 0;
            }
            10% {
                transform: translateY(-20px) scale(0.7);
                opacity: 1;
            }
            100% {
                transform: translateY(-180px) scale(1.2);
                opacity: 0;
            }
        }
        
        .floating-effect {
            position: absolute;
            bottom: 20px;
            opacity: 0;
            animation-name: floatUp;
            animation-timing-function: ease-out;
            will-change: transform, opacity;
            font-size: 24px;
            z-index: 5;
        }
    
    
    
                /* Container chính với nền tối và viền gradient */
                .premium-showcase-container-unified {
                    background-color: #1a1a2d; /* Nền xanh đen công nghệ */
                    border-radius: 16px; /* THAY ĐỔI: Giảm bo góc */
                    padding: 30px; /* THAY ĐỔI: Giảm padding */
                    position: relative;
                    overflow: hidden;
                    border: 1px solid transparent;
                    background-clip: padding-box;
                    z-index: 1;
                }

                .premium-showcase-container-unified::before {
                    content: '';
                    position: absolute;
                    top: 0; right: 0; bottom: 0; left: 0;
                    z-index: -1;
                    margin: -1px; /* Độ dày của viền */
                    border-radius: inherit; /* Kế thừa bo góc */
                    background: linear-gradient(145deg, #4f46e5, #ec4899, #f59e0b);
                }

                /* Tiêu đề chính */
                .premium-showcase-container-unified .intro-header {
                    text-align: center;
                    margin-bottom: 30px; /* THAY ĐỔI: Giảm margin */
                }

                .premium-showcase-container-unified .main-title {
                    font-size: 24px; /* THAY ĐỔI: Giảm kích thước font */
                    font-weight: 700;
                    color: #ffffff;
                    margin-bottom: 8px; /* THAY ĐỔI: Giảm margin */
                }

                .premium-showcase-container-unified .subtitle {
                    color: #adb5bd;
                    font-size: 15px; /* THAY ĐỔI: Giảm kích thước font */
                    max-width: 700px;
                    margin: 0 auto;
                }

                /* Bố cục lưới (grid) cho tất cả dịch vụ */
                .feature-grid-unified {
                    display: grid;
                    /* THAY ĐỔI: Chuyển sang 3 cột để nhỏ gọn hơn */
                    grid-template-columns: repeat(3, 1fr);
                    gap: 15px; /* THAY ĐỔI: Giảm khoảng cách */
                }

                .grid-item-unified {
                    background: rgba(40, 42, 60, 0.5);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 12px; /* THAY ĐỔI: Giảm bo góc */
                    padding: 20px; /* THAY ĐỔI: Giảm padding */
                    transition: all 0.3s ease;
                    cursor: pointer;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }

                .grid-item-unified:hover {
                    transform: translateY(-5px);
                    background: rgba(40, 42, 60, 0.8);
                    border-color: rgba(255, 255, 255, 0.2);
                }
                
                /* Icon */
                .grid-item-unified .icon-wrapper {
                    width: 44px; /* THAY ĐỔI: Giảm kích thước */
                    height: 44px; /* THAY ĐỔI: Giảm kích thước */
                    border-radius: 10px; /* THAY ĐỔI: Giảm bo góc */
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 22px; /* THAY ĐỔI: Giảm kích thước icon */
                    flex-shrink: 0;
                    color: #fff;
                    margin-bottom: 12px; /* THAY ĐỔI: Giảm margin */
                }

                /* Màu sắc cho từng loại dịch vụ */
                .grid-item-unified.services .icon-wrapper { background: #4f46e5; }
                .grid-item-unified.otp .icon-wrapper { background: #8b5cf6; }
                .grid-item-unified.gmail .icon-wrapper { background: #ec4899; }
                .grid-item-unified.proxy .icon-wrapper { background: #22d3ee; }
                .grid-item-unified.entertainment .icon-wrapper { background: #f59e0b; }
                .grid-item-unified.rewards .icon-wrapper { background: #10b981; }

                /* Nội dung */
                .grid-item-unified .feature-title {
                    font-size: 15px; /* THAY ĐỔI: Giảm kích thước font */
                    font-weight: 600;
                    margin-bottom: 6px; /* THAY ĐỔI: Giảm margin */
                    color: #ffffff;
                }

                .grid-item-unified .feature-description {
                    font-size: 12px; /* THAY ĐỔI: Giảm kích thước font */
                    color: #adb5bd;
                    line-height: 1.5; /* THAY ĐỔI: Giảm chiều cao dòng */
                    margin-bottom: 0;
                }

                /* Nút kêu gọi hành động */
                .premium-showcase-container-unified .cta-section {
                    text-align: center;
                    margin-top: 30px; /* THAY ĐỔI: Giảm margin */
                }

                .premium-showcase-container-unified .btn-explore {
                    font-size: 15px; /* THAY ĐỔI: Giảm kích thước font */
                    font-weight: 600;
                    padding: 10px 30px; /* THAY ĐỔI: Giảm padding */
                    border-radius: 50px;
                    transition: all 0.3s ease;
                    background: #fff;
                    color: #1a1a2d;
                    border: none;
                }

                .premium-showcase-container-unified .btn-explore:hover {
                    transform: scale(1.05);
                    background: #f0f0f0;
                }
                
                /* CSS CHO THIẾT BỊ DI ĐỘNG */
                @media (max-width: 767px) {
                    .premium-showcase-container-unified {
                        padding: 20px 15px; /* Giảm padding trên mobile */
                    }

                    .premium-showcase-container-unified .main-title {
                        font-size: 22px; /* Giảm kích thước tiêu đề chính */
                    }
                    
                    /* THAY ĐỔI: Chuyển lại thành 2 cột trên tablet nhỏ, 1 cột trên điện thoại */
                    .feature-grid-unified {
                        grid-template-columns: 1fr 1fr;
                        gap: 10px; /* Giảm khoảng cách giữa các item */
                    }
                    
                    /* Layout cho từng item */
                    .grid-item-unified {
                        padding: 15px;
                        /* Chuyển layout item thành cột dọc để dễ nhìn hơn trên mobile */
                        flex-direction: column; 
                        text-align: center;
                    }

                    .grid-item-unified .icon-wrapper {
                        margin-bottom: 10px; /* Thêm lại margin bottom cho icon */
                        margin-right: 0; /* Bỏ margin phải */
                    }
                }
                
                @media (max-width: 575px) {
                    /* Trên điện thoại thì chuyển về 1 cột */
                    .feature-grid-unified {
                        grid-template-columns: 1fr;
                    }
                    .grid-item-unified {
                         flex-direction: row;
                         text-align: left;
                         align-items: center;
                    }
                    .grid-item-unified .icon-wrapper {
                        margin-bottom: 0;
                        margin-right: 15px;
                    }
                }
            
            
                   
                .faq-section-container {
                    background-color: #1a1a2d;
                    border-radius: 16px;
                    padding: 30px;
                    position: relative;
                    overflow: hidden;
                    border: 1px solid transparent;
                    background-clip: padding-box;
                    z-index: 1;
                }
                .faq-section-container::before {
                    content: '';
                    position: absolute;
                    top: 0; right: 0; bottom: 0; left: 0;
                    z-index: -1;
                    margin: -1px;
                    border-radius: inherit;
                    background: linear-gradient(145deg, #4f46e5, #ec4899);
                }
                .faq-grid {
                    display: grid;
                    grid-template-columns: 2fr 1fr;
                    gap: 30px;
                }
                /* --- Cột FAQ bên trái --- */
                .faq-accordion .accordion-item {
                    background-color: transparent;
                    border: none;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    margin-bottom: 10px;
                    padding-bottom: 10px;
                }
                .faq-accordion .accordion-item:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }
                .faq-accordion .accordion-header .accordion-button {
                    background-color: transparent;
                    color: #ffffff;
                    font-weight: 600;
                    font-size: 16px;
                    padding: 15px 5px;
                    border: none;
                    box-shadow: none;
                    transition: color 0.3s ease;
                }
                .faq-accordion .accordion-button:not(.collapsed) {
                    color: #a78bfa; /* Màu khi câu hỏi được mở */
                }
                .faq-accordion .accordion-button:hover {
                    color: #c4b5fd;
                }
                .faq-accordion .accordion-button::after {
                    /* Thay thế icon mặc định bằng icon + / - */
                    content: '\f217'; /* Mã icon Remix Icon: ri-add-line */
                    font-family: 'remixicon';
                    font-size: 20px;
                    font-weight: bold;
                    background-image: none;
                    transform: rotate(0deg);
                    transition: transform 0.3s ease;
                }
                .faq-accordion .accordion-button:not(.collapsed)::after {
                    content: '\f1e3'; /* Mã icon Remix Icon: ri-subtract-line */
                    transform: rotate(0deg);
                }
                .faq-accordion .accordion-body {
                    color: #adb5bd;
                    font-size: 14px;
                    line-height: 1.7;
                    padding: 5px 5px 15px 5px;
                }

                /* --- Cột "Why Us" bên phải --- */
                .why-us-card {
                    background-color: rgba(40, 42, 60, 0.6);
                    padding: 25px;
                    border-radius: 12px;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    height: 100%;
                }
                .why-us-title {
                    color: #ffffff;
                    font-weight: 700;
                    font-size: 18px;
                    margin-bottom: 20px;
                    text-align: center;
                }
                .why-us-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
                .why-us-list li {
                    display: flex;
                    align-items: center;
                    margin-bottom: 18px;
                    color: #d1d5db;
                    font-size: 14px;
                }
                .why-us-list li:last-child {
                    margin-bottom: 0;
                }
                .why-us-list .icon-wrapper {
                    flex-shrink: 0;
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 15px;
                    color: #fff;
                    font-size: 18px;
                }
                .why-us-list .icon-wrapper.bg-1 { background-color: #4f46e5; }
                .why-us-list .icon-wrapper.bg-2 { background-color: #10b981; }
                .why-us-list .icon-wrapper.bg-3 { background-color: #f59e0b; }
                .why-us-list .icon-wrapper.bg-4 { background-color: #22d3ee; }
                .why-us-list .icon-wrapper.bg-5 { background-color: #ec4899; }

                /* Responsive */
                @media (max-width: 991px) {
                    .faq-grid {
                        grid-template-columns: 1fr;
                    }
                }
                @media (max-width: 767px) {
                    .faq-section-container {
                        padding: 20px;
                    }
                    .faq-grid {
                        gap: 20px;
                    }
                    .faq-accordion .accordion-header .accordion-button {
                        font-size: 15px;
                    }
                }
            
 
                .how-it-works-section {
                    padding: 40px 15px;
                    background-color: #673669; /* Nền tối công nghệ */
                    border-radius: 12px;
                }
                .how-it-works-title {
                    text-align: center;
                    font-size: 28px;
                    font-weight: 700;
                    color: #ffffff;
                    margin-bottom: 40px;
                }
                .steps-container {
                    display: flex;
                    justify-content: space-between;
                    position: relative;
                }
                /* Đường nối giữa các bước */
                .steps-container::before {
                    content: '';
                    position: absolute;
                    top: 30px; /* Vị trí của đường kẻ */
                    left: 12.5%; 
                    right: 12.5%;
                    height: 2px;
                    background-color: rgba(255, 255, 255, 0.2);
                    z-index: 1;
                }

                .step-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    width: 22%;
                    position: relative;
                    z-index: 2;
                }

                .step-icon {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    background-color: #4f46e5;
                    color: #fff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 24px;
                    font-weight: bold;
                    border: 3px solid #1a1a2d;
                    transition: all 0.3s ease;
                    margin-bottom: 20px;
                }
                
                .step-item:hover .step-icon {
                    transform: scale(1.1);
                    background-color: #ec4899;
                }

                .step-title {
                    font-size: 18px;
                    font-weight: 600;
                    color: #ffffff;
                    margin-bottom: 10px;
                }

                .step-description {
                    font-size: 14px;
                    color: #adb5bd;
                    line-height: 1.6;
                }
                
                /* Responsive */
                @media (max-width: 767px) {
                    .steps-container {
                        flex-direction: column;
                        align-items: center;
                    }
                    .steps-container::before {
                        left: 50%;
                        right: auto;
                        top: 5%;
                        bottom: 5%;
                        width: 2px;
                        height: 90%;
                        transform: translateX(-50%);
                    }
                    .step-item {
                        width: 100%;
                        margin-bottom: 30px;
                        flex-direction: row;
                        text-align: left;
                        align-items: flex-start;
                    }
                     .step-item:last-child {
                        margin-bottom: 0;
                    }
                    .step-icon {
                        margin-right: 20px;
                        margin-bottom: 0;
                        flex-shrink: 0;
                    }
                }
            
            
            
                .testimonials-section-v4 {
                    padding: 40px 0;
                    //* background-color: #f8f9fa; *//
                    border-radius: 12px;
                }

                .testimonials-header-v4 {
                    text-align: center;
                    margin-bottom: 40px;
                    padding: 0 15px;
                }

                .testimonials-title-v4 {
                    font-size: 26px;
                    font-weight: 700;
                    color: #828532;
                    margin-bottom: 10px;
                }

                .testimonials-subtitle-v4 {
                    font-size: 15px;
                    color: #6c757d;
                    max-width: 650px;
                    margin: 0 auto;
                }

                /* Marquee container */
                .testimonial-marquee {
                    overflow: hidden;
                    position: relative;
                    /* Add a fade effect on the edges */
                    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                }

                .testimonial-marquee-content {
                    display: flex;
                    width: fit-content;
                    animation: marquee-scroll 60s linear infinite;
                }

                .testimonial-marquee:hover .testimonial-marquee-content {
                    animation-play-state: paused;
                }

                @keyframes marquee-scroll {
                    from { transform: translateX(0%); }
                    to { transform: translateX(-50%); }
                }

                /* Individual card */
                .testimonial-card-v4 {
                    width: 320px; /* Fixed width for each card */
                    flex-shrink: 0;
                    background-color: #ffffff;
                    border-radius: 12px;
                    padding: 20px;
                    border: 1px solid #e9ecef;
                    margin: 0 12px;
                    transition: all 0.3s ease;
                    display: flex;
                    flex-direction: column;
                }
                .testimonial-card-v4:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                }

                .testimonial-body-v4 {
                    font-size: 14px;
                    color: #495057;
                    line-height: 1.6;
                    flex-grow: 1;
                    margin-bottom: 15px;
                }

                .testimonial-footer-v4 {
                    display: flex;
                    align-items: center;
                    margin-top: auto;
                }

                .testimonial-avatar-v4 {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    object-fit: cover;
                    margin-right: 12px;
                }

                .testimonial-author-info-v4 .author-name {
                    font-weight: 600;
                    font-size: 14px;
                    color: #343a40;
                    margin: 0;
                }

                .testimonial-author-info-v4 .author-role {
                    font-size: 12px;
                    color: #6c757d;
                    margin: 0;
                }
                
                .testimonial-rating-v4 {
                    color: #ffc107;
                    font-size: 13px;
                    margin-left: auto;
                    flex-shrink: 0;
                }
            