
    /* CSS Styles for bj66login page */
    :root {
        --page-bj66login__primary-color: #e44d26; /* A vibrant orange/red */
        --page-bj66login__secondary-color: #333;
        --page-bj66login__accent-color: #f7b731; /* Gold/yellow for highlights */
        --page-bj66login__text-color: #333;
        --page-bj66login__light-text-color: #f8f8f8;
        --page-bj66login__background-light: #f4f4f4;
        --page-bj66login__background-dark: #2c3e50; /* Dark blue/grey */
        --page-bj66login__border-color: #ddd;
        --page-bj66login__button-hover: #c43e1d;
    }

    .page-bj66login {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-bj66login__text-color);
        background-color: var(--page-bj66login__background-light);
        padding-top: 10px; /* Spacing for fixed header */
    }

    @media (max-width: 768px) {
        .page-bj66login {
            padding-top: 10px; /* Spacing for fixed header on mobile */
        }
    }

    .page-bj66login__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-bj66login__section {
            padding: 20px 15px;
            margin-bottom: 15px;
            border-radius: 5px;
        }
    }

    .page-bj66login__section--dark {
        background-color: var(--page-bj66login__background-dark);
        color: var(--page-bj66login__light-text-color);
    }

    .page-bj66login__section-title {
        text-align: center;
        color: var(--page-bj66login__primary-color);
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
    }

    .page-bj66login__section-title--light {
        color: var(--page-bj66login__accent-color);
    }

    @media (max-width: 768px) {
        .page-bj66login__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
    }

    .page-bj66login__text-center {
        text-align: center;
    }

    .page-bj66login__button {
        display: inline-block;
        background-color: var(--page-bj66login__primary-color);
        color: var(--page-bj66login__light-text-color);
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
    }

    .page-bj66login__button:hover {
        background-color: var(--page-bj66login__button-hover);
        transform: translateY(-2px);
    }

    .page-bj66login__button--secondary {
        background-color: var(--page-bj66login__accent-color);
        color: var(--page-bj66login__text-color);
    }

    .page-bj66login__button--secondary:hover {
        background-color: #d89f2a;
    }

    @media (max-width: 768px) {
        .page-bj66login__button {
            padding: 10px 20px;
            font-size: 1em;
        }
    }

    /* Hero Section */
    .page-bj66login__hero-section {
        position: relative;
        background-color: var(--page-bj66login__background-dark);
        color: var(--page-bj66login__light-text-color);
        text-align: center;
        padding: 60px 20px 40px; /* Adjusted padding-top for fixed header */
        overflow: hidden;
        box-sizing: border-box;
    }

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

    .page-bj66login__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-bj66login__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--page-bj66login__accent-color);
    }

    .page-bj66login__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 768px) {
        .page-bj66login__hero-section {
            padding: 40px 15px 30px; /* Adjusted padding-top for fixed header on mobile */
        }
        .page-bj66login__hero-title {
            font-size: 2.2em;
        }
        .page-bj66login__hero-subtitle {
            font-size: 1.1em;
        }
    }

    /* Floating Login Button */
    .page-bj66login__floating-login-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--page-bj66login__primary-color);
        color: var(--page-bj66login__light-text-color);
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 1.2em;
        cursor: pointer;
        border: none;
    }

    .page-bj66login__floating-login-button:hover {
        background-color: var(--page-bj66login__button-hover);
        transform: translateY(-3px);
    }

    @media (max-width: 768px) {
        .page-bj66login__floating-login-button {
            bottom: 15px;
            right: 15px;
            padding: 12px 20px;
            font-size: 1em;
        }
    }

    /* Info Cards */
    .page-bj66login__info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-bj66login__info-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-bj66login__info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-bj66login__info-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .page-bj66login__info-card-title {
        font-size: 1.5em;
        color: var(--page-bj66login__primary-color);
        margin-bottom: 15px;
    }

    .page-bj66login__info-card-description {
        font-size: 1em;
        color: var(--page-bj66login__secondary-color);
    }

    @media (max-width: 768px) {
        .page-bj66login__info-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .page-bj66login__info-card {
            padding: 20px;
        }
        .page-bj66login__info-card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }
        .page-bj66login__info-card-title {
            font-size: 1.3em;
        }
    }

    /* How-To Steps */
    .page-bj66login__steps-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        counter-reset: step-counter;
        padding: 0;
        list-style: none;
    }

    .page-bj66login__step-item {
        display: flex;
        align-items: flex-start;
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        box-sizing: border-box;
        width: 100%; /* Ensure full width on desktop too */
    }

    .page-bj66login__step-item::before {
        counter-increment: step-counter;
        content: counter(step-counter);
        background-color: var(--page-bj66login__primary-color);
        color: var(--page-bj66login__light-text-color);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3em;
        font-weight: bold;
        flex-shrink: 0;
        margin-right: 20px;
    }

    .page-bj66login__step-content {
        flex-grow: 1;
    }

    .page-bj66login__step-title {
        font-size: 1.4em;
        color: var(--page-bj66login__secondary-color);
        margin-bottom: 10px;
    }

    .page-bj66login__step-description {
        font-size: 1em;
        color: var(--page-bj66login__text-color);
    }

    @media (max-width: 768px) {
        .page-bj66login__steps-list {
            gap: 15px;
        }
        .page-bj66login__step-item {
            padding: 15px;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-bj66login__step-item::before {
            margin-right: 0;
            margin-bottom: 15px;
        }
        .page-bj66login__step-title {
            font-size: 1.2em;
        }
        .page-bj66login__step-description {
            font-size: 0.95em;
        }
    }

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

    .page-bj66login__game-card {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-bj66login__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-bj66login__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 768px) {
        .page-bj66login__game-card-image {
            width: 100% !important;
            max-width: 100% !important;
            height: 180px;
            box-sizing: border-box !important;
        }
    }

    .page-bj66login__game-card-content {
        padding: 20px;
    }

    .page-bj66login__game-card-title {
        font-size: 1.4em;
        color: var(--page-bj66login__primary-color);
        margin-bottom: 10px;
    }

    .page-bj66login__game-card-description {
        font-size: 0.95em;
        color: var(--page-bj66login__secondary-color);
        margin-bottom: 15px;
    }

    @media (max-width: 768px) {
        .page-bj66login__game-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .page-bj66login__game-card-content {
            padding: 15px;
        }
        .page-bj66login__game-card-title {
            font-size: 1.2em;
        }
    }

    /* FAQ Section */
    .page-bj66login__faq-list {
        max-width: 900px;
        margin: 30px auto 0;
        padding: 0;
        list-style: none;
        box-sizing: border-box;
        width: 100%;
    }

    @media (max-width: 768px) {
        .page-bj66login__faq-list {
            margin-top: 20px;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    .page-bj66login__faq-item {
        background-color: #fff;
        border: 1px solid var(--page-bj66login__border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
    }

    @media (max-width: 768px) {
        .page-bj66login__faq-item {
            margin-bottom: 10px;
            border-radius: 5px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
    }

    .page-bj66login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #f0f0f0;
        color: var(--page-bj66login__secondary-color);
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-bj66login__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-bj66login__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-bj66login__secondary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

    .page-bj66login__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        flex-shrink: 0;
    }

    .page-bj66login__faq-item.active .page-bj66login__faq-toggle {
        transform: rotate(45deg);
    }

    .page-bj66login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: var(--page-bj66login__text-color);
        font-size: 1em;
    }

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

    @media (max-width: 768px) {
        .page-bj66login__faq-question {
            padding: 15px 15px;
            font-size: 1em;
        }
        .page-bj66login__faq-question h3 {
            font-size: 1em;
        }
        .page-bj66login__faq-toggle {
            font-size: 1.5em;
            margin-left: 10px;
        }
        .page-bj66login__faq-answer {
            padding: 0 15px;
        }
        .page-bj66login__faq-item.active .page-bj66login__faq-answer {
            padding: 15px 15px !important;
        }
    }

    /* General responsive image styles */
    .page-bj66login img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 768px) {
        .page-bj66login img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }
  