
    .page-hello88-z {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light text */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small decorative top padding, relies on body padding-top from shared.css */
    }

    /* Ensure good contrast for all elements */
    .page-hello88-z h1, .page-hello88-z h2, .page-hello88-z h3, .page-hello88-z h4 {
        color: #f0f0f0; /* Slightly lighter for headings */
        margin-bottom: 1em;
    }

    .page-hello88-z a {
        color: #00bcd4; /* Accent color for links */
        text-decoration: none;
    }
    .page-hello88-z a:hover {
        text-decoration: underline;
    }

    /* Hero Section */
    .page-hello88-z__hero-section {
        text-align: center;
        padding: 60px 20px;
        background-color: #242440;
        margin-bottom: 40px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

    .page-hello88-z__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3; /* Make background image subtle */
    }

    .page-hello88-z__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-hello88-z__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #e94560; /* Brand accent color */
    }

    .page-hello88-z__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #b0b0b0;
    }

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

    .page-hello88-z__button {
        background-color: #e94560;
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        cursor: pointer;
        border: none;
        font-size: 1em;
        display: inline-block;
        text-align: center;
        white-space: nowrap;
    }

    .page-hello88-z__button:hover {
        background-color: #c73a51;
    }

    /* Game Categories Section */
    .page-hello88-z__game-categories,
    .page-hello88-z__promotions,
    .page-hello88-z__why-choose-us,
    .page-hello88-z__partners,
    .page-hello88-z__faq-section,
    .page-hello88-z__cta {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto 40px auto;
        background-color: #242440;
        border-radius: 8px;
    }

    .page-hello88-z__section-title {
        text-align: center;
        font-size: 2em;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

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

    .page-hello88-z__game-card {
        background-color: #1a1a2e;
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        padding-bottom: 20px; /* Space for text */
        box-sizing: border-box; /* Required for list items */
    }

    .page-hello88-z__game-card:hover {
        transform: translateY(-5px);
    }

    .page-hello88-z__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%; /* Responsive image */
    }

    .page-hello88-z__game-title {
        font-size: 1.4em;
        margin: 10px 15px;
        color: #00bcd4;
    }

    .page-hello88-z__game-description {
        font-size: 0.95em;
        color: #b0b0b0;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Promotions Section */
    .page-hello88-z__promotion-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-hello88-z__promotion-item {
        background-color: #1a1a2e;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Required for list items */
    }

    .page-hello88-z__promotion-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .page-hello88-z__promotion-title {
        font-size: 1.3em;
        color: #e94560;
        margin-bottom: 10px;
        text-align: center;
    }

    .page-hello88-z__promotion-description {
        font-size: 0.95em;
        color: #b0b0b0;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Why Choose Us Section */
    .page-hello88-z__benefit-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .page-hello88-z__benefit-item {
        background-color: #1a1a2e;
        border-radius: 8px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Required for list items */
    }

    .page-hello88-z__benefit-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        object-fit: contain;
        max-width: 100%; /* Responsive image */
    }

    .page-hello88-z__benefit-title {
        font-size: 1.2em;
        color: #00bcd4;
        margin-bottom: 10px;
    }

    .page-hello88-z__benefit-description {
        font-size: 0.9em;
        color: #b0b0b0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Partners Section */
    .page-hello88-z__partner-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .page-hello88-z__partner-title {
        font-size: 1.5em;
        color: #f0f0f0;
        margin-bottom: 20px;
    }

    .page-hello88-z__partner-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-hello88-z__partner-logo {
        max-width: 150px;
        height: 60px;
        object-fit: contain;
        opacity: 0.7; /* Just dim it slightly */
        transition: opacity 0.3s ease;
        max-height: 100%; /* Responsive image */
        width: auto; /* Allow width to adjust */
    }

    .page-hello88-z__partner-logo:hover {
        opacity: 1; /* Full opacity on hover */
    }

    /* FAQ Section */
    .page-hello88-z__faq-item {
        background-color: #1a1a2e;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-hello88-z__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2e2e4a;
        color: #f0f0f0;
        font-size: 1.1em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-hello88-z__faq-question:hover {
        background-color: #3a3a5a;
    }

    .page-hello88-z__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: inherit; /* Ensure heading color is from parent */
    }

    .page-hello88-z__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-hello88-z__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding 0 to match max-height 0 */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #1a1a2e;
        color: #b0b0b0;
        font-size: 0.95em;
    }

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

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

    /* Call to Action Section */
    .page-hello88-z__cta {
        text-align: center;
        padding: 50px 20px;
        background-color: #2e2e4a;
    }

    .page-hello88-z__cta-title {
        font-size: 2.2em;
        color: #e94560;
        margin-bottom: 20px;
    }

    .page-hello88-z__cta-description {
        font-size: 1.1em;
        color: #b0b0b0;
        margin-bottom: 30px;
    }

    /* Fixed Register/Login Buttons */
    .page-hello88-z__fixed-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px); /* Adjust width for mobile padding */
        max-width: 400px;
    }

    .page-hello88-z__fixed-button {
        flex: 1;
        padding: 15px 10px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        color: #ffffff;
        cursor: pointer;
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-hello88-z__register-button {
        background-color: #e94560; /* Red accent */
    }

    .page-hello88-z__register-button:hover {
        background-color: #c73a51;
    }

    .page-hello88-z__login-button {
        background-color: #00bcd4; /* Cyan accent */
    }

    .page-hello88-z__login-button:hover {
        background-color: #0097a7;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-hello88-z {
            padding-top: 5px; /* Less decorative padding on mobile */
        }

        .page-hello88-z__hero-section {
            padding: 40px 15px;
        }

        .page-hello88-z__hero-title {
            font-size: 2em;
        }

        .page-hello88-z__hero-description {
            font-size: 1em;
        }

        .page-hello88-z__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-hello88-z__button {
            width: 100%;
            padding: 12px 20px;
            font-size: 0.95em;
        }

        .page-hello88-z__game-categories,
        .page-hello88-z__promotions,
        .page-hello88-z__why-choose-us,
        .page-hello88-z__partners,
        .page-hello88-z__faq-section,
        .page-hello88-z__cta {
            padding: 30px 15px;
            margin-bottom: 30px;
        }

        .page-hello88-z__section-title {
            font-size: 1.6em;
            margin-bottom: 25px;
        }

        .page-hello88-z__game-grid,
        .page-hello88-z__promotion-list,
        .page-hello88-z__benefit-list {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }

        /* List item specific responsive requirements */
        .page-hello88-z__game-card,
        .page-hello88-z__promotion-item,
        .page-hello88-z__benefit-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        .page-hello88-z__game-description,
        .page-hello88-z__promotion-description,
        .page-hello88-z__benefit-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-hello88-z__game-image,
        .page-hello88-z__promotion-image,
        .page-hello88-z__benefit-icon,
        .page-hello88-z__partner-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .page-hello88-z__partner-logos {
            gap: 15px;
        }

        .page-hello88-z__partner-logo {
            max-width: 120px;
            height: 50px;
        }

        .page-hello88-z__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }

        .page-hello88-z__faq-answer {
            padding: 0 20px;
        }

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

        .page-hello88-z__cta-title {
            font-size: 1.8em;
        }

        .page-hello88-z__cta-description {
            font-size: 1em;
        }

        .page-hello88-z__fixed-buttons {
            bottom: 15px;
            gap: 10px;
            width: calc(100% - 30px); /* More padding on smaller screens */
        }

        .page-hello88-z__fixed-button {
            padding: 12px 8px;
            font-size: 1em;
        }
    }
    @media (max-width: 480px) {
        .page-hello88-z__hero-title {
            font-size: 1.8em;
        }
        .page-hello88-z__section-title {
            font-size: 1.4em;
        }
        .page-hello88-z__game-title {
            font-size: 1.2em;
        }
        .page-hello88-z__promotion-title {
            font-size: 1.1em;
        }
        .page-hello88-z__cta-title {
            font-size: 1.6em;
        }
    }
  