
    /* CSS for page-hz888-ng-nh-p */
    :root {
        --primary-color: #e44d26; /* A vibrant orange/red, common in gaming sites */
        --secondary-color: #333;
        --accent-color: #f7b32b; /* Gold/yellow for highlights */
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --text-color-light: #f0f0f0;
        --text-color-dark: #ccc;
        --border-radius-small: 5px;
        --border-radius-medium: 10px;
        --padding-section: 40px 20px;
        --max-width-content: 1200px;
    }

    .page-hz888-ng-nh-p {
        font-family: 'Arial', sans-serif;
        color: var(--text-color-light);
        background-color: var(--background-dark);
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-hz888-ng-nh-p__hero-section {
        position: relative;
        text-align: center;
        padding: 80px 20px 60px; /* Adjusted padding-top for fixed header, plus more space for content */
        background: linear-gradient(135deg, var(--background-dark), var(--background-light));
        overflow: hidden;
        padding-top: 10px; /* Small decorative top padding as per instruction */
    }

    .page-hz888-ng-nh-p__hero-background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.3;
    }

    .page-hz888-ng-nh-p__hero-content {
        position: relative;
        z-index: 1;
        max-width: var(--max-width-content);
        margin: 0 auto;
    }

    .page-hz888-ng-nh-p__hero-title {
        font-size: 2.8em;
        color: var(--accent-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .page-hz888-ng-nh-p__hero-description {
        font-size: 1.2em;
        color: var(--text-color-light);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hz888-ng-nh-p__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: var(--border-radius-medium);
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hz888-ng-nh-p__cta-button:hover {
        background-color: #ff6f40;
        transform: translateY(-2px);
    }

    .page-hz888-ng-nh-p__section {
        padding: var(--padding-section);
        max-width: var(--max-width-content);
        margin: 0 auto;
        background-color: var(--background-light);
        border-radius: var(--border-radius-medium);
        margin-bottom: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .page-hz888-ng-nh-p__section--dark {
        background-color: var(--background-dark);
        padding: var(--padding-section);
        margin-bottom: 30px;
    }

    .page-hz888-ng-nh-p__section-title {
        font-size: 2.2em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-hz888-ng-nh-p__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-hz888-ng-nh-p__grid-item {
        background-color: var(--background-dark);
        padding: 25px;
        border-radius: var(--border-radius-medium);
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-hz888-ng-nh-p__grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-hz888-ng-nh-p__grid-item-icon {
        width: 100%; /* Ensure image fills container */
        max-width: 250px; /* Example max-width for content images */
        height: auto;
        margin-bottom: 15px;
        border-radius: var(--border-radius-small);
        object-fit: cover;
        display: block; /* Remove extra space below image */
        margin-left: auto;
        margin-right: auto;
    }

    .page-hz888-ng-nh-p__grid-item-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-hz888-ng-nh-p__game-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
    }

    .page-hz888-ng-nh-p__game-card {
        flex: 0 0 280px; /* Fixed width for cards */
        scroll-snap-align: start;
        background-color: var(--background-dark);
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-hz888-ng-nh-p__game-card:hover {
        transform: translateY(-5px);
    }

    .page-hz888-ng-nh-p__game-card-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-hz888-ng-nh-p__game-card-content {
        padding: 15px;
    }

    .page-hz888-ng-nh-p__game-card-title {
        font-size: 1.2em;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .page-hz888-ng-nh-p__promo-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-hz888-ng-nh-p__promo-item {
        background-color: var(--background-dark);
        margin-bottom: 20px;
        padding: 20px;
        border-radius: var(--border-radius-medium);
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-hz888-ng-nh-p__promo-item-image {
        width: 100%;
        max-width: 150px;
        height: auto;
        border-radius: var(--border-radius-small);
        object-fit: cover;
        flex-shrink: 0;
    }

    .page-hz888-ng-nh-p__promo-item-content {
        flex-grow: 1;
    }

    .page-hz888-ng-nh-p__promo-item-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-hz888-ng-nh-p__steps-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-hz888-ng-nh-p__step-item {
        background-color: var(--background-dark);
        padding: 25px;
        border-left: 5px solid var(--primary-color);
        border-radius: var(--border-radius-medium);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-hz888-ng-nh-p__step-item-title {
        font-size: 1.4em;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .page-hz888-ng-nh-p__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .page-hz888-ng-nh-p__payment-method {
        text-align: center;
        background-color: var(--background-dark);
        padding: 15px;
        border-radius: var(--border-radius-medium);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-hz888-ng-nh-p__payment-method:hover {
        transform: translateY(-3px);
    }

    .page-hz888-ng-nh-p__payment-icon {
        width: 100%;
        max-width: 80px; /* Max-width for payment icons */
        height: auto;
        margin-bottom: 10px;
        object-fit: contain;
    }

    .page-hz888-ng-nh-p__payment-name {
        font-size: 0.9em;
        color: var(--text-color-light);
        font-weight: bold;
    }

    /* FAQ Section */
    .page-hz888-ng-nh-p__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-hz888-ng-nh-p__faq-item {
        background-color: var(--background-dark);
        margin-bottom: 15px;
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-hz888-ng-nh-p__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: var(--background-light);
        color: var(--text-color-light);
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }

    .page-hz888-ng-nh-p__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-hz888-ng-nh-p__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-hz888-ng-nh-p__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-hz888-ng-nh-p__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.4s ease;
        color: var(--text-color-dark);
    }

    .page-hz888-ng-nh-p__faq-item.active .page-hz888-ng-nh-p__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-hz888-ng-nh-p__faq-item.active .page-hz888-ng-nh-p__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Floating action buttons */
    .page-hz888-ng-nh-p__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-hz888-ng-nh-p__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
    }

    .page-hz888-ng-nh-p__floating-button--register {
        background-color: var(--accent-color);
    }

    .page-hz888-ng-nh-p__floating-button:hover {
        background-color: #ff6f40;
        transform: translateY(-3px);
    }

    .page-hz888-ng-nh-p__floating-button--register:hover {
        background-color: #ffc85a;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-hz888-ng-nh-p__hero-title {
            font-size: 2em;
        }

        .page-hz888-ng-nh-p__hero-description {
            font-size: 1em;
        }

        .page-hz888-ng-nh-p__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-hz888-ng-nh-p__section-title {
            font-size: 1.8em;
        }

        .page-hz888-ng-nh-p__grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }

        .page-hz888-ng-nh-p__grid-item,
        .page-hz888-ng-nh-p__promo-item,
        .page-hz888-ng-nh-p__step-item,
        .page-hz888-ng-nh-p__payment-method {
            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 smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-hz888-ng-nh-p__grid-item-icon,
        .page-hz888-ng-nh-p__promo-item-image,
        .page-hz888-ng-nh-p__payment-icon {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-hz888-ng-nh-p__promo-item {
            flex-direction: column;
            text-align: center;
        }

        .page-hz888-ng-nh-p__promo-item-image {
            max-width: 200px;
            margin-bottom: 15px;
        }

        .page-hz888-ng-nh-p__game-carousel {
            padding: 0 10px 20px; /* Adjust padding for carousel */
        }

        .page-hz888-ng-nh-p__game-card {
            flex: 0 0 250px; /* Slightly smaller cards on mobile */
        }

        .page-hz888-ng-nh-p__faq-question {
            padding: 15px;
        }

        .page-hz888-ng-nh-p__faq-question h3 {
            font-size: 1em;
        }

        .page-hz888-ng-nh-p__faq-answer {
            padding: 15px 10px !important; /* Adjust padding for mobile */
        }

        .page-hz888-ng-nh-p__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
            gap: 10px;
        }

        .page-hz888-ng-nh-p__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.9em;
            min-width: unset;
        }

        .page-hz888-ng-nh-p__payment-grid {
            grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        }

        .page-hz888-ng-nh-p__payment-icon {
            max-width: 60px;
        }
    }

    @media (max-width: 480px) {
        .page-hz888-ng-nh-p__hero-section {
            padding-top: 10px;
            padding-bottom: 40px;
        }
        .page-hz888-ng-nh-p__hero-title {
            font-size: 1.8em;
        }
        .page-hz888-ng-nh-p__section-title {
            font-size: 1.6em;
        }
        .page-hz888-ng-nh-p__floating-buttons {
            bottom: 10px;
            left: 10px;
            right: 10px;
            width: calc(100% - 20px);
            gap: 8px;
        }
        .page-hz888-ng-nh-p__floating-button {
            padding: 8px 10px;
            font-size: 0.85em;
        }
    }
  