
    /* CSS cho .page-89bet1 */

    /* Bảng màu */
    :root {
        --page-89bet1-primary-color: #e44d26; /* Đỏ/cam rực rỡ */
        --page-89bet1-secondary-color: #333; /* Xám đậm */
        --page-89bet1-accent-color: #f7b731; /* Vàng kim */
        --page-89bet1-text-color: #ffffff;
        --page-89bet1-background-color: #1a1a1a; /* Nền tối */
        --page-89bet1-card-background: #2a2a2a;
        --page-89bet1-border-color: #444;
    }

    .page-89bet1 {
        font-family: 'Arial', sans-serif;
        color: var(--page-89bet1-text-color);
        background-color: var(--page-89bet1-background-color);
        line-height: 1.6;
        overflow-x: hidden; /* Ngăn cuộn ngang trên màn hình nhỏ */
    }

    /* Phần Hero */
    .page-89bet1__hero-section {
        position: relative;
        padding: 10px 20px 80px; /* Đệm trên nhỏ, giả định body xử lý bù trừ tiêu đề */
        background-image: url('[GALLERY:hero:1920x1080:betting,casino,89bet1]');
        background-size: cover;
        background-position: center;
        color: var(--page-89bet1-text-color);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 600px;
        box-sizing: border-box;
    }

    .page-89bet1__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

    .page-89bet1__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
    }

    .page-89bet1__hero-title {
        font-size: 3.2em;
        margin-bottom: 20px;
        color: var(--page-89bet1-accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }

    .page-89bet1__hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 40px;
        color: #f0f0f0;
    }

    .page-89bet1__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Kiểu nút chung */
    .page-89bet1__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        white-space: nowrap; /* Ngăn văn bản xuống dòng */
    }

    .page-89bet1__button--primary {
        background-color: var(--page-89bet1-primary-color);
        color: var(--page-89bet1-text-color);
    }

    .page-89bet1__button--primary:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
    }

    .page-89bet1__button--secondary {
        background-color: var(--page-89bet1-card-background);
        color: var(--page-89bet1-accent-color);
        border: 2px solid var(--page-89bet1-accent-color);
    }

    .page-89bet1__button--secondary:hover {
        background-color: var(--page-89bet1-accent-color);
        color: var(--page-89bet1-background-color);
        transform: translateY(-3px);
    }

    .page-89bet1__button--small {
        padding: 10px 20px;
        font-size: 0.9em;
        border-radius: 25px;
        background-color: var(--page-89bet1-accent-color);
        color: var(--page-89bet1-background-color);
    }

    .page-89bet1__button--small:hover {
        background-color: #e6a020;
        transform: translateY(-2px);
    }

    /* Nút nổi */
    .page-89bet1__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-89bet1__floating-button {
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1em;
        font-weight: bold;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-89bet1__floating-button--register {
        background-color: var(--page-89bet1-primary-color);
        color: var(--page-89bet1-text-color);
    }

    .page-89bet1__floating-button--register:hover {
        background-color: #c0392b;
        transform: scale(1.05);
    }

    .page-89bet1__floating-button--login {
        background-color: var(--page-89bet1-accent-color);
        color: var(--page-89bet1-background-color);
    }

    .page-89bet1__floating-button--login:hover {
        background-color: #e6a020;
        transform: scale(1.05);
    }

    /* Kiểu phần */
    .page-89bet1__section-title {
        font-size: 2.5em;
        color: var(--page-89bet1-accent-color);
        text-align: center;
        margin-bottom: 50px;
        padding-top: 40px;
        position: relative;
        line-height: 1.3;
    }

    .page-89bet1__section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: var(--page-89bet1-primary-color);
        margin: 15px auto 0;
        border-radius: 2px;
    }

    /* Trưng bày sản phẩm */
    .page-89bet1__product-showcase {
        padding: 60px 20px;
        background-color: var(--page-89bet1-background-color);
    }

    .page-89bet1__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-89bet1__product-card {
        background-color: var(--page-89bet1-card-background);
        border-radius: 15px;
        overflow: hidden;
        text-align: center;
        padding: 25px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box; /* Quan trọng cho di động */
    }

    .page-89bet1__product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-89bet1__product-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
        object-fit: cover;
        min-height: 200px; /* Đảm bảo hình ảnh không quá nhỏ */
    }

    .page-89bet1__product-title {
        font-size: 1.5em;
        color: var(--page-89bet1-primary-color);
        margin-bottom: 15px;
    }

    .page-89bet1__product-description {
        font-size: 0.95em;
        color: #ccc;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Phần Khuyến mãi */
    .page-89bet1__promotions-section {
        padding: 60px 20px;
        background-color: var(--page-89bet1-background-color);
    }

    .page-89bet1__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-89bet1__promo-card {
        background-color: var(--page-89bet1-card-background);
        border-radius: 15px;
        overflow: hidden;
        text-align: center;
        padding: 25px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box; /* Quan trọng cho di động */
    }

    .page-89bet1__promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-89bet1__promo-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
        object-fit: cover;
        min-height: 200px; /* Đảm bảo hình ảnh không quá nhỏ */
    }

    .page-89bet1__promo-title {
        font-size: 1.5em;
        color: var(--page-89bet1-primary-color);
        margin-bottom: 15px;
    }

    .page-89bet1__promo-description {
        font-size: 0.95em;
        color: #ccc;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Phần Giới thiệu */
    .page-89bet1__about-section {
        padding: 60px 20px;
        background-color: var(--page-89bet1-background-color);
    }

    .page-89bet1__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-89bet1__about-image-wrapper {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .page-89bet1__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        min-height: 250px; /* Đảm bảo hình ảnh không quá nhỏ */
    }

    .page-89bet1__about-text {
        flex: 2;
        min-width: 300px;
        color: #e0e0e0;
    }

    .page-89bet1__about-text p {
        margin-bottom: 15px;
        font-size: 1.05em;
    }

    .page-89bet1__about-text strong {
        color: var(--page-89bet1-accent-color);
    }

    /* Phần Thanh toán & Nhà cung cấp */
    .page-89bet1__payment-providers {
        padding: 60px 20px;
        background-color: var(--page-89bet1-card-background);
    }

    .page-89bet1__subsection {
        max-width: 1200px;
        margin: 0 auto 50px;
    }

    .page-89bet1__subsection:last-child {
        margin-bottom: 0;
    }

    .page-89bet1__subsection-title {
        font-size: 2em;
        color: var(--page-89bet1-primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-89bet1__subsection-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--page-89bet1-accent-color);
        margin: 10px auto 0;
        border-radius: 1.5px;
    }

    .page-89bet1__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .page-89bet1__logo-link {
        display: block;
        padding: 15px;
        background-color: var(--page-89bet1-background-color);
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-basis: 150px; /* Chiều rộng tối thiểu cho logo */
        max-width: 200px; /* Chiều rộng tối đa cho logo */
        text-align: center;
        box-sizing: border-box;
    }

    .page-89bet1__logo-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }

    .page-89bet1__logo-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: brightness(0.8) grayscale(0.2); /* Làm mờ/xám nhẹ để phù hợp nền tối */
        transition: filter 0.3s ease;
        min-width: 150px; /* Đảm bảo hình ảnh không quá nhỏ */
        min-height: 75px; /* Điều chỉnh chiều cao cho logo */
    }

    .page-89bet1__logo-link:hover .page-89bet1__logo-image {
        filter: brightness(1) grayscale(0); /* Làm sáng khi di chuột */
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-89bet1__faq-section {
        padding: 60px 20px;
        background-color: var(--page-89bet1-background-color);
    }

    .page-89bet1__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-89bet1__faq-item {
        background-color: var(--page-89bet1-card-background);
        border: 1px solid var(--page-89bet1-border-color);
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-89bet1__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a3a;
        transition: background-color 0.3s ease;
    }

    .page-89bet1__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-89bet1__faq-question-title {
        font-size: 1.3em;
        color: var(--page-89bet1-primary-color);
        margin: 0;
        pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-89bet1__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-89bet1-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Ngăn span chặn sự kiện click */
    }

    .page-89bet1__faq-item.active .page-89bet1__faq-toggle {
        transform: rotate(45deg); /* Xoay + để thành X hoặc - */
    }

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

    .page-89bet1__faq-item.active .page-89bet1__faq-answer {
        max-height: 2000px !important; /* Giá trị đủ lớn */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-89bet1__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }

    /* Phần Kêu gọi hành động (CTA) */
    .page-89bet1__cta-section {
        padding: 80px 20px;
        background-color: var(--page-89bet1-primary-color);
        text-align: center;
        color: var(--page-89bet1-text-color);
    }

    .page-89bet1__cta-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: var(--page-89bet1-text-color);
        line-height: 1.2;
    }

    .page-89bet1__cta-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-89bet1__cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 1024px) {
        .page-89bet1__hero-title {
            font-size: 2.8em;
        }

        .page-89bet1__hero-subtitle {
            font-size: 1.2em;
        }

        .page-89bet1__section-title {
            font-size: 2.2em;
        }

        .page-89bet1__subsection-title {
            font-size: 1.8em;
        }

        .page-89bet1__cta-title {
            font-size: 2.4em;
        }

        .page-89bet1__cta-description {
            font-size: 1.1em;
        }
    }

    @media (max-width: 768px) {
        .page-89bet1__hero-section {
            min-height: 500px;
            padding-bottom: 60px;
        }

        .page-89bet1__hero-title {
            font-size: 2.2em;
        }

        .page-89bet1__hero-subtitle {
            font-size: 1.1em;
        }

        .page-89bet1__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-89bet1__button {
            width: 100%;
            max-width: 300px;
        }

        .page-89bet1__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-89bet1__product-grid,
        .page-89bet1__promo-grid {
            grid-template-columns: 1fr;
        }

        .page-89bet1__about-content {
            flex-direction: column;
            gap: 20px;
        }

        .page-89bet1__about-image-wrapper,
        .page-89bet1__about-text {
            min-width: unset;
            width: 100%;
        }

        .page-89bet1__subsection-title {
            font-size: 1.5em;
        }

        .page-89bet1__logo-grid {
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Điều chỉnh cho logo nhỏ hơn trên di động */
        }

        .page-89bet1__logo-link {
            flex-basis: 120px;
            max-width: 150px;
            padding: 10px;
        }

        .page-89bet1__logo-image {
            min-width: 100px;
            min-height: 50px;
        }

        .page-89bet1__faq-question {
            padding: 15px 20px;
        }

        .page-89bet1__faq-question-title {
            font-size: 1.1em;
        }

        .page-89bet1__faq-answer {
            padding: 0 20px;
        }

        .page-89bet1__faq-item.active .page-89bet1__faq-answer {
            padding: 15px 20px !important;
        }

        .page-89bet1__cta-section {
            padding: 60px 20px;
        }

        .page-89bet1__cta-title {
            font-size: 2em;
        }

        .page-89bet1__cta-description {
            font-size: 1em;
        }

        .page-89bet1__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        /* Điều chỉnh nút nổi cho di động */
        .page-89bet1__floating-buttons {
            bottom: 10px;
            right: 10px;
            gap: 8px;
        }

        .page-89bet1__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        /* Tính đáp ứng cụ thể của mục danh sách */
        .page-89bet1__product-card,
        .page-89bet1__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Điều chỉnh padding để tránh tràn */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-89bet1__product-grid,
        .page-89bet1__promo-grid {
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-89bet1__hero-title {
            font-size: 1.8em;
        }
        .page-89bet1__hero-subtitle {
            font-size: 0.9em;
        }
        .page-89bet1__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-89bet1__section-title {
            font-size: 1.5em;
        }
        .page-89bet1__subsection-title {
            font-size: 1.3em;
        }
        .page-89bet1__cta-title {
            font-size: 1.8em;
        }
        .page-89bet1__cta-description {
            font-size: 0.9em;
        }
    }
  