
    :root {
        --page-88bst-primary-color: #00a854; /* Green */
        --page-88bst-secondary-color: #ffcc00; /* Gold */
        --page-88bst-accent-color: #e74c3c; /* Red for promotions */
        --page-88bst-dark-bg: #1a1a1a;
        --page-88bst-medium-dark-bg: #2c2c2c;
        --page-88bst-light-text: #f0f0f0;
        --page-88bst-gray-text: #ccc;
        --page-88bst-border-color: #3a3a3a;
        --page-88bst-button-hover-bg: #008f45;
        --page-88bst-button-secondary-hover-bg: #e6b800;
    }

    .page-88bst {
        font-family: 'Arial', sans-serif;
        color: var(--page-88bst-light-text);
        background-color: var(--page-88bst-dark-bg);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-88bst__section-title {
        font-size: 2.5rem;
        color: var(--page-88bst-secondary-color);
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-88bst__section-subtitle {
        font-size: 1.8rem;
        color: var(--page-88bst-primary-color);
        text-align: center;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-88bst__section-description {
        font-size: 1.1rem;
        color: var(--page-88bst-gray-text);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        padding: 0 15px;
    }

    .page-88bst__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background-color: var(--page-88bst-medium-dark-bg);
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, body already handles main offset */
    }

    .page-88bst__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 30px;
    }

    .page-88bst__hero-image {
        width: 100%;
        height: auto;
        max-width: 100% !important;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        display: block;
        margin: 0 auto;
    }

    .page-88bst__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-88bst__hero-title {
        font-size: 3rem;
        color: var(--page-88bst-secondary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-88bst__hero-description {
        font-size: 1.25rem;
        color: var(--page-88bst-light-text);
        margin-bottom: 30px;
    }

    .page-88bst__hero-cta {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-88bst__btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        border: none;
        text-align: center;
        box-sizing: border-box;
    }

    .page-88bst__btn--primary {
        background-color: var(--page-88bst-primary-color);
        color: var(--page-88bst-light-text);
    }

    .page-88bst__btn--primary:hover {
        background-color: var(--page-88bst-button-hover-bg);
        transform: translateY(-2px);
    }

    .page-88bst__btn--secondary {
        background-color: var(--page-88bst-secondary-color);
        color: var(--page-88bst-dark-bg);
    }

    .page-88bst__btn--secondary:hover {
        background-color: var(--page-88bst-button-secondary-hover-bg);
        transform: translateY(-2px);
    }

    .page-88bst__btn--large {
        padding: 18px 40px;
        font-size: 1.3rem;
        min-width: 200px;
    }

    .page-88bst__btn--small {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    .page-88bst__features-section {
        padding: 60px 20px;
        background-color: var(--page-88bst-dark-bg);
    }

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

    .page-88bst__feature-item {
        background-color: var(--page-88bst-medium-dark-bg);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-88bst__feature-icon {
        width: 100%;
        max-width: 250px; /* Adjusted from small icon size */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .page-88bst__feature-title {
        font-size: 1.7rem;
        color: var(--page-88bst-primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-88bst__feature-description {
        font-size: 1rem;
        color: var(--page-88bst-gray-text);
    }

    .page-88bst__game-showcase {
        padding: 60px 20px;
        background-color: var(--page-88bst-dark-bg);
    }

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

    .page-88bst__game-card {
        background-color: var(--page-88bst-medium-dark-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-88bst__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .page-88bst__game-title {
        font-size: 1.8rem;
        color: var(--page-88bst-secondary-color);
        margin: 20px 15px 10px 15px;
        font-weight: bold;
    }

    .page-88bst__game-description {
        font-size: 1rem;
        color: var(--page-88bst-gray-text);
        padding: 0 15px 20px 15px;
    }

    .page-88bst__promotions-section {
        padding: 60px 20px;
        background-color: var(--page-88bst-medium-dark-bg);
    }

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

    .page-88bst__promo-card {
        background-color: var(--page-88bst-dark-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .page-88bst__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 20px;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .page-88bst__promo-title {
        font-size: 1.7rem;
        color: var(--page-88bst-primary-color);
        margin: 0 15px 10px 15px;
        font-weight: bold;
    }

    .page-88bst__promo-description {
        font-size: 1rem;
        color: var(--page-88bst-gray-text);
        padding: 0 15px 20px 15px;
    }

    .page-88bst__payment-providers-section {
        padding: 60px 20px;
        background-color: var(--page-88bst-dark-bg);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-88bst__payment-methods,
    .page-88bst__game-providers {
        flex: 1;
        min-width: 300px;
        background-color: var(--page-88bst-medium-dark-bg);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-88bst__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .page-88bst__logo-item {
        width: 100%;
        max-width: 180px; /* Adjusted from small icon size */
        height: auto;
        object-fit: contain;
        padding: 10px;
        background-color: #3a3a3a;
        border-radius: 8px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .page-88bst__faq-section {
        padding: 60px 20px;
        background-color: var(--page-88bst-medium-dark-bg);
    }

    .page-88bst__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-88bst__faq-item {
        background-color: var(--page-88bst-dark-bg);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-88bst__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: var(--page-88bst-medium-dark-bg);
        border-bottom: 1px solid var(--page-88bst-border-color);
        transition: background-color 0.3s ease;
    }

    .page-88bst__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-88bst__faq-question-title {
        font-size: 1.3rem;
        color: var(--page-88bst-light-text);
        margin: 0;
        pointer-events: none; /* Prevent text selection interfering with click */
        font-weight: bold;
    }

    .page-88bst__faq-toggle {
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--page-88bst-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon interfering with click */
    }

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

    .page-88bst__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        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-88bst-gray-text);
        font-size: 1rem;
        box-sizing: border-box;
    }

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

    .page-88bst__cta-section {
        padding: 80px 20px;
        background-color: var(--page-88bst-dark-bg);
        text-align: center;
    }

    .page-88bst__cta-title {
        font-size: 2.8rem;
        color: var(--page-88bst-secondary-color);
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-88bst__cta-description {
        font-size: 1.2rem;
        color: var(--page-88bst-light-text);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-88bst__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-88bst__floating-btn {
        display: block;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.2s ease, background-color 0.3s ease;
        white-space: nowrap;
    }

    .page-88bst__floating-btn--register {
        background-color: var(--page-88bst-primary-color);
        color: var(--page-88bst-light-text);
    }

    .page-88bst__floating-btn--register:hover {
        background-color: var(--page-88bst-button-hover-bg);
        transform: translateY(-2px);
    }

    .page-88bst__floating-btn--login {
        background-color: var(--page-88bst-secondary-color);
        color: var(--page-88bst-dark-bg);
    }

    .page-88bst__floating-btn--login:hover {
        background-color: var(--page-88bst-button-secondary-hover-bg);
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-88bst__hero-title {
            font-size: 2.5rem;
        }
        .page-88bst__section-title {
            font-size: 2rem;
        }
        .page-88bst__cta-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .page-88bst {
            padding-top: var(--header-offset, 100px); /* Adjust fallback for smaller screens */
        }
        .page-88bst__hero-section {
            padding: 40px 15px;
        }
        .page-88bst__hero-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        .page-88bst__hero-description {
            font-size: 1rem;
            margin-bottom: 25px;
        }
        .page-88bst__hero-cta {
            flex-direction: column;
            gap: 15px;
        }
        .page-88bst__btn {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        .page-88bst__btn--large {
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }

        .page-88bst__section-title {
            font-size: 1.8rem;
            padding-top: 30px;
        }
        .page-88bst__section-subtitle {
            font-size: 1.5rem;
        }
        .page-88bst__section-description {
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        /* List item responsive requirements */
        .page-88bst__features-grid,
        .page-88bst__game-categories,
        .page-88bst__promo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-88bst__feature-item,
        .page-88bst__game-card,
        .page-88bst__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88bst__feature-icon,
        .page-88bst__game-image,
        .page-88bst__promo-image,
        .page-88bst__logo-item {
            max-width: 100% !important;
            height: auto;
            box-sizing: border-box !important;
        }

        .page-88bst__feature-title,
        .page-88bst__game-title,
        .page-88bst__promo-title {
            font-size: 1.5rem;
        }

        .page-88bst__payment-providers-section {
            flex-direction: column;
            gap: 30px;
            padding: 40px 15px;
        }
        .page-88bst__payment-methods,
        .page-88bst__game-providers {
            min-width: unset;
            width: 100%;
            padding: 20px;
        }
        .page-88bst__logo-grid {
            gap: 15px;
        }
        .page-88bst__logo-item {
            max-width: 120px;
        }

        .page-88bst__faq-question {
            padding: 15px 20px;
        }
        .page-88bst__faq-question-title {
            font-size: 1.1rem;
        }
        .page-88bst__faq-answer {
            padding: 15px 20px !important;
        }

        .page-88bst__cta-section {
            padding: 50px 15px;
        }
        .page-88bst__cta-title {
            font-size: 1.8rem;
        }
        .page-88bst__cta-description {
            font-size: 1rem;
        }

        .page-88bst__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            width: calc(100% - 30px);
            justify-content: space-around;
        }
        .page-88bst__floating-btn {
            flex: 1;
            margin: 0 5px;
            padding: 10px 15px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .page-88bst__hero-title {
            font-size: 1.8rem;
        }
        .page-88bst__section-title {
            font-size: 1.6rem;
        }
        .page-88bst__cta-title {
            font-size: 1.6rem;
        }
        .page-88bst__floating-buttons {
            bottom: 10px;
            right: 10px;
            width: calc(100% - 20px);
            gap: 5px;
        }
        .page-88bst__floating-btn {
            padding: 8px 10px;
            font-size: 0.85rem;
        }
        .page-88bst__logo-item {
            max-width: 100px;
        }
    }
  