
    /* Reset và biến cơ bản (đảm bảo không xung đột với shared.css) */
    :root {
        --page-hm88-me-primary-color: #e44d26; /* Màu cam đỏ, phù hợp với phong cách cá cược */
        --page-hm88-me-secondary-color: #f7b231; /* Màu vàng cam */
        --page-hm88-me-dark-bg: #1a1a1a;
        --page-hm88-me-light-bg: #ffffff;
        --page-hm88-me-text-color: #f0f0f0;
        --page-hm88-me-dark-text: #333333;
        --page-hm88-me-border-radius: 8px;
        --page-hm88-me-max-width: 1200px;
        --page-hm88-me-padding-x: 15px;
    }

    .page-hm88-me {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-hm88-me-dark-text);
        background-color: var(--page-hm88-me-light-bg);
    }

    /* Các phần chung */
    .page-hm88-me__container {
        max-width: var(--page-hm88-me-max-width);
        margin: 0 auto;
        padding: 0 var(--page-hm88-me-padding-x);
        box-sizing: border-box;
    }

    .page-hm88-me__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-hm88-me__section--dark {
        background-color: var(--page-hm88-me-dark-bg);
        color: var(--page-hm88-me-text-color);
    }

    .page-hm88-me__heading {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: var(--page-hm88-me-dark-text);
    }

    .page-hm88-me__section--dark .page-hm88-me__heading {
        color: var(--page-hm88-me-text-color);
    }

    .page-hm88-me__subheading {
        font-size: 1.8em;
        margin-bottom: 15px;
        color: var(--page-hm88-me-primary-color);
    }

    .page-hm88-me__text {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .page-hm88-me__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--page-hm88-me-primary-color);
        color: var(--page-hm88-me-text-color);
        border: none;
        border-radius: var(--page-hm88-me-border-radius);
        font-size: 1em;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        font-weight: bold;
    }

    .page-hm88-me__button:hover {
        background-color: #c0392b; /* Màu tối hơn của primary */
    }

    /* Hero Section */
    .page-hm88-me__hero-section {
        background-color: var(--page-hm88-me-dark-bg);
        color: var(--page-hm88-me-text-color);
        padding: 10px 0 80px 0; /* Adjusted padding-top as per fixed header offset */
        position: relative;
        overflow: hidden;
    }

    .page-hm88-me__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-hm88-me__hero-content {
        position: relative;
        z-index: 1;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .page-hm88-me__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        line-height: 1.2;
        color: var(--page-hm88-me-secondary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-hm88-me__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--page-hm88-me-text-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    /* Floating Buttons */
    .page-hm88-me__floating-buttons {
        position: fixed;
        top: 20px;
        right: 15px;
        z-index: 1000;
        display: flex;
        gap: 10px;
    }

    .page-hm88-me__floating-button {
        padding: 10px 20px;
        background-color: var(--page-hm88-me-primary-color);
        color: var(--page-hm88-me-text-color);
        border: none;
        border-radius: var(--page-hm88-me-border-radius);
        font-weight: bold;
        cursor: pointer;
        font-size: 0.9em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-hm88-me__floating-button:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    /* About Section */
    .page-hm88-me__about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .page-hm88-me__about-image {
        width: 100%;
        max-width: 600px;
        border-radius: var(--page-hm88-me-border-radius);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .page-hm88-me__about-text-block {
        text-align: left;
    }

    /* Game Categories Section */
    .page-hm88-me__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-hm88-me__game-card {
        background-color: #ffffff;
        border-radius: var(--page-hm88-me-border-radius);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        border: 1px solid #eee;
    }

    .page-hm88-me__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-hm88-me__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-hm88-me__game-card-title {
        font-size: 1.4em;
        color: var(--page-hm88-me-primary-color);
        margin: 0 15px 10px;
    }

    .page-hm88-me__game-card-description {
        font-size: 0.95em;
        color: #666;
        margin: 0 15px 15px;
    }

    /* Promotions Section */
    .page-hm88-me__promotions-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }

    .page-hm88-me__promotion-item {
        display: flex;
        background-color: #f9f9f9;
        border-radius: var(--page-hm88-me-border-radius);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-align: left;
        overflow: hidden;
    }

    .page-hm88-me__promotion-image {
        width: 40%;
        height: auto;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-hm88-me__promotion-content {
        padding: 25px;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-hm88-me__promotion-title {
        font-size: 1.5em;
        color: var(--page-hm88-me-primary-color);
        margin-bottom: 10px;
    }

    .page-hm88-me__promotion-description {
        font-size: 1em;
        color: #555;
        margin-bottom: 15px;
    }

    /* Features Section */
    .page-hm88-me__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-hm88-me__feature-card {
        background-color: #fff;
        border-radius: var(--page-hm88-me-border-radius);
        padding: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-hm88-me__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-hm88-me__feature-icon {
        width: 200px; /* Min size 200x200 requirement */
        height: 200px;
        margin: 0 auto 20px auto;
        object-fit: contain;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-hm88-me__feature-title {
        font-size: 1.3em;
        color: var(--page-hm88-me-primary-color);
        margin-bottom: 10px;
    }

    .page-hm88-me__feature-description {
        font-size: 0.95em;
        color: #666;
    }

    /* Payment Methods Section */
    .page-hm88-me__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-hm88-me__payment-link {
        display: block;
        width: 100%;
        max-width: 200px; /* Ensure minimum 200px width for image placeholder */
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-hm88-me__payment-logo {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: var(--page-hm88-me-border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        background-color: #fff;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-hm88-me__faq-list {
        margin-top: 40px;
        text-align: left;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hm88-me__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: var(--page-hm88-me-border-radius);
        margin-bottom: 15px;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }

    .page-hm88-me__faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-hm88-me__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #f5f5f5;
        color: var(--page-hm88-me-dark-text);
        font-size: 1.1em;
        font-weight: bold;
        user-select: none;
    }
    
    .page-hm88-me__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-hm88-me-dark-text);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-hm88-me__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-hm88-me__faq-item.active .page-hm88-me__faq-toggle {
        transform: rotate(45deg); /* Turns '+' into 'x' or similar, or just rotate 180 for '-' */
    }

    .page-hm88-me__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding, will change on active */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        font-size: 0.95em;
    }

    .page-hm88-me__faq-item.active .page-hm88-me__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Call to Action */
    .page-hm88-me__cta-section {
        background-color: var(--page-hm88-me-primary-color);
        color: var(--page-hm88-me-text-color);
        padding: 60px 0;
    }

    .page-hm88-me__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: var(--page-hm88-me-text-color);
    }

    .page-hm88-me__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hm88-me__cta-button {
        background-color: var(--page-hm88-me-secondary-color);
        color: var(--page-hm88-me-dark-bg);
        padding: 15px 35px;
        font-size: 1.1em;
        border-radius: var(--page-hm88-me-border-radius);
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-hm88-me__cta-button:hover {
        background-color: #f0a000;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .page-hm88-me__hero-title {
            font-size: 3em;
        }
        .page-hm88-me__hero-subtitle {
            font-size: 1.3em;
        }
        .page-hm88-me__heading {
            font-size: 2em;
        }
        .page-hm88-me__promotion-item {
            flex-direction: column;
        }
        .page-hm88-me__promotion-image,
        .page-hm88-me__promotion-content {
            width: 100%;
        }
        .page-hm88-me__promotion-image {
            height: 250px;
        }
    }

    @media (max-width: 768px) {
        .page-hm88-me__floating-buttons {
            top: 10px;
            right: 10px;
            gap: 5px;
        }
        .page-hm88-me__floating-button {
            padding: 8px 15px;
            font-size: 0.8em;
        }

        .page-hm88-me__hero-title {
            font-size: 2.5em;
        }
        .page-hm88-me__hero-subtitle {
            font-size: 1.1em;
        }
        .page-hm88-me__section {
            padding: 40px 0;
        }
        .page-hm88-me__heading {
            font-size: 1.8em;
        }
        .page-hm88-me__subheading {
            font-size: 1.5em;
        }
        .page-hm88-me__text {
            font-size: 1em;
        }
        .page-hm88-me__about-content {
            flex-direction: column;
        }
        .page-hm88-me__game-grid,
        .page-hm88-me__features-grid,
        .page-hm88-me__payment-methods-grid {
            grid-template-columns: 1fr;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-hm88-me__game-card,
        .page-hm88-me__feature-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-hm88-me__payment-link {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-hm88-me__game-card-image,
        .page-hm88-me__promotion-image,
        .page-hm88-me__feature-icon,
        .page-hm88-me__payment-logo,
        .page-hm88-me__about-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-hm88-me__faq-question {
            padding: 15px 20px;
        }
        .page-hm88-me__faq-question h3 {
            font-size: 1em;
        }
        .page-hm88-me__faq-answer {
            padding: 0 20px;
        }
        .page-hm88-me__faq-item.active .page-hm88-me__faq-answer {
            padding: 15px 20px !important;
        }
        .page-hm88-me__cta-title {
            font-size: 2em;
        }
        .page-hm88-me__cta-description {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-hm88-me__hero-title {
            font-size: 2em;
        }
        .page-hm88-me__hero-subtitle {
            font-size: 1em;
        }
        .page-hm88-me__heading {
            font-size: 1.5em;
        }
        .page-hm88-me__subheading {
            font-size: 1.3em;
        }
        .page-hm88-me__floating-buttons {
            flex-direction: column;
            align-items: flex-end;
            gap: 8px;
            top: 10px;
            right: 10px;
        }
        .page-hm88-me__floating-button {
            width: fit-content;
        }
    }
  