
    .page-88clb88-com {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding for top, assuming body padding-top handles header offset */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Section titles */
    .page-88clb88-com__section-title {
        font-size: 2.2em;
        color: #f8c102; /* Gold/yellow for highlights */
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.2;
    }

    /* Paragraphs */
    .page-88clb88-com__section-paragraph {
        font-size: 1.1em;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 50px auto;
        padding: 0 15px;
    }

    /* Hero Section */
    .page-88clb88-com__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Adjust height for mobile-first */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-bottom: 50px;
        min-height: 350px; /* Minimum height for hero */
    }

    .page-88clb88-com__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.6); /* Darken image for text readability, not changing color */
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-88clb88-com__hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 90%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-88clb88-com__hero-title {
        font-size: 2.8em;
        color: #f8c102;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .page-88clb88-com__hero-description {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    /* About Section */
    .page-88clb88-com__about-section {
        padding: 50px 0;
    }

    /* Products Section */
    .page-88clb88-com__products-section {
        padding: 50px 0;
        background-color: #2a2a2a;
    }

    .page-88clb88-com__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-88clb88-com__product-item {
        background-color: #1a1a1a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-88clb88-com__product-item:hover {
        transform: translateY(-5px);
    }

    .page-88clb88-com__product-image {
        width: 100%;
        height: 200px; /* Fixed height for product images */
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-88clb88-com__product-title {
        font-size: 1.5em;
        color: #f8c102;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-88clb88-com__product-description {
        font-size: 1em;
        color: #ccc;
        padding: 0 15px 20px;
        flex-grow: 1; /* Allow descriptions to take available space */
    }

    /* Promotions Section */
    .page-88clb88-com__promotions-section {
        padding: 50px 0;
    }

    .page-88clb88-com__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-88clb88-com__promotion-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-88clb88-com__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-88clb88-com__promotion-title {
        font-size: 1.4em;
        color: #f8c102;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-88clb88-com__promotion-description {
        font-size: 1em;
        color: #ccc;
        padding: 0 15px 20px;
        flex-grow: 1;
    }

    /* Providers Section */
    .page-88clb88-com__providers-section {
        padding: 50px 0;
        background-color: #1a1a1a;
    }

    .page-88clb88-com__provider-list,
    .page-88clb88-com__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Smaller grid for logos */
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-88clb88-com__provider-item,
    .page-88clb88-com__payment-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-88clb88-com__provider-logo,
    .page-88clb88-com__payment-logo {
        max-width: 100%;
        height: 80px; /* Uniform height for logos */
        object-fit: contain;
        margin-bottom: 10px;
    }

    .page-88clb88-com__provider-name,
    .page-88clb88-com__payment-name {
        font-size: 1em;
        color: #f0f0f0;
        font-weight: bold;
    }

    /* Payment Section */
    .page-88clb88-com__payment-section {
        padding: 50px 0;
        background-color: #2a2a2a;
    }

    /* FAQ Section */
    .page-88clb88-com__faq-section {
        padding: 50px 0 100px; /* Add space for floating buttons */
        background-color: #1a1a1a;
    }

    .page-88clb88-com__faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-88clb88-com__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-88clb88-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-88clb88-com__faq-question:hover {
        background-color: #444;
    }

    .page-88clb88-com__faq-title {
        font-size: 1.2em;
        color: #f8c102;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

    .page-88clb88-com__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #f8c102;
        margin-left: 15px;
        pointer-events: none; /* Prevent span from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-88clb88-com__faq-item.active .page-88clb88-com__faq-toggle {
        transform: rotate(45deg); /* Rotate + to form an X or - */
    }

    .page-88clb88-com__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #ccc;
        background-color: #2a2a2a;
    }

    .page-88clb88-com__faq-item.active .page-88clb88-com__faq-answer {
        max-height: 2000px !important; /* Sufficiently large height */
        padding: 20px 15px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-88clb88-com__faq-answer p {
        margin: 0;
        font-size: 1em;
    }

    /* Floating Buttons */
    .page-88clb88-com__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: #000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .page-88clb88-com__register-button,
    .page-88clb88-com__login-button {
        flex: 1;
        margin: 0 10px;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-88clb88-com__register-button {
        background-color: #f8c102; /* Gold/yellow */
        color: #1a1a1a;
    }

    .page-88clb88-com__register-button:hover {
        background-color: #e0ac00;
        transform: translateY(-2px);
    }

    .page-88clb88-com__login-button {
        background-color: #444; /* Dark grey */
        color: #fff;
    }

    .page-88clb88-com__login-button:hover {
        background-color: #555;
        transform: translateY(-2px);
    }


    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
        .page-88clb88-com__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .page-88clb88-com__section-paragraph {
            font-size: 1em;
            margin-bottom: 40px;
            padding: 0 10px;
        }

        .page-88clb88-com__hero-section {
            height: 50vh;
            min-height: 300px;
        }

        .page-88clb88-com__hero-title {
            font-size: 2em;
        }

        .page-88clb88-com__hero-description {
            font-size: 1em;
        }

        .page-88clb88-com__product-grid,
        .page-88clb88-com__promotion-grid,
        .page-88clb88-com__provider-list,
        .page-88clb88-com__payment-grid {
            grid-template-columns: 1fr; /* Single column layout for mobile */
            gap: 20px;
            padding: 0 15px;
        }

        .page-88clb88-com__product-item,
        .page-88clb88-com__promotion-item,
        .page-88clb88-com__provider-item,
        .page-88clb88-com__payment-item,
        .page-88clb88-com__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        
        .page-88clb88-com__product-item p,
        .page-88clb88-com__promotion-item p,
        .page-88clb88-com__faq-answer p {
            word-break: break-word !important; /* Ensure long words break */
        }

        .page-88clb88-com__faq-question {
            padding: 12px 15px;
        }
        
        .page-88clb88-com__faq-title {
            font-size: 1.1em;
        }

        .page-88clb88-com__floating-buttons {
            flex-direction: row; /* Keep row layout for buttons on mobile */
            padding: 8px 0;
        }

        .page-88clb88-com__register-button,
        .page-88clb88-com__login-button {
            padding: 12px 15px;
            font-size: 1em;
            margin: 0 8px;
        }
    }

    @media (max-width: 480px) {
        .page-88clb88-com__hero-title {
            font-size: 1.8em;
        }
        .page-88clb88-com__hero-description {
            font-size: 0.9em;
        }
        .page-88clb88-com__section-title {
            font-size: 1.6em;
        }
    }
  