
    /* CSS Styles for page-bj88 */
    :root {
        --page-bj88-primary-color: #e44d26; /* Cam đỏ */
        --page-bj88-secondary-color: #333; /* Đen đậm */
        --page-bj88-accent-color: #ffcc00; /* Vàng */
        --page-bj88-text-color: #f0f0f0; /* Trắng nhạt */
        --page-bj88-bg-dark: #1a1a1a; /* Nền tối */
        --page-bj88-bg-light: #2a2a2a; /* Nền sáng hơn */
        --page-bj88-border-color: #444; /* Màu viền */
        --page-bj88-button-hover: #f05e3a; /* Nút hover */
    }

    .page-bj88 {
        font-family: 'Arial', sans-serif;
        color: var(--page-bj88-text-color);
        background-color: var(--page-bj88-bg-dark);
        line-height: 1.6;
        padding-top: 120px; /* Dành chỗ cho header cố định */
    }

    .page-bj88__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-bj88__section {
        background-color: var(--page-bj88-bg-light);
        margin-bottom: 30px;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-bj88__hero-section {
        position: relative;
        text-align: center;
        overflow: hidden;
        margin-bottom: 30px;
        border-radius: 10px;
        padding: 0;
        background-color: var(--page-bj88-bg-light);
    }

    .page-bj88__hero-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-bj88__hero-image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 500px; /* Giới hạn chiều cao của banner */
        border-radius: 10px 10px 0 0;
    }

    .page-bj88__hero-content {
        padding: 30px 20px;
        background-color: var(--page-bj88-bg-light);
        border-radius: 0 0 10px 10px;
    }

    .page-bj88__hero-title {
        color: var(--page-bj88-primary-color);
        font-size: 2.8em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bj88__hero-subtitle {
        font-size: 1.3em;
        color: var(--page-bj88-accent-color);
        margin-bottom: 25px;
    }

    .page-bj88__button {
        display: inline-block;
        background-color: var(--page-bj88-primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-bj88__button:hover {
        background-color: var(--page-bj88-button-hover);
        transform: translateY(-3px);
    }

    .page-bj88__floating-login {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        animation: page-bj88__pulse 2s infinite;
    }

    @keyframes page-bj88__pulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7); }
        70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(228, 77, 38, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 77, 38, 0); }
    }

    .page-bj88__title {
        color: var(--page-bj88-primary-color);
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.2em;
        position: relative;
        padding-bottom: 10px;
    }

    .page-bj88__title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--page-bj88-accent-color);
        border-radius: 2px;
    }

    .page-bj88__text-center {
        text-align: center;
    }

    .page-bj88__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-bj88__card {
        background-color: var(--page-bj88-bg-dark);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        border: 1px solid var(--page-bj88-border-color);
    }

    .page-bj88__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-bj88__card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistency */
    }

    .page-bj88__card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-bj88__card-content {
        padding: 20px;
    }

    .page-bj88__card-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: var(--page-bj88-accent-color);
    }

    .page-bj88__card-title a {
        color: var(--page-bj88-accent-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .page-bj88__card-title a:hover {
        color: var(--page-bj88-primary-color);
    }

    .page-bj88__card-description {
        font-size: 0.95em;
        color: #ccc;
    }

    .page-bj88__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-bj88__list-item {
        background-color: var(--page-bj88-bg-dark);
        border: 1px solid var(--page-bj88-border-color);
        margin-bottom: 10px;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .page-bj88__list-item:hover {
        background-color: #3a3a3a;
    }

    .page-bj88__list-item::before {
        content: '✓';
        color: var(--page-bj88-primary-color);
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2em;
    }

    .page-bj88__step-list {
        list-style: decimal;
        padding-left: 25px;
        margin: 0;
    }

    .page-bj88__step-list-item {
        margin-bottom: 15px;
        padding-left: 10px;
        font-size: 1.1em;
        color: #ddd;
    }

    .page-bj88__step-list-item strong {
        color: var(--page-bj88-accent-color);
    }

    .page-bj88__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        justify-items: center;
        align-items: center;
    }

    .page-bj88__provider-item {
        background-color: var(--page-bj88-bg-dark);
        padding: 10px;
        border-radius: 8px;
        border: 1px solid var(--page-bj88-border-color);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* Fixed height for logos */
        transition: transform 0.2s ease;
    }

    .page-bj88__provider-item:hover {
        transform: scale(1.05);
    }

    .page-bj88__provider-logo {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        display: block;
    }

    /* FAQ Styles */
    .page-bj88__faq-item {
        background-color: var(--page-bj88-bg-dark);
        border: 1px solid var(--page-bj88-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-bj88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        background-color: var(--page-bj88-bg-light);
        border-bottom: 1px solid var(--page-bj88-border-color);
        transition: background-color 0.3s ease;
    }

    .page-bj88__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-bj88__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-bj88-accent-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bj88__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-bj88-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-bj88__faq-item.active .page-bj88__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-bj88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #ddd;
    }

    .page-bj88__faq-item.active .page-bj88__faq-answer {
        max-height: 2000px !important; /* Use !important as per requirement */
        padding: 20px !important; /* Use !important as per requirement */
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-bj88 {
            padding-top: 100px; /* Dành chỗ cho header cố định trên mobile */
        }
        .page-bj88__hero-title {
            font-size: 2em;
        }
        .page-bj88__hero-subtitle {
            font-size: 1em;
        }
        .page-bj88__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-bj88__title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .page-bj88__section {
            padding: 20px;
            margin-bottom: 20px;
        }
        .page-bj88__grid {
            grid-template-columns: 1fr;
        }
        .page-bj88__card-image-container {
            height: 180px;
        }
        .page-bj88__card-title {
            font-size: 1.2em;
        }
        .page-bj88__floating-login {
            bottom: 15px;
            right: 15px;
        }
        .page-bj88__faq-question {
            padding: 15px;
        }
        .page-bj88__faq-question h3 {
            font-size: 1.1em;
        }
        .page-bj88__faq-toggle {
            font-size: 1.5em;
        }
        .page-bj88__faq-answer {
            padding: 0 15px;
        }
        .page-bj88__faq-item.active .page-bj88__faq-answer {
            padding: 15px !important;
        }
        /* Enforce responsive image styles for all images */
        .page-bj88 img {
            max-width: 100% !important;
            height: auto !important;
            object-fit: cover !important;
        }
        .page-bj88__hero-image {
            max-height: 300px !important;
        }
        .page-bj88__card-image {
            height: 180px !important;
        }
        .page-bj88__provider-logo {
            max-height: 60px !important;
        }
    }
  