
    /* Reset & Base Styles */
    .page-hello88login {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
    }

    .page-hello88login * {
        box-sizing: border-box;
    }

    .page-hello88login__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-hello88login__section-title {
        font-size: 2.5em;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .page-hello88login__section-subtitle {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        margin-bottom: 40px;
    }

    /* Buttons */
    .page-hello88login__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
    }

    .page-hello88login__hero-button--primary {
        background-color: #e74c3c; /* Red */
        color: #fff;
        border: 2px solid #e74c3c;
    }

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

    .page-hello88login__hero-button--secondary {
        background-color: #f39c12; /* Orange */
        color: #fff;
        border: 2px solid #f39c12;
        margin-left: 15px;
    }

    .page-hello88login__hero-button--secondary:hover {
        background-color: #e67e22;
        transform: translateY(-2px);
    }

    /* Floating Promo Button */
    .page-hello88login__floating-promo-button {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #e74c3c; /* Red */
        padding: 10px 15px;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        box-sizing: border-box;
    }

    .page-hello88login__promo-link {
        display: block;
        color: #fff;
        font-weight: 700;
        font-size: 1.2em;
        text-decoration: none;
        animation: page-hello88login__blink 1.5s infinite alternate;
        padding: 5px 0;
    }

    @keyframes page-hello88login__blink {
        0% { opacity: 1; }
        100% { opacity: 0.8; }
    }


    /* Hero Section */
    .page-hello88login__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #fff;
        padding: 80px 15px 40px; /* Padding-top for fixed header */
        position: relative;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .page-hello88login__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 30px;
    }

    .page-hello88login__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-hello88login__hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-hello88login__hero-title {
        font-size: 3em;
        color: #2c3e50;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: 800;
    }

    .page-hello88login__hero-description {
        font-size: 1.2em;
        color: #555;
        margin-bottom: 30px;
    }

    .page-hello88login__hero-actions {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* About Section */
    .page-hello88login__about-section {
        padding: 60px 0;
        background-color: #f0f2f5;
        margin-bottom: 40px;
    }

    .page-hello88login__about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-hello88login__about-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-hello88login__about-item:hover {
        transform: translateY(-10px);
    }

    .page-hello88login__about-icon {
        max-width: 250px; /* Max size to display, assuming source is large */
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hello88login__about-item-title {
        font-size: 1.5em;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-hello88login__about-item-description {
        font-size: 1em;
        color: #666;
    }

    /* Login Guide Section */
    .page-hello88login__login-guide-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .page-hello88login__login-steps {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .page-hello88login__login-step {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-hello88login__step-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        background-color: #e74c3c;
        color: #fff;
        border-radius: 50%;
        font-size: 1.8em;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .page-hello88login__step-title {
        font-size: 1.4em;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-hello88login__step-description {
        font-size: 1em;
        color: #666;
    }

    .page-hello88login__login-action {
        text-align: center;
        margin-top: 50px;
    }

    /* Game Showcase Section */
    .page-hello88login__game-showcase-section {
        padding: 60px 0;
        background-color: #f0f2f5;
        margin-bottom: 40px;
    }

    .page-hello88login__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-hello88login__game-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Important for responsive lists */
    }

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

    .page-hello88login__game-image {
        width: 100%;
        height: 200px; /* Minimum height for display */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-hello88login__game-title {
        font-size: 1.3em;
        color: #2c3e50;
        padding: 15px 15px 5px;
        font-weight: 700;
    }

    .page-hello88login__game-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 15px;
    }

    .page-hello88login__game-action {
        text-align: center;
        margin-top: 50px;
    }

    /* Download App Section */
    .page-hello88login__download-app-section {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .page-hello88login__download-app-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .page-hello88login__download-text {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .page-hello88login__download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .page-hello88login__download-button {
        display: flex;
        align-items: center;
        padding: 12px 25px;
        background-color: #3498db;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        justify-content: center; /* Center text if no icon */
    }

    .page-hello88login__download-button:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }

    .page-hello88login__download-image-wrapper {
        flex: 1;
        min-width: 300px;
        text-align: center;
        max-width: 500px;
    }

    .page-hello88login__download-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* FAQ Section */
    .page-hello88login__faq-section {
        padding: 60px 0 100px; /* Extra padding bottom for fixed button */
        background-color: #fff;
    }

    .page-hello88login__faq-list {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hello88login__faq-item {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-hello88login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #e74c3c; /* Red */
        color: #fff;
        font-weight: 600;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-hello88login__faq-question:hover {
        background-color: #c0392b;
    }

    .page-hello88login__faq-question-title {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevents text selection from interfering with click */
        color: #fff; /* Ensure good contrast */
    }

    .page-hello88login__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

    .page-hello88login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        background-color: #fff;
        color: #333;
    }

    .page-hello88login__faq-answer p {
        padding: 15px 0;
        margin: 0;
    }

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

    .page-hello88login__faq-item.active .page-hello88login__faq-question {
        background-color: #c0392b; /* Darker red when active */
    }

    .page-hello88login__faq-item.active .page-hello88login__faq-toggle {
        content: "−";
        transform: rotate(0deg); /* Reset rotation if any */
    }

    /* Call to Action Section */
    .page-hello88login__cta-section {
        padding: 60px 0;
        background-color: #e74c3c; /* Red */
        color: #fff;
        text-align: center;
        margin-bottom: 70px; /* Space for fixed floating button */
    }

    .page-hello88login__cta-section .page-hello88login__section-title,
    .page-hello88login__cta-section .page-hello88login__section-subtitle {
        color: #fff;
    }

    .page-hello88login__cta-button {
        display: inline-block;
        padding: 18px 35px;
        background-color: #f39c12; /* Orange */
        color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.3em;
        margin-top: 30px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-hello88login__cta-button:hover {
        background-color: #e67e22;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-hello88login__hero-title {
            font-size: 2.5em;
        }
        .page-hello88login__section-title {
            font-size: 2em;
        }
        .page-hello88login__download-app-content {
            flex-direction: column;
        }
        .page-hello88login__download-text,
        .page-hello88login__download-image-wrapper {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .page-hello88login__hero-section {
            padding-top: 80px; /* Ensure consistent padding for fixed header */
        }
        .page-hello88login__hero-title {
            font-size: 2em;
        }
        .page-hello88login__hero-description {
            font-size: 1em;
        }
        .page-hello88login__hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        .page-hello88login__hero-button {
            width: 100%;
            margin-left: 0;
        }
        .page-hello88login__section-title {
            font-size: 1.8em;
        }
        .page-hello88login__section-subtitle {
            font-size: 0.95em;
        }

        /* Responsive list items */
        .page-hello88login__about-item,
        .page-hello88login__login-step,
        .page-hello88login__game-card,
        .page-hello88login__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-hello88login__about-grid,
        .page-hello88login__login-steps,
        .page-hello88login__game-grid,
        .page-hello88login__faq-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-hello88login__game-image {
            height: 180px; /* Slightly smaller on mobile */
        }
        .page-hello88login__download-button {
            width: 100%;
            justify-content: center;
        }
        .page-hello88login__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-hello88login__faq-answer {
            padding: 0 15px;
        }
        .page-hello88login__faq-item.active .page-hello88login__faq-answer {
            padding: 15px !important;
        }

        /* Images responsive optimization */
        .page-hello88login img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-hello88login__hero-image-wrapper,
        .page-hello88login__download-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }

        .page-hello88login__floating-promo-button {
            padding: 8px 10px;
        }
        .page-hello88login__promo-link {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-hello88login__hero-title {
            font-size: 1.8em;
        }
        .page-hello88login__section-title {
            font-size: 1.6em;
        }
        .page-hello88login__hero-button {
            font-size: 1em;
            padding: 12px 20px;
        }
        .page-hello88login__cta-button {
            font-size: 1.1em;
            padding: 15px 25px;
        }
    }
  