
    .page-888cbl {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Base styles for sections */
    .page-888cbl__section-title {
        font-size: 2.2em;
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-888cbl__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #cccccc;
    }

    /* Hero Section */
    .page-888cbl__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 600px;
        text-align: center;
        padding: 10px 20px 80px 20px; /* Small padding-top, assuming body padding */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-888cbl__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

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

    .page-888cbl__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 30px;
        background: rgba(0, 0, 0, 0.6); /* Darker overlay for text readability */
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .page-888cbl__hero-title {
        font-size: 3em;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-888cbl__hero-description {
        font-size: 1.2em;
        color: #f0f0f0;
        margin-bottom: 30px;
    }

    .page-888cbl__hero-button {
        display: inline-block;
        background-color: #0f3460; /* Secondary accent color */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-888cbl__hero-button:hover {
        background-color: #e94560; /* Primary accent color on hover */
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-888cbl__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px); /* Adjust width for mobile padding */
        max-width: 400px;
        box-sizing: border-box;
    }

    .page-888cbl__floating-button {
        flex: 1;
        text-align: center;
        padding: 15px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-888cbl__floating-button--register {
        background-color: #e94560; /* Primary accent */
        color: #ffffff;
    }

    .page-888cbl__floating-button--register:hover {
        background-color: #c93a52;
        transform: translateY(-2px);
    }

    .page-888cbl__floating-button--login {
        background-color: #0f3460; /* Secondary accent */
        color: #ffffff;
    }

    .page-888cbl__floating-button--login:hover {
        background-color: #0c2a4d;
        transform: translateY(-2px);
    }


    /* Game Categories */
    .page-888cbl__game-categories {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888cbl__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-888cbl__game-item {
        background-color: #2a2a4a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-888cbl__game-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-888cbl__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .page-888cbl__game-title {
        font-size: 1.5em;
        color: #e94560;
        margin: 20px 15px 10px 15px;
        font-weight: bold;
    }

    .page-888cbl__game-text {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1; /* Ensure text takes available space */
    }

    /* Promotions Section */
    .page-888cbl__promotions {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #1a1a2e; /* Ensure background consistency */
    }

    .page-888cbl__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-888cbl__promo-item {
        background-color: #2a2a4a;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-888cbl__promo-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-888cbl__promo-image-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .page-888cbl__promo-title {
        font-size: 1.4em;
        color: #e94560;
        margin: 20px 15px 10px 15px;
        font-weight: bold;
    }

    .page-888cbl__promo-text {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px 20px 15px;
        flex-grow: 1;
    }

    .page-888cbl__promo-button {
        display: inline-block;
        background-color: #0f3460;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.9em;
        font-weight: bold;
        margin-bottom: 20px;
        transition: background-color 0.3s ease;
    }

    .page-888cbl__promo-button:hover {
        background-color: #c93a52;
    }

    /* Features Section */
    .page-888cbl__features {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #20203d; /* Slightly different dark background */
    }

    .page-888cbl__feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-888cbl__feature-item {
        background-color: #2a2a4a;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-888cbl__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-888cbl__feature-image-wrapper {
        width: 100%;
        height: 150px; /* Adjusted height for feature images */
        margin: 0 auto 15px auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-888cbl__feature-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Use contain for logos/icons */
        display: block;
    }

    .page-888cbl__feature-title {
        font-size: 1.3em;
        color: #e94560;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-888cbl__feature-text {
        font-size: 0.95em;
        color: #cccccc;
    }

    /* FAQ Section */
    .page-888cbl__faq {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-888cbl__faq-container {
        border-top: 1px solid #3a3a5e;
    }

    .page-888cbl__faq-item {
        border-bottom: 1px solid #3a3a5e;
        box-sizing: border-box;
    }

    .page-888cbl__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 15px;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-888cbl__faq-question:hover {
        background-color: #2a2a4a;
    }

    .page-888cbl__faq-item.active .page-888cbl__faq-question {
        background-color: #3a3a5e;
    }

    .page-888cbl__faq-q-text {
        font-size: 1.15em;
        color: #e0e0e0;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click event */
        font-weight: bold;
    }

    .page-888cbl__faq-toggle {
        font-size: 1.5em;
        color: #e94560;
        font-weight: bold;
        pointer-events: none; /* Prevent span from blocking click event */
        transition: transform 0.3s ease;
    }

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

    .page-888cbl__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: #cccccc;
        font-size: 1em;
        box-sizing: border-box;
    }

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

    .page-888cbl__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Add some padding to the paragraph inside answer */
    }


    /* Partners Section */
    .page-888cbl__partners {
        padding: 60px 20px 100px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #1a1a2e;
    }

    .page-888cbl__partner-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Min width for logos */
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .page-888cbl__partner-item {
        background-color: #2a2a4a;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 150px; /* Fixed height for partner items */
    }

    .page-888cbl__partner-item img {
        max-width: 100%;
        max-height: 80px; /* Max height for logos */
        object-fit: contain;
        display: block;
        margin-bottom: 10px;
    }

    .page-888cbl__partner-name {
        font-size: 0.9em;
        color: #ffffff;
        margin: 0;
        font-weight: bold;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-888cbl__hero-title {
            font-size: 2.5em;
        }
        .page-888cbl__hero-description {
            font-size: 1.1em;
        }
        .page-888cbl__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-888cbl__hero-section {
            min-height: 500px;
            padding-bottom: 120px; /* Make space for floating buttons */
        }
        .page-888cbl__hero-title {
            font-size: 2em;
        }
        .page-888cbl__hero-description {
            font-size: 1em;
        }
        .page-888cbl__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-888cbl__floating-buttons {
            bottom: 10px;
            width: calc(100% - 20px);
            max-width: 90%;
        }
        .page-888cbl__floating-button {
            padding: 12px 15px;
            font-size: 1em;
        }

        .page-888cbl__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-888cbl__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .page-888cbl__game-grid,
        .page-888cbl__promo-grid,
        .page-888cbl__feature-list,
        .page-888cbl__partner-logos {
            grid-template-columns: 1fr; /* Single column layout for most grids */
            gap: 20px;
        }

        /* List item specific responsive requirements */
        .page-888cbl__game-item,
        .page-888cbl__promo-item,
        .page-888cbl__feature-item,
        .page-888cbl__partner-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-888cbl__game-text,
        .page-888cbl__promo-text,
        .page-888cbl__feature-text,
        .page-888cbl__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-888cbl__game-categories,
        .page-888cbl__promotions,
        .page-888cbl__features,
        .page-888cbl__faq,
        .page-888cbl__partners {
            padding: 40px 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-888cbl__game-image-wrapper,
        .page-888cbl__promo-image-wrapper,
        .page-888cbl__feature-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-888cbl__game-image-wrapper img,
        .page-888cbl__promo-image-wrapper img,
        .page-888cbl__feature-image-wrapper img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-888cbl__faq-question {
            padding: 15px 10px;
        }
        .page-888cbl__faq-q-text {
            font-size: 1em;
        }
        .page-888cbl__faq-answer {
            padding: 15px 10px;
        }
        .page-888cbl__partner-item {
            height: 120px;
        }
        .page-888cbl__partner-item img {
            max-height: 60px;
        }
    }
  