
        :root {
            --primary-color: #e44d26; /* A vibrant color for highlights */
            --secondary-color: #f7b731; /* A complementary accent color */
            --background-dark: #1a1a2e; /* Dark background for sections */
            --background-light: #2e2e4a; /* Slightly lighter dark background */
            --text-color-light: #ffffff;
            --text-color-dark: #cccccc;
            --button-bg: #e44d26;
            --button-hover-bg: #ff6a3d;
            --border-radius-small: 5px;
            --border-radius-medium: 10px;
            --spacing-unit: 1rem; /* 16px */
            --header-offset: 122px; /* Fallback, should be defined in shared.css */
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--background-dark);
            color: var(--text-color-light);
            line-height: 1.6;
            padding-top: var(--header-offset, 122px); /* Ensure body padding for fixed header */
        }

        .page-888bi {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Hero Section */
        .page-888bi__hero-section {
            position: relative;
            width: 100%;
            height: 500px; /* Adjust height for mobile dominance */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-color-light);
            overflow: hidden;
            padding-top: 10px; /* Small decorative top padding as body handles main offset */
        }

        .page-888bi__hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .page-888bi__hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 2;
        }

        .page-888bi__hero-content {
            position: relative;
            z-index: 3;
            padding: var(--spacing-unit);
            max-width: 90%;
        }

        .page-888bi__hero-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .page-888bi__hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-color-light);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        /* General Section Styling */
        .page-888bi__section {
            padding: 3rem var(--spacing-unit);
            margin-bottom: 0; /* Sections handle their own spacing */
            background-color: var(--background-dark);
            text-align: center;
        }

        .page-888bi__section:nth-of-type(even) {
            background-color: var(--background-light);
        }

        .page-888bi__section-title {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .page-888bi__section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            border-radius: var(--border-radius-small);
        }

        .page-888bi__section-description {
            max-width: 800px;
            margin: 0 auto 2rem auto;
            color: var(--text-color-dark);
        }

        /* Floating Buttons */
        .page-888bi__floating-buttons {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 1000;
            width: 90%;
            max-width: 350px;
            justify-content: space-around;
        }

        .page-888bi__floating-button {
            display: block;
            flex: 1;
            padding: 12px 20px;
            background-color: var(--primary-color);
            color: var(--text-color-light);
            text-align: center;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .page-888bi__floating-button:hover {
            background-color: var(--button-hover-bg);
            transform: translateY(-2px);
        }

        /* Product/Game Display Grid */
        .page-888bi__game-grid,
        .page-888bi__provider-grid,
        .page-888bi__payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Min width for cards */
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }

        .page-888bi__game-card,
        .page-888bi__provider-card,
        .page-888bi__payment-card {
            background-color: var(--background-light);
            border-radius: var(--border-radius-medium);
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .page-888bi__game-card:hover,
        .page-888bi__provider-card:hover,
        .page-888bi__payment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        }

        .page-888bi__card-image {
            width: 100%;
            height: 150px; /* Fixed height for consistency */
            object-fit: contain; /* Ensure logo/game art fits */
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 1rem;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .page-888bi__game-card-title,
        .page-888bi__provider-card-title,
        .page-888bi__payment-card-title {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .page-888bi__game-card-description {
            font-size: 0.9rem;
            color: var(--text-color-dark);
        }

        /* FAQ Section */
        .page-888bi__faq-section {
            padding: 3rem var(--spacing-unit);
            background-color: var(--background-dark);
            text-align: center;
        }

        .page-888bi__faq-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .page-888bi__faq-item {
            background-color: var(--background-light);
            border-radius: var(--border-radius-medium);
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .page-888bi__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            background-color: #3a3a5e; /* Slightly different background for question */
            color: var(--text-color-light);
            font-weight: bold;
            font-size: 1.1rem;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-888bi__faq-question:hover {
            background-color: #4a4a7e;
        }

        .page-888bi__faq-question h3 {
            margin: 0;
            color: var(--secondary-color);
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click on parent div */
        }

        .page-888bi__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            margin-left: 15px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from blocking click on parent div */
        }

        .page-888bi__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: var(--text-color-dark);
            font-size: 0.95rem;
            line-height: 1.8;
            word-wrap: break-word !important; /* Ensure text wraps */
            overflow-wrap: break-word !important;
            word-break: break-word !important; /* For long keywords */
        }

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

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

        /* Promotional Banner/CTA */
        .page-888bi__cta-section {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            padding: 3rem var(--spacing-unit);
            text-align: center;
        }

        .page-888bi__cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-color-light);
        }

        .page-888bi__cta-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-888bi__cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--secondary-color);
            color: var(--background-dark);
            text-decoration: none;
            border-radius: var(--border-radius-medium);
            font-weight: bold;
            font-size: 1.2rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

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

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .page-888bi__hero-section {
                height: 400px;
            }

            .page-888bi__hero-title {
                font-size: 2rem;
            }

            .page-888bi__hero-subtitle {
                font-size: 1rem;
            }

            .page-888bi__section-title {
                font-size: 1.8rem;
            }

            .page-888bi__game-grid,
            .page-888bi__provider-grid,
            .page-888bi__payment-grid {
                grid-template-columns: 1fr !important; /* Stack cards on mobile */
                padding: 0 1rem !important; /* Ensure padding for grid containers */
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-888bi__game-card,
            .page-888bi__provider-card,
            .page-888bi__payment-card {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 1rem !important; /* Adjust padding for mobile cards */
            }

            .page-888bi__card-image {
                height: 120px; /* Adjust image height for mobile */
            }

            .page-888bi__floating-buttons {
                width: 95%;
                gap: 10px;
            }

            .page-888bi__floating-button {
                padding: 10px 15px;
                font-size: 1rem;
            }

            .page-888bi__faq-question {
                font-size: 1rem;
                padding: 12px 15px;
            }

            .page-888bi__faq-question h3 {
                font-size: 1rem;
            }

            .page-888bi__faq-answer {
                font-size: 0.9rem;
                padding: 0 15px;
            }

            .page-888bi__faq-item.active .page-888bi__faq-answer {
                padding: 15px 15px !important;
            }

            .page-888bi__cta-title {
                font-size: 1.8rem;
            }

            .page-888bi__cta-description {
                font-size: 1rem;
            }

            .page-888bi__cta-button {
                padding: 12px 25px;
                font-size: 1.1rem;
            }
            
            /* Ensure all images are responsive */
            .page-888bi img {
                max-width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }
            .page-888bi div[class*="__image-container"] { /* Generic container for images, if any */
                width: 100% !important;
                max-width: 100% !important;
                overflow: hidden !important;
                box-sizing: border-box !important;
            }
        }
    