
    /* CSS for page-b-ng-888 */
    .page-b-ng-888 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px;
      padding-top: 10px; /* Adjust for fixed header, as body padding-top handles main offset */
    }

    .page-b-ng-888__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b-ng-888__section {
      background-color: #fff;
      margin-bottom: 25px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-b-ng-888__section--dark {
        background-color: #2a2a2a;
        color: #f0f0f0;
    }

    .page-b-ng-888__section--dark h2,
    .page-b-ng-888__section--dark h3 {
        color: #fff;
    }

    .page-b-ng-888__section--center {
        text-align: center;
    }

    .page-b-ng-888__title {
      color: #cc0000; /* Example primary color for betting site */
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-b-ng-888__subtitle {
      color: #555;
      text-align: center;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-b-ng-888__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box; /* Crucial for responsive images */
    }

    .page-b-ng-888__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        text-align: center; /* To center images within the wrapper */
    }

    .page-b-ng-888__button {
      display: inline-block;
      background-color: #cc0000;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
    }

    .page-b-ng-888__button:hover {
      background-color: #ff3333;
    }

    .page-b-ng-888__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-b-ng-888__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-b-ng-888__list-item {
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
      width: 100%; /* Default for smaller screens or single column */
    }

    .page-b-ng-888__list-item h3 {
      color: #cc0000;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    /* FAQ Section Styles */
    .page-b-ng-888__faq-section {
      margin-top: 40px;
    }

    .page-b-ng-888__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    }

    .page-b-ng-888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e0e0e0;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-b-ng-888__faq-question:hover {
      background-color: #d0d0d0;
    }

    .page-b-ng-888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-b-ng-888__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-b-ng-888__faq-item.active .page-b-ng-888__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-b-ng-888__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: #555;
      background-color: #fcfcfc;
    }

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

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

      .page-b-ng-888__subtitle {
        font-size: 1em;
      }

      .page-b-ng-888__section {
        padding: 20px 15px;
      }

      .page-b-ng-888__list {
        grid-template-columns: 1fr; /* Single column for lists */
        gap: 15px;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-b-ng-888__list-item {
        padding: 15px !important;
        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-b-ng-888__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-b-ng-888__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-b-ng-888__faq-question {
        padding: 12px 15px;
      }

      .page-b-ng-888__faq-question h3 {
        font-size: 1em;
      }

      .page-b-ng-888__faq-answer {
        padding: 15px 15px !important;
      }
    }
  