
    /* CSS Styles for 888b online page */
    :root {
        --page-888bonline__primary-color: #e44d26; /* A vibrant orange-red for branding */
        --page-888bonline__secondary-color: #333;
        --page-888bonline__accent-color: #007bff;
        --page-888bonline__background-light: #f8f9fa;
        --page-888bonline__background-dark: #212529;
        --page-888bonline__text-color: #343a40;
        --page-888bonline__text-light: #fff;
        --page-888bonline__border-color: #e0e0e0;
        --page-888bonline__shadow-color: rgba(0, 0, 0, 0.1);
    }

    .page-888bonline {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-888bonline__text-color);
        background-color: var(--page-888bonline__background-light);
    }

    /* Hero Section */
    .page-888bonline__hero-section {
        position: relative;
        text-align: center;
        color: var(--page-888bonline__text-light);
        padding: 10px 0 40px; /* Adjusted padding-top for fixed header */
        background-color: var(--page-888bonline__background-dark);
        overflow: hidden;
        margin-bottom: 20px;
        min-height: 400px; /* Ensure minimum height */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-888bonline__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
        z-index: 1;
    }

    .page-888bonline__hero-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-888bonline__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
        z-index: 5; /* Below content, above image */
    }

    .page-888bonline__hero-content {
        position: relative; /* Relative to hero-section, above overlay */
        z-index: 10;
        width: 90%;
        max-width: 800px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for text */
        border-radius: 8px;
    }

    .page-888bonline__hero-title {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-888bonline__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
        color: #f0f0f0;
    }

    .page-888bonline__promo-button {
        display: inline-block;
        background-color: var(--page-888bonline__primary-color);
        color: var(--page-888bonline__text-light);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px var(--page-888bonline__shadow-color);
        cursor: pointer;
        border: none;
        outline: none;
    }

    .page-888bonline__promo-button:hover {
        background-color: #cc4120;
        transform: translateY(-2px);
    }

    /* Floating Promotion Button */
    .page-888bonline__floating-promo {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        background-color: var(--page-888bonline__primary-color);
        color: var(--page-888bonline__text-light);
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        animation: page-888bonline__pulse 2s infinite;
        text-align: center;
        white-space: nowrap;
        max-width: 90%;
        box-sizing: border-box;
        border: none;
        outline: none;
    }

    .page-888bonline__floating-promo:hover {
        background-color: #cc4120;
        animation: none;
    }

    @keyframes page-888bonline__pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
    }

    /* General Section Styling */
    .page-888bonline__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--page-888bonline__text-light);
        border-radius: 8px;
        box-shadow: 0 2px 8px var(--page-888bonline__shadow-color);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-888bonline__section--dark {
        background-color: var(--page-888bonline__background-dark);
        color: var(--page-888bonline__text-light);
    }

    .page-888bonline__section-title {
        font-size: 2em;
        color: var(--page-888bonline__primary-color);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-888bonline__section-title--light {
        color: var(--page-888bonline__text-light);
    }

    .page-888bonline__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: var(--page-888bonline__accent-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-888bonline__content-wrapper {
        max-width: 960px;
        margin: 0 auto;
    }

    /* Game Categories */
    .page-888bonline__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-888bonline__game-card {
        background-color: var(--page-888bonline__background-light);
        border-radius: 10px;
        box-shadow: 0 4px 12px var(--page-888bonline__shadow-color);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 15px;
        border: 1px solid var(--page-888bonline__border-color);
    }

    .page-888bonline__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-888bonline__game-card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Minimum 200px height for images */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
    }

    .page-888bonline__game-card-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure image covers the area without distortion */
    }

    .page-888bonline__game-card-title {
        font-size: 1.4em;
        color: var(--page-888bonline__primary-color);
        margin: 15px 10px 10px;
        font-weight: bold;
    }

    .page-888bonline__game-card-description {
        font-size: 0.95em;
        color: var(--page-888bonline__secondary-color);
        padding: 0 15px;
        margin-bottom: 15px;
    }

    /* Why Choose Us */
    .page-888bonline__advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-888bonline__advantage-item {
        background-color: var(--page-888bonline__text-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 12px var(--page-888bonline__shadow-color);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-888bonline__advantage-item:hover {
        transform: translateY(-5px);
    }

    .page-888bonline__advantage-icon-container {
        width: 200px; /* Minimum 200px for image container */
        height: 200px; /* Minimum 200px for image container */
        margin: 0 auto 20px;
        background-color: var(--page-888bonline__primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-888bonline__advantage-icon {
        width: 120px; /* Display size, source image must be >= 200x200 */
        height: 120px; /* Display size, source image must be >= 200x200 */
        object-fit: contain;
    }

    .page-888bonline__advantage-title {
        font-size: 1.5em;
        color: var(--page-888bonline__primary-color);
        margin-bottom: 10px;
    }

    .page-888bonline__advantage-description {
        color: var(--page-888bonline__secondary-color);
    }

    /* Call to Action */
    .page-888bonline__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: var(--page-888bonline__primary-color);
        color: var(--page-888bonline__text-light);
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 40px;
    }

    .page-888bonline__cta-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-888bonline__cta-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAQ Section */
    .page-888bonline__faq-container {
        max-width: 800px;
        margin: 30px auto;
    }

    .page-888bonline__faq-item {
        background-color: var(--page-888bonline__text-light);
        border: 1px solid var(--page-888bonline__border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px var(--page-888bonline__shadow-color);
    }

    .page-888bonline__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        color: var(--page-888bonline__secondary-color);
        transition: background-color 0.3s ease;
    }

    .page-888bonline__faq-question:hover {
        background-color: #e9e9e9;
    }

    .page-888bonline__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-888bonline__primary-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-888bonline__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent */
        color: var(--page-888bonline__accent-color);
    }

    .page-888bonline__faq-item.active .page-888bonline__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-888bonline__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(--page-888bonline__text-color);
        background-color: var(--page-888bonline__text-light);
    }

    .page-888bonline__faq-item.active .page-888bonline__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to accommodate content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-888bonline__hero-section {
            padding-top: 10px; /* Mobile header padding */
            min-height: 300px;
        }
        .page-888bonline__hero-title {
            font-size: 2em;
        }
        .page-888bonline__hero-subtitle {
            font-size: 1em;
        }
        .page-888bonline__promo-button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-888bonline__floating-promo {
            padding: 10px 20px;
            font-size: 1em;
            bottom: 15px;
        }
        .page-888bonline__section {
            padding: 30px 15px;
        }
        .page-888bonline__section-title {
            font-size: 1.8em;
        }
        .page-888bonline__game-categories {
            grid-template-columns: 1fr;
        }
        .page-888bonline__advantages-grid {
            grid-template-columns: 1fr;
        }
        .page-888bonline__cta-title {
            font-size: 1.8em;
        }
        .page-888bonline__cta-text {
            font-size: 1em;
        }
        .page-888bonline__faq-question {
            padding: 12px 15px;
        }
        .page-888bonline__faq-question h3 {
            font-size: 1em;
        }
        .page-888bonline__faq-item.active .page-888bonline__faq-answer {
            padding: 15px !important;
        }

        /* Image responsive styles */
        .page-888bonline__hero-image,
        .page-888bonline__game-card-image,
        .page-888bonline__advantage-icon {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-888bonline__hero-image-container,
        .page-888bonline__game-card-image-container,
        .page-888bonline__advantage-icon-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
        .page-888bonline__advantage-icon-container {
            width: 200px !important;
            height: 200px !important;
        }
    }

    /* Ensure text contrast for dark background elements */
    .page-888bonline__section--dark h2,
    .page-888bonline__section--dark p,
    .page-888bonline__section--dark li {
        color: #f0f0f0;
    }
    .page-888bonline__hero-title,
    .page-888bonline__hero-subtitle {
        color: #fff;
    }
  