
    .page-bj88 {
      background-color: #000000;
      color: #FFFFFF;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Fixed navigation bar spacing */
    .page-bj88__hero-section {
      padding-top: 120px; /* Desktop spacing */
      position: relative;
    }

    @media (max-width: 768px) {
      .page-bj88__hero-section {
        padding-top: 100px; /* Mobile spacing */
      }
    }

    .page-bj88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-bj88__section-title {
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-bj88__text--highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Hero Section */
    .page-bj88__hero-content {
      text-align: center;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-bj88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 30px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    .page-bj88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }


    .page-bj88__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bj88__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    .page-bj88__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 5px;
      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__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

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

    .page-bj88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

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

    .page-bj88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0d0d0d;
    }

    .page-bj88__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
      transition: transform 0.3s ease;
    }
    .page-bj88__game-card:hover .page-bj88__game-card-image {
        transform: scale(1.05);
    }

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

    .page-bj88__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none;
      display: block;
    }

    .page-bj88__game-card-title:hover {
      text-decoration: underline;
    }

    .page-bj88__game-card-description {
      font-size: 0.95em;
      color: #CCCCCC;
    }

    /* Promotions Section */
    .page-bj88__promotion-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-bj88__promotion-item:last-child {
      margin-bottom: 0;
    }

    .page-bj88__promotion-icon-wrapper {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #FFD700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5em;
      color: #000000;
    }
    .page-bj88__promotion-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }
    .page-bj88__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-bj88__promotion-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }


    .page-bj88__promotion-content h3 {
      color: #FFD700;
      font-size: 1.8em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-bj88__promotion-content p {
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    /* Providers Section */
    .page-bj88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 40px;
    }

    .page-bj88__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 80px; /* Fixed height for logos */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .page-bj88__provider-logo {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Ensures logos fit without cropping */
      transition: transform 0.3s ease;
      padding: 5px; /* Add some padding to prevent logos from touching edges */
    }

    .page-bj88__provider-logo:hover {
      transform: scale(1.1);
    }

    /* FAQ Section */
    .page-bj88__faq-list {
      margin-top: 40px;
    }

    .page-bj88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-bj88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bj88__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-bj88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      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 similar */
    }
    .page-bj88__faq-item.active .page-bj88__faq-toggle::before {
        content: "−"; /* Change + to - when active */
    }
    .page-bj88__faq-toggle::before {
        content: "+";
    }

    .page-bj88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #E0E0E0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-bj88__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-bj88__faq-answer ul {
        margin-left: 20px;
        padding-left: 0;
    }
    .page-bj88__faq-answer li {
        margin-bottom: 5px;
    }

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

      .page-bj88__hero-title {
        font-size: 2.2em;
      }

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

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

      .page-bj88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-bj88__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-bj88__promotion-icon-wrapper {
        margin-bottom: 15px;
      }

      .page-bj88__promotion-content h3 {
        font-size: 1.5em;
      }

      .page-bj88__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-bj88__faq-question h3 {
        font-size: 1em;
      }

      .page-bj88__faq-answer {
        padding: 0 15px;
      }
      .page-bj88__faq-item.active .page-bj88__faq-answer {
        padding: 15px !important;
      }

      /* Force image responsive styles */
      .page-bj88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-bj88__hero-image-wrapper,
      .page-bj88__game-card-image-wrapper,
      .page-bj88__promotion-image-wrapper,
      .page-bj88__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
    @media (max-width: 480px) {
        .page-bj88__hero-title {
            font-size: 1.8em;
        }
        .page-bj88__section-title {
            font-size: 1.8em;
        }
        .page-bj88__hero-content {
            padding: 30px 15px;
        }
        .page-bj88__promotion-content h3 {
            font-size: 1.3em;
        }
    }
  