
    /* Base styles for the page-fb777-live */
    .page-fb777-live {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-fb777-live__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-fb777-live__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-fb777-live__section-title {
      font-size: 2.5em;
      color: #e74c3c;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__section-title--light {
      color: #f39c12;
    }

    .page-fb777-live__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__button {
      display: block;
      width: fit-content;
      margin: 25px auto;
      padding: 15px 30px;
      background-color: #f39c12;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__button:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-fb777-live__hero-section {
      position: relative;
      background-size: cover;
      background-position: center;
      color: #fff;
      text-align: center;
      padding: 100px 20px; /* Adjusted padding-top to avoid double header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-fb777-live__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-fb777-live__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-fb777-live__hero-title {
      font-size: 3.8em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #f39c12;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Features/Benefits List */
    .page-fb777-live__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-fb777-live__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-fb777-live__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-fb777-live__feature-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 250px; /* Minimum size for images */
      height: auto;
      border-radius: 4px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-fb777-live__feature-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__feature-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

    .page-fb777-live__game-card:hover {
      transform: translateY(-5px);
    }

    .page-fb777-live__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-fb777-live__game-content {
      padding: 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-fb777-live__game-title {
      font-size: 1.4em;
      color: #e74c3c;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__game-description {
      font-size: 0.95em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Payment Methods / Game Providers */
    .page-fb777-live__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-fb777-live__logo-item {
      text-align: center;
      padding: 15px;
      background-color: #f0f0f0;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-fb777-live__logo-image {
      max-width: 100%;
      height: auto;
      max-height: 100px; /* Constrain height for logos */
      display: block;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-fb777-live__logo-text {
      font-size: 0.9em;
      color: #333;
      margin-top: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Steps / How-to Guide */
    .page-fb777-live__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-fb777-live__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-fb777-live__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #f39c12;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-fb777-live__step-content {
      flex-grow: 1;
      box-sizing: border-box;
    }

    .page-fb777-live__step-title {
      font-size: 1.4em;
      color: #e74c3c;
      margin-bottom: 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__step-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Testimonials */
    .page-fb777-live__testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-fb777-live__testimonial-card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-fb777-live__testimonial-quote {
      font-style: italic;
      margin-bottom: 15px;
      color: #444;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__testimonial-author {
      font-weight: bold;
      color: #e74c3c;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-fb777-live__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-fb777-live__faq-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-fb777-live__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #e74c3c;
      color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-fb777-live__faq-question:hover {
      background-color: #c0392b;
    }

    .page-fb777-live__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-fb777-live__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-fb777-live__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
      box-sizing: border-box;
    }

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

    .page-fb777-live__faq-item.active .page-fb777-live__faq-toggle {
      transform: rotate(45deg); /* Plus to minus visual effect */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-fb777-live__hero-title {
        font-size: 3em;
      }

      .page-fb777-live__hero-description {
        font-size: 1.2em;
      }

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

    @media (max-width: 768px) {
      .page-fb777-live__container {
        padding: 15px;
      }

      .page-fb777-live__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-fb777-live__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }

      .page-fb777-live__hero-title {
        font-size: 2.5em;
      }

      .page-fb777-live__hero-description {
        font-size: 1.1em;
      }

      .page-fb777-live__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-fb777-live__text {
        font-size: 1em;
      }

      .page-fb777-live__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List items responsive */
      .page-fb777-live__features-grid,
      .page-fb777-live__game-grid,
      .page-fb777-live__logo-grid,
      .page-fb777-live__testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-fb777-live__feature-item,
      .page-fb777-live__game-card,
      .page-fb777-live__logo-item,
      .page-fb777-live__testimonial-card,
      .page-fb777-live__step-item,
      .page-fb777-live__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-fb777-live__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-fb777-live__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-fb777-live__game-image {
        height: 180px;
      }

      .page-fb777-live__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-fb777-live__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-fb777-live__faq-question {
        padding: 15px 20px;
      }

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

      .page-fb777-live__faq-answer {
        padding: 0 20px;
      }

      .page-fb777-live__faq-item.active .page-fb777-live__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive */
      .page-fb777-live__hero-image,
      .page-fb777-live__feature-icon,
      .page-fb777-live__game-image,
      .page-fb777-live__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-fb777-live__hero-section .page-fb777-live__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-fb777-live__hero-title {
        font-size: 2em;
      }

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

      .page-fb777-live__section-title {
        font-size: 1.5em;
      }
    }
  