
    /* CSS Styles for page-bj66livelogin */
    :root {
      --page-bj66livelogin__primary-color: #e44d26; /* A vibrant red/orange */
      --page-bj66livelogin__secondary-color: #f7b731; /* A golden yellow */
      --page-bj66livelogin__text-color: #333;
      --page-bj66livelogin__light-text-color: #f8f8f8;
      --page-bj66livelogin__background-color: #f0f2f5;
      --page-bj66livelogin__card-background: #ffffff;
      --page-bj66livelogin__border-color: #e0e0e0;
      --page-bj66livelogin__shadow: rgba(0, 0, 0, 0.1);
    }

    .page-bj66livelogin {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-bj66livelogin__text-color);
      background-color: var(--page-bj66livelogin__background-color);
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }

    .page-bj66livelogin__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile first */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-bj66livelogin__light-text-color);
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:bj66_login_banner,casino,gaming]') no-repeat center center/cover;
      padding: 10px 20px 20px; /* Added padding-top for fixed header */
      box-sizing: border-box;
      min-height: 300px;
    }

    .page-bj66livelogin__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-bj66livelogin__light-text-color);
      text-shadow: 2px 2px 4px var(--page-bj66livelogin__shadow);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-bj66livelogin__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      color: var(--page-bj66livelogin__light-text-color);
      text-shadow: 1px 1px 3px var(--page-bj66livelogin__shadow);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-bj66livelogin__cta-button {
      display: inline-block;
      background-color: var(--page-bj66livelogin__secondary-color);
      color: var(--page-bj66livelogin__text-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--page-bj66livelogin__shadow);
      border: none;
      cursor: pointer;
    }

    .page-bj66livelogin__cta-button:hover {
      background-color: #ffc107; /* Slightly darker yellow */
      transform: translateY(-2px);
    }

    .page-bj66livelogin__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-bj66livelogin__primary-color);
      color: var(--page-bj66livelogin__light-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-bj66livelogin__pulse 2s infinite;
      text-decoration: none; /* Ensure it looks like a button */
      white-space: nowrap; /* Prevent text wrapping */
      cursor: pointer;
      border: none;
    }

    .page-bj66livelogin__floating-button:hover {
      background-color: #cc3e1f; /* Slightly darker red */
      transform: translateX(-50%) translateY(-3px);
    }

    @keyframes page-bj66livelogin__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-bj66livelogin__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-bj66livelogin__card-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-bj66livelogin__shadow);
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-bj66livelogin__section:first-of-type {
      margin-top: -80px; /* Pull up to overlap with hero slightly */
      position: relative;
      z-index: 1;
    }

    .page-bj66livelogin__section-title {
      font-size: 2em;
      color: var(--page-bj66livelogin__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-bj66livelogin__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-bj66livelogin__secondary-color);
      border-radius: 2px;
    }

    .page-bj66livelogin__content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .page-bj66livelogin__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 20px auto;
      box-shadow: 0 2px 8px var(--page-bj66livelogin__shadow);
      object-fit: cover;
    }
    
    .page-bj66livelogin__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .page-bj66livelogin__step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-bj66livelogin__step-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background-color: var(--page-bj66livelogin__background-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-bj66livelogin__step-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: var(--page-bj66livelogin__primary-color);
      color: var(--page-bj66livelogin__light-text-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-bj66livelogin__step-text {
      flex-grow: 1;
      color: var(--page-bj66livelogin__text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }
    
    .page-bj66livelogin__step-text strong {
        color: var(--page-bj66livelogin__primary-color);
    }

    .page-bj66livelogin__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-bj66livelogin__game-card {
      background-color: var(--page-bj66livelogin__card-background);
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--page-bj66livelogin__shadow);
      overflow: hidden;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      border: 1px solid var(--page-bj66livelogin__border-color);
    }

    .page-bj66livelogin__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-bj66livelogin__game-image {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-bj66livelogin__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-bj66livelogin__primary-color);
      padding: 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-bj66livelogin__faq-section {
      background-color: var(--page-bj66livelogin__card-background);
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-bj66livelogin__shadow);
      max-width: 1200px;
      margin: 0 auto 30px;
      box-sizing: border-box;
    }

    .page-bj66livelogin__faq-item {
      border-bottom: 1px solid var(--page-bj66livelogin__border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-bj66livelogin__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-bj66livelogin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: var(--page-bj66livelogin__text-color);
      transition: color 0.3s ease;
    }

    .page-bj66livelogin__faq-question:hover {
      color: var(--page-bj66livelogin__primary-color);
    }

    .page-bj66livelogin__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event on parent */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-bj66livelogin__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Crucial for click event on parent */
      color: var(--page-bj66livelogin__primary-color);
      transition: transform 0.3s ease;
    }

    .page-bj66livelogin__faq-item.active .page-bj66livelogin__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-bj66livelogin__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: var(--page-bj66livelogin__text-color);
      background-color: var(--page-bj66livelogin__background-color);
      border-radius: 5px;
      margin-top: 5px;
    }

    .page-bj66livelogin__faq-item.active .page-bj66livelogin__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 15px !important; /* Use !important as required */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bj66livelogin__hero-section {
        height: 50vh;
        padding-top: 10px; /* Ensure padding-top for fixed header */
      }

      .page-bj66livelogin__hero-title {
        font-size: 2em;
      }

      .page-bj66livelogin__hero-description {
        font-size: 1em;
      }

      .page-bj66livelogin__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bj66livelogin__floating-button {
        width: calc(100% - 40px); /* Full width minus padding */
        max-width: 350px; /* Limit max width */
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
      }

      .page-bj66livelogin__section {
        padding: 30px 15px;
        margin-bottom: 20px;
        margin-top: -60px; /* Adjust overlap */
      }

      .page-bj66livelogin__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

      .page-bj66livelogin__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
      }

      .page-bj66livelogin__step-icon {
        margin-bottom: 10px;
      }

      .page-bj66livelogin__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      
      .page-bj66livelogin__game-image {
        height: 100px; /* Adjust height for smaller screens */
      }

      .page-bj66livelogin__game-title {
        font-size: 1em;
        padding: 10px 5px;
      }

      .page-bj66livelogin__faq-section {
        padding: 20px 15px;
      }

      .page-bj66livelogin__faq-question {
        padding: 12px 0;
      }

      .page-bj66livelogin__faq-question h3 {
        font-size: 1em;
      }

      .page-bj66livelogin__faq-answer {
        padding: 0 10px;
      }

      .page-bj66livelogin__faq-item.active .page-bj66livelogin__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }
      
      /* List item responsive requirements */
      .page-bj66livelogin__step-list,
      .page-bj66livelogin__game-grid {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
      }
      
      .page-bj66livelogin__step-item,
      .page-bj66livelogin__game-card {
          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-bj66livelogin__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      
      .page-bj66livelogin__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (min-width: 769px) {
      .page-bj66livelogin__hero-section {
        height: 70vh;
        padding-top: 10px; /* Ensure padding-top for fixed header */
      }

      .page-bj66livelogin__hero-title {
        font-size: 3.5em;
      }

      .page-bj66livelogin__hero-description {
        font-size: 1.3em;
      }

      .page-bj66livelogin__section:first-of-type {
        margin-top: -100px; /* Pull up to overlap with hero slightly */
      }
      
      .page-bj66livelogin__game-grid {
        grid-template-columns: repeat(4, 1fr); /* More columns on desktop */
      }
      
      .page-bj66livelogin__game-image {
        height: 150px; /* Adjust height for desktop screens */
      }
    }
  