
    .page-af88-hgz {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light grey text */
        background-color: #1a1a2e; /* Dark blue/purple background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
        padding-top: 10px; /* Small top padding for the main content, assuming body padding is handled by shared CSS */
    }

    .page-af88-hgz__section-title {
        text-align: center;
        color: #e94560; /* Vibrant red/pink accent */
        font-size: 2.5em;
        margin-bottom: 40px;
        padding: 0 15px;
        font-weight: bold;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-af88-hgz__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 80px 20px;
        min-height: 600px;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); /* Overlay for text readability */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-af88-hgz__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

    .page-af88-hgz__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-width: 100%; /* Ensure image is responsive */
    }

    .page-af88-hgz__hero-content {
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-af88-hgz__hero-title {
        font-size: 3.8em;
        color: #ffffff;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

    .page-af88-hgz__hero-description {
        font-size: 1.4em;
        color: #f0f0f0;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-af88-hgz__hero-button,
    .page-af88-hgz__promotion-button,
    .page-af88-hgz__cta-button,
    .page-af88-hgz__floating-button {
        display: inline-block;
        background-color: #e94560; /* Vibrant red/pink */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-af88-hgz__hero-button:hover,
    .page-af88-hgz__promotion-button:hover,
    .page-af88-hgz__cta-button:hover,
    .page-af88-hgz__floating-button:hover {
        background-color: #c0392b; /* Darker red on hover */
        transform: translateY(-3px);
    }

    .page-af88-hgz__about-section,
    .page-af88-hgz__games-section,
    .page-af88-hgz__promotions-section,
    .page-af88-hgz__features-section,
    .page-af88-hgz__faq-section,
    .page-af88-hgz__cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-af88-hgz__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }

    .page-af88-hgz__about-text {
        flex: 1;
        min-width: 300px;
        font-size: 1.1em;
        color: #d0d0d0;
    }

    .page-af88-hgz__about-image {
        flex: 1;
        min-width: 300px;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-af88-hgz__games-grid,
    .page-af88-hgz__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-af88-hgz__game-card,
    .page-af88-hgz__promotion-card {
        background-color: #0f3460; /* Darker blue */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-af88-hgz__game-card:hover,
    .page-af88-hgz__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-af88-hgz__game-image,
    .page-af88-hgz__promotion-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%;
    }

    .page-af88-hgz__game-title,
    .page-af88-hgz__promotion-title {
        font-size: 1.5em;
        color: #e94560;
        margin: 15px 10px 10px;
        font-weight: bold;
    }

    .page-af88-hgz__game-description,
    .page-af88-hgz__promotion-description {
        font-size: 0.95em;
        color: #d0d0d0;
        padding: 0 15px 20px;
    }

    .page-af88-hgz__promotion-button {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .page-af88-hgz__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-af88-hgz__feature-item {
        background-color: #0f3460;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-af88-hgz__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-af88-hgz__feature-icon {
        width: 200px; /* Enforce minimum size */
        height: 200px;
        object-fit: contain;
        margin: 0 auto 20px auto;
        max-width: 100%;
        display: block; /* Center block element */
    }

    .page-af88-hgz__feature-title {
        font-size: 1.6em;
        color: #e94560;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-af88-hgz__feature-description {
        font-size: 1em;
        color: #d0d0d0;
    }

    /* FAQ Section */
    .page-af88-hgz__faq-container {
        max-width: 800px;
        margin: 30px auto 0;
    }

    .page-af88-hgz__faq-item {
        background-color: #0f3460; /* Darker blue */
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-af88-hgz__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2e3a59; /* Slightly lighter dark blue */
        color: #e0e0e0;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-af88-hgz__faq-question:hover {
        background-color: #3e4a69;
    }

    .page-af88-hgz__faq-title {
        margin: 0;
        font-size: 1.2em; /* Keep font size consistent with parent */
        color: #e0e0e0;
        pointer-events: none; /* Crucial: allow click on parent div */
    }

    .page-af88-hgz__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        color: #e94560;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial: allow click on parent div */
    }

    .page-af88-hgz__faq-item.active .page-af88-hgz__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

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

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

    .page-af88-hgz__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
        font-size: 1em;
    }

    .page-af88-hgz__cta-section {
        text-align: center;
        padding-bottom: 80px;
    }

    .page-af88-hgz__cta-description {
        font-size: 1.2em;
        color: #d0d0d0;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-af88-hgz__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-af88-hgz__floating-button {
        padding: 12px 25px;
        font-size: 1em;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-af88-hgz__floating-button--register {
        background-color: #e94560;
    }

    .page-af88-hgz__floating-button--login {
        background-color: #0f3460;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-af88-hgz__hero-title {
            font-size: 3em;
        }
        .page-af88-hgz__hero-description {
            font-size: 1.2em;
        }
        .page-af88-hgz__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-af88-hgz__hero-section {
            min-height: 450px;
            padding: 60px 15px;
        }
        .page-af88-hgz__hero-title {
            font-size: 2.5em;
        }
        .page-af88-hgz__hero-description {
            font-size: 1em;
        }
        .page-af88-hgz__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }

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

        .page-af88-hgz__about-content {
            flex-direction: column;
            text-align: center;
        }

        .page-af88-hgz__about-text,
        .page-af88-hgz__about-image {
            min-width: unset;
            width: 100%;
        }

        .page-af88-hgz__games-grid,
        .page-af88-hgz__promotions-grid,
        .page-af88-hgz__features-list {
            grid-template-columns: 1fr; /* Single column for mobile */
            gap: 20px;
        }

        /* List item specific responsive requirements */
        .page-af88-hgz__features-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-af88-hgz__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-af88-hgz__feature-icon {
            width: 100px; /* Adjust for mobile, but source image is 200x200 */
            height: 100px;
        }

        .page-af88-hgz__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }

        .page-af88-hgz__faq-title {
            font-size: 1.1em;
        }

        .page-af88-hgz__faq-answer {
            padding: 0 20px;
        }

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

        .page-af88-hgz__floating-buttons {
            bottom: 15px;
            gap: 10px;
        }

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

    @media (max-width: 480px) {
        .page-af88-hgz__hero-title {
            font-size: 2em;
        }
        .page-af88-hgz__section-title {
            font-size: 1.5em;
        }
        .page-af88-hgz__floating-buttons {
            width: calc(100% - 30px); /* Adjust width to fit screen with some margin */
            bottom: 10px;
            left: 15px;
            transform: none;
            justify-content: space-around;
        }
        .page-af88-hgz__floating-button {
            flex: 1; /* Distribute space evenly */
            text-align: center;
            padding: 10px 15px;
            font-size: 0.85em;
        }
    }
  