
    :root {
      --page-bj88--primary-color: #ffd700; /* Gold */
      --page-bj88--secondary-color: #f0f0f0; /* Light grey */
      --page-bj88--text-color: #fff; /* White */
      --page-bj88--background-color: #000; /* Black */
      --page-bj88--dark-grey: #1a1a1a;
      --page-bj88--light-grey: #333;
    }

    body {
      background-color: var(--page-bj88--background-color);
      color: var(--page-bj88--text-color);
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }

    .page-bj88 {
      padding-top: 120px; /* Adjust for fixed header */
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-bj88 {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }
    }

    .page-bj88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-bj88--dark-grey);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-bj88__section--dark {
      background-color: var(--page-bj88--light-grey);
    }

    .page-bj88__hero-section {
      background-color: var(--page-bj88--background-color);
      padding: 0; /* Hero image will fill this */
      margin-bottom: 0;
      border-radius: 0;
      box-shadow: none;
      text-align: center;
    }

    .page-bj88__hero-image {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      max-width: 1200px; /* Ensure it's centered and not too wide */
      border-radius: 8px;
    }
    
    .page-bj88__hero-content {
      padding: 30px 20px;
      background-color: var(--page-bj88--dark-grey);
      margin-top: -8px; /* Slightly overlap with image */
      border-radius: 0 0 8px 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-bj88__title {
      color: var(--page-bj88--primary-color);
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bj88__subtitle {
      color: var(--page-bj88--secondary-color);
      font-size: 1.5em;
      margin-bottom: 30px;
    }

    .page-bj88__button {
      display: inline-block;
      background-color: var(--page-bj88--primary-color);
      color: var(--page-bj88--background-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bj88__button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-bj88__floating-button-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      text-align: right;
      width: auto;
    }

    .page-bj88__floating-button {
      background-color: #ff4d4d; /* Attractive red for promo */
      color: white;
      padding: 15px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      animation: page-bj88__pulse 2s infinite;
      display: inline-block;
      font-size: 1.05em;
    }

    .page-bj88__floating-button:hover {
      background-color: #e60000;
      animation: none;
    }

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

    .page-bj88__h2 {
      color: var(--page-bj88--primary-color);
      font-size: 2.2em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-bj88__h3 {
      color: var(--page-bj88--secondary-color);
      font-size: 1.6em;
      margin-bottom: 20px;
    }

    .page-bj88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bj88__game-card {
      background-color: var(--page-bj88--light-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bj88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-bj88__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-bj88--primary-color);
    }

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

    .page-bj88__game-card-title {
      font-size: 1.3em;
      color: var(--page-bj88--primary-color);
      margin-bottom: 10px;
      text-decoration: none;
      display: block; /* Make the whole title clickable */
    }

    .page-bj88__game-card-description {
      font-size: 0.9em;
      color: var(--page-bj88--secondary-color);
      margin-bottom: 15px;
    }

    .page-bj88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bj88__provider-item {
      background-color: var(--page-bj88--light-grey);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px; /* Ensure uniform height */
    }

    .page-bj88__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-bj88__provider-logo {
      max-width: 100%;
      max-height: 80px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-bj88__text-block {
      text-align: left;
      color: var(--page-bj88--secondary-color);
      margin-top: 20px;
      line-height: 1.8;
    }

    .page-bj88__text-block p {
      margin-bottom: 1em;
    }

    .page-bj88__text-block strong {
      color: var(--page-bj88--primary-color);
    }

    .page-bj88__list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-bj88__list-item {
      background-color: var(--page-bj88--light-grey);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--page-bj88--secondary-color);
    }

    .page-bj88__list-item::before {
      content: "✅";
      color: var(--page-bj88--primary-color);
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 8px;
    }

    /* FAQ Styles */
    .page-bj88__faq-container {
      margin-top: 40px;
      text-align: left;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bj88__faq-item {
      background-color: var(--page-bj88--light-grey);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-bj88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: var(--page-bj88--dark-grey);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-bj88--light-grey);
    }

    .page-bj88__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-bj88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-bj88--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bj88__faq-toggle {
      font-size: 1.5em;
      color: var(--page-bj88--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-bj88__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-bj88--secondary-color);
      font-size: 0.95em;
      line-height: 1.7;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bj88__title {
        font-size: 2em;
      }

      .page-bj88__subtitle {
        font-size: 1.2em;
      }

      .page-bj88__h2 {
        font-size: 1.8em;
      }

      .page-bj88__h3 {
        font-size: 1.4em;
      }

      .page-bj88__section {
        padding: 30px 15px;
      }

      .page-bj88__game-grid, .page-bj88__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
      }

      .page-bj88__game-card-image {
        height: 150px;
      }

      .page-bj88__floating-button-container {
        bottom: 15px;
        right: 15px;
      }

      .page-bj88__floating-button {
        padding: 12px 20px;
        font-size: 0.95em;
      }

      .page-bj88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bj88__faq-answer {
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-bj88__game-grid, .page-bj88__provider-grid {
        grid-template-columns: 1fr;
      }
      .page-bj88__game-card-image {
        height: 220px;
      }
      .page-bj88__faq-question {
        padding: 15px;
      }
    }
  