
    /* General styles for the page */
    .page-alo-789-ch-nh-ch {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f5f5f5;
    }

    .page-alo-789-ch-nh-ch__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__section-title {
        font-size: 2.2em;
        color: #0a4f8f; /* A strong blue */
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-alo-789-ch-nh-ch__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #ff6600; /* Orange accent */
    }

    .page-alo-789-ch-nh-ch__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .page-alo-789-ch-nh-ch__text-content--center {
        text-align: center;
    }

    .page-alo-789-ch-nh-ch__highlight {
        color: #ff6600;
        font-weight: bold;
    }

    /* Hero Section */
    .page-alo-789-ch-nh-ch__hero-section {
        padding-top: 10px; /* Small top padding as body padding-top handles header offset */
        background: linear-gradient(135deg, #0a4f8f, #007bff);
        color: #fff;
        text-align: center;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .page-alo-789-ch-nh-ch__hero-content {
        position: relative;
        z-index: 1;
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-alo-789-ch-nh-ch__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #fff;
    }

    .page-alo-789-ch-nh-ch__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-alo-789-ch-nh-ch__cta-button {
        display: inline-block;
        background-color: #ff6600;
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-alo-789-ch-nh-ch__cta-button:hover {
        background-color: #e65c00;
        transform: translateY(-3px);
    }

    .page-alo-789-ch-nh-ch__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 40px auto 0;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Floating Register/Login Buttons */
    .page-alo-789-ch-nh-ch__floating-buttons-wrapper {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-alo-789-ch-nh-ch__floating-button {
        background-color: #ff6600;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 12px 25px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        min-width: 120px; /* Ensure buttons have consistent width */
        text-align: center;
    }

    .page-alo-789-ch-nh-ch__floating-button:hover {
        background-color: #e65c00;
        transform: translateY(-2px);
    }

    .page-alo-789-ch-nh-ch__floating-button--register {
        background-color: #0a4f8f;
    }

    .page-alo-789-ch-nh-ch__floating-button--register:hover {
        background-color: #083f72;
    }


    /* Game Grid Section */
    .page-alo-789-ch-nh-ch__games-section,
    .page-alo-789-ch-nh-ch__promotions-section,
    .page-alo-789-ch-nh-ch__payment-section,
    .page-alo-789-ch-nh-ch__providers-section,
    .page-alo-789-ch-nh-ch__faq-section,
    .page-alo-789-ch-nh-ch__about-us-section {
        padding: 60px 0;
        background-color: #fff;
        margin-bottom: 20px;
    }
    .page-alo-789-ch-nh-ch__games-section {
        background-color: #f0f8ff; /* Light blue background */
    }

    .page-alo-789-ch-nh-ch__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        justify-content: center;
    }

    .page-alo-789-ch-nh-ch__game-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-alo-789-ch-nh-ch__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-alo-789-ch-nh-ch__game-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        min-height: 200px; /* Minimum size requirement */
        min-width: 200px;
        max-height: 250px; /* Maintain aspect ratio and visual consistency */
        display: block;
    }

    .page-alo-789-ch-nh-ch__game-title {
        font-size: 1.6em;
        color: #0a4f8f;
        margin-bottom: 10px;
    }

    .page-alo-789-ch-nh-ch__game-description {
        font-size: 1em;
        color: #555;
    }

    /* Promotions Section */
    .page-alo-789-ch-nh-ch__promotions-section {
        background-color: #fdf6f0; /* Light orange/cream background */
    }

    .page-alo-789-ch-nh-ch__promo-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        padding: 0;
        list-style: none;
        justify-content: center;
    }

    .page-alo-789-ch-nh-ch__promo-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-alo-789-ch-nh-ch__promo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-alo-789-ch-nh-ch__promo-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        min-height: 200px;
        min-width: 200px;
        max-height: 250px;
        display: block;
    }

    .page-alo-789-ch-nh-ch__promo-title {
        font-size: 1.5em;
        color: #ff6600;
        margin-bottom: 10px;
    }

    .page-alo-789-ch-nh-ch__promo-description {
        font-size: 1em;
        color: #555;
    }

    /* Payment Methods Section */
    .page-alo-789-ch-nh-ch__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-content: center;
        align-items: center;
    }

    .page-alo-789-ch-nh-ch__payment-item {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        padding: 15px;
        text-align: center;
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__payment-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%; /* Make clickable area cover the entire item */
    }

    .page-alo-789-ch-nh-ch__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-alo-789-ch-nh-ch__payment-logo {
        max-width: 100%;
        height: auto;
        max-height: 80px; /* Adjust as needed */
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px;
    }

    .page-alo-789-ch-nh-ch__payment-name {
        font-weight: bold;
        color: #0a4f8f;
        font-size: 1.1em;
    }

    /* Game Providers Section */
    .page-alo-789-ch-nh-ch__providers-section {
        background-color: #e6f7ff; /* Another light blue */
    }

    .page-alo-789-ch-nh-ch__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-content: center;
        align-items: center;
    }

    .page-alo-789-ch-nh-ch__provider-item {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        padding: 15px;
        text-align: center;
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__provider-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .page-alo-789-ch-nh-ch__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-alo-789-ch-nh-ch__provider-logo {
        max-width: 100%;
        height: auto;
        max-height: 100px; /* Adjust as needed */
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px;
    }

    .page-alo-789-ch-nh-ch__provider-name {
        font-weight: bold;
        color: #0a4f8f;
        font-size: 1em;
    }

    /* FAQ Section */
    .page-alo-789-ch-nh-ch__faq-section {
        background-color: #fff;
    }

    .page-alo-789-ch-nh-ch__faq-list {
        max-width: 800px;
        margin: 40px auto 0;
    }

    .page-alo-789-ch-nh-ch__faq-item {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #e9ecef;
        color: #0a4f8f;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__faq-question:hover {
        background-color: #dee2e6;
    }

    .page-alo-789-ch-nh-ch__faq-title {
        margin: 0;
        font-size: 1.2em;
        color: #0a4f8f;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-alo-789-ch-nh-ch__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ff6600;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-alo-789-ch-nh-ch__faq-item.active .page-alo-789-ch-nh-ch__faq-toggle {
        transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-alo-789-ch-nh-ch__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
        box-sizing: border-box;
    }

    .page-alo-789-ch-nh-ch__faq-item.active .page-alo-789-ch-nh-ch__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-alo-789-ch-nh-ch__faq-answer p {
        margin: 0;
        color: #444;
        font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-alo-789-ch-nh-ch__hero-title {
            font-size: 2em;
        }

        .page-alo-789-ch-nh-ch__hero-description {
            font-size: 1em;
        }

        .page-alo-789-ch-nh-ch__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-alo-789-ch-nh-ch__game-grid,
        .page-alo-789-ch-nh-ch__promo-list,
        .page-alo-789-ch-nh-ch__payment-grid,
        .page-alo-789-ch-nh-ch__provider-grid {
            grid-template-columns: 1fr; /* Stack items on mobile */
            gap: 20px;
        }

        /* List item responsive requirements */
        .page-alo-789-ch-nh-ch__promo-list,
        .page-alo-789-ch-nh-ch__payment-grid,
        .page-alo-789-ch-nh-ch__provider-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important; /* Adjust padding for mobile container */
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-alo-789-ch-nh-ch__promo-item,
        .page-alo-789-ch-nh-ch__payment-item,
        .page-alo-789-ch-nh-ch__provider-item,
        .page-alo-789-ch-nh-ch__game-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for items */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-alo-789-ch-nh-ch__game-image,
        .page-alo-789-ch-nh-ch__promo-image,
        .page-alo-789-ch-nh-ch__payment-logo,
        .page-alo-789-ch-nh-ch__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            min-width: 200px !important; /* Ensure min size is kept */
            min-height: 200px !important;
            display: block !important;
            margin: 0 auto 15px !important;
            box-sizing: border-box !important;
        }

        .page-alo-789-ch-nh-ch__floating-buttons-wrapper {
            flex-direction: row; /* Buttons side-by-side on mobile */
            justify-content: center;
            width: calc(100% - 40px); /* Adjust for padding */
            left: 20px;
            right: 20px;
            bottom: 15px;
            padding: 0;
            gap: 10px;
        }

        .page-alo-789-ch-nh-ch__floating-button {
            flex: 1; /* Distribute space evenly */
            min-width: unset; /* Remove min-width to allow flex to size */
            padding: 10px 15px;
            font-size: 1em;
        }

        .page-alo-789-ch-nh-ch__faq-question {
            padding: 12px 15px;
        }

        .page-alo-789-ch-nh-ch__faq-title {
            font-size: 1.1em;
        }

        .page-alo-789-ch-nh-ch__faq-answer {
            padding: 0 10px;
        }

        .page-alo-789-ch-nh-ch__faq-item.active .page-alo-789-ch-nh-ch__faq-answer {
            padding: 15px 10px !important;
        }
    }

    @media (max-width: 480px) {
        .page-alo-789-ch-nh-ch__hero-title {
            font-size: 1.8em;
        }

        .page-alo-789-ch-nh-ch__section-title {
            font-size: 1.6em;
        }
    }
  