
    /* CSS for page-88b */
    :root {
        --page-88b-primary-color: #e44d26; /* A vibrant red/orange for betting sites */
        --page-88b-secondary-color: #333;
        --page-88b-accent-color: #f7b32b; /* Gold/yellow for highlights */
        --page-88b-background-light: #f5f5f5;
        --page-88b-background-dark: #222;
        --page-88b-text-light: #fff;
        --page-88b-text-dark: #333;
        --page-88b-border-radius: 8px;
        --page-88b-spacing-medium: 20px;
        --page-88b-spacing-large: 40px;
    }

    .page-88b {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-88b-text-dark);
        background-color: var(--page-88b-background-light);
    }

    .page-88b__section {
        padding: var(--page-88b-spacing-large) var(--page-88b-spacing-medium);
        margin-bottom: var(--page-88b-spacing-medium);
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .page-88b__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--page-88b-spacing-medium);
        box-sizing: border-box;
    }

    .page-88b__heading-1 {
        font-size: 2.5em;
        color: var(--page-88b-primary-color);
        text-align: center;
        margin-bottom: var(--page-88b-spacing-medium);
        font-weight: bold;
    }

    .page-88b__heading-2 {
        font-size: 2em;
        color: var(--page-88b-secondary-color);
        text-align: center;
        margin-bottom: var(--page-88b-spacing-medium);
        position: relative;
        padding-bottom: 10px;
    }

    .page-88b__heading-2::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 60px;
        height: 3px;
        background-color: var(--page-88b-primary-color);
    }

    .page-88b__text-center {
        text-align: center;
    }

    .page-88b__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--page-88b-primary-color);
        color: var(--page-88b-text-light);
        text-decoration: none;
        border-radius: var(--page-88b-border-radius);
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-88b__button:hover {
        background-color: #c0392b;
    }

    /* Hero Section */
    .page-88b__hero-section {
        background-color: var(--page-88b-background-dark);
        color: var(--page-88b-text-light);
        padding-top: 10px; /* Small top padding as body handles header offset */
        padding-bottom: var(--page-88b-spacing-large);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-88b__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-88b__hero-content {
        position: relative;
        z-index: 1;
        padding: var(--page-88b-spacing-large) 0;
    }

    .page-88b__hero-content .page-88b__heading-1 {
        color: var(--page-88b-text-light);
        font-size: 3.5em;
        margin-bottom: 10px;
    }

    .page-88b__hero-content .page-88b__slogan {
        font-size: 1.5em;
        margin-bottom: var(--page-88b-spacing-medium);
        color: var(--page-88b-accent-color);
    }

    /* Floating Buttons */
    .page-88b__floating-buttons {
        position: fixed;
        bottom: var(--page-88b-spacing-medium);
        right: var(--page-88b-spacing-medium);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-88b__floating-button {
        background-color: var(--page-88b-primary-color);
        color: var(--page-88b-text-light);
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
        min-width: 120px;
        box-sizing: border-box;
    }

    .page-88b__floating-button:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
    }

    .page-88b__floating-button--login {
        background-color: var(--page-88b-accent-color);
        color: var(--page-88b-secondary-color);
    }

    .page-88b__floating-button--login:hover {
        background-color: #e6a000;
    }

    /* Product Showcase */
    .page-88b__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-88b-spacing-medium);
        margin-top: var(--page-88b-spacing-large);
    }

    .page-88b__product-card {
        background-color: #fff;
        border-radius: var(--page-88b-border-radius);
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-88b__product-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-88b__product-card-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }

    .page-88b__product-card-content {
        padding: var(--page-88b-spacing-medium);
    }

    .page-88b__product-card-title {
        font-size: 1.4em;
        color: var(--page-88b-primary-color);
        margin-bottom: 10px;
    }

    .page-88b__product-card-description {
        font-size: 0.95em;
        color: var(--page-88b-secondary-color);
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-88b__promotion-list {
        display: flex;
        flex-direction: column;
        gap: var(--page-88b-spacing-medium);
        margin-top: var(--page-88b-spacing-large);
        list-style: none;
        padding: 0;
    }

    .page-88b__promotion-item {
        background-color: var(--page-88b-background-light);
        border-radius: var(--page-88b-border-radius);
        padding: var(--page-88b-spacing-medium);
        box-shadow: 0 2px 5px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        gap: var(--page-88b-spacing-medium);
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-88b__promotion-item-image-wrapper {
        flex-shrink: 0;
        width: 200px;
        height: 150px;
        overflow: hidden;
        border-radius: var(--page-88b-border-radius);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-88b__promotion-item-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        min-width: 200px;
        min-height: 150px;
    }

    .page-88b__promotion-item-content {
        flex-grow: 1;
    }

    .page-88b__promotion-item-title {
        font-size: 1.3em;
        color: var(--page-88b-primary-color);
        margin-bottom: 5px;
    }

    .page-88b__promotion-item-description {
        font-size: 0.95em;
        color: var(--page-88b-secondary-color);
    }

    /* Why Choose Us Section */
    .page-88b__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--page-88b-spacing-medium);
        margin-top: var(--page-88b-spacing-large);
        list-style: none;
        padding: 0;
    }

    .page-88b__benefit-item {
        background-color: var(--page-88b-background-light);
        border-radius: var(--page-88b-border-radius);
        padding: var(--page-88b-spacing-medium);
        box-shadow: 0 2px 5px rgba(0,0,0,0.08);
        text-align: center;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-88b__benefit-item-icon-wrapper {
        margin-bottom: 10px;
        width: 100%; /* Ensure icon wrapper is full width */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-88b__benefit-item-icon {
        width: 200px; /* Enforce min image size */
        height: 200px; /* Enforce min image size */
        object-fit: contain;
    }

    .page-88b__benefit-item-title {
        font-size: 1.2em;
        color: var(--page-88b-primary-color);
        margin-bottom: 8px;
    }

    .page-88b__benefit-item-description {
        font-size: 0.9em;
        color: var(--page-88b-secondary-color);
    }

    /* FAQ Section */
    .page-88b__faq-section {
        background-color: var(--page-88b-background-light);
    }

    .page-88b__faq-list {
        margin-top: var(--page-88b-spacing-large);
        list-style: none;
        padding: 0;
    }

    .page-88b__faq-item {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: var(--page-88b-border-radius);
        margin-bottom: 10px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

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

    .page-88b__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-88b__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-88b-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-88b__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-88b-primary-color);
        pointer-events: none; /* Prevent toggle from blocking click event */
        transition: transform 0.3s ease;
    }

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

    .page-88b__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        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-88b-secondary-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-88b__container {
            padding: 0 15px;
        }

        .page-88b__hero-content .page-88b__heading-1 {
            font-size: 2.5em;
        }

        .page-88b__hero-content .page-88b__slogan {
            font-size: 1.2em;
        }

        .page-88b__heading-1 {
            font-size: 2em;
        }

        .page-88b__heading-2 {
            font-size: 1.7em;
        }

        .page-88b__floating-buttons {
            flex-direction: row; /* Horizontal for mobile bottom */
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            background-color: rgba(34, 34, 34, 0.9); /* Semi-transparent dark background */
            padding: 10px 15px;
            justify-content: space-around;
            gap: 10px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }

        .page-88b__floating-button {
            flex: 1;
            min-width: unset;
            font-size: 0.9em;
            padding: 10px 15px;
        }

        .page-88b__product-grid {
            grid-template-columns: 1fr;
        }

        .page-88b__product-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-88b__promotion-item {
            flex-direction: column;
            align-items: flex-start;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px;
        }
        .page-88b__promotion-item-image-wrapper {
            width: 100%;
            height: 200px;
            margin-bottom: 10px;
        }
        .page-88b__promotion-item-image {
            min-width: unset; /* Allow smaller images to scale down */
            min-height: unset;
            width: 100%;
            height: 100%;
        }

        .page-88b__benefits-grid {
             grid-template-columns: 1fr;
        }

        .page-88b__benefit-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-88b__benefit-item-icon {
            width: 150px; /* Adjust size for mobile */
            height: 150px;
        }

        .page-88b__faq-answer {
            padding: 0 15px;
        }
        .page-88b__faq-item.active .page-88b__faq-answer {
            padding: 15px !important;
        }
        .page-88b__faq-question {
            padding: 12px 15px;
        }
        .page-88b__faq-question h3 {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-88b__hero-content .page-88b__heading-1 {
            font-size: 2em;
        }
        .page-88b__hero-content .page-88b__slogan {
            font-size: 1em;
        }
        .page-88b__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  