
    .page-8k8-jili {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-jili__hero-section {
      position: relative;
      background-color: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Added 10px top padding for fixed header offset */
      overflow: hidden;
    }

    .page-8k8-jili__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-8k8-jili__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 50px;
    }

    .page-8k8-jili__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-jili__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-jili__button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      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-8k8-jili__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-8k8-jili__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-jili__section:last-of-type {
      border-bottom: none;
    }

    .page-8k8-jili__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-jili__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    .page-8k8-jili__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-jili__card {
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-jili__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-jili__card-icon {
      width: 100px; /* Minimum 200x200, so this will be scaled up by the system */
      height: 100px; /* Minimum 200x200, so this will be scaled up by the system */
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-8k8-jili__card-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 15px;
    }

    .page-8k8-jili__card-description {
      color: #555;
      font-size: 0.95em;
    }

    .page-8k8-jili__image-container {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-jili__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: block;
      margin: 0 auto;
    }

    .page-8k8-jili__game-item {
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-jili__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-jili__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-jili__game-info {
      padding: 20px;
    }

    .page-8k8-jili__game-title {
      font-size: 1.3em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-8k8-jili__game-provider {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 15px;
    }

    .page-8k8-jili__call-to-action-section {
      background-color: #222;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    .page-8k8-jili__call-to-action-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .page-8k8-jili__call-to-action-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #eee;
    }

    .page-8k8-jili__faq-section {
      background-color: #f8f8f8;
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-jili__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8k8-jili__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #1a1a1a;
      color: #ffd700;
      cursor: pointer;
      user-select: none;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-jili__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-8k8-jili__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent blocking click event on parent */
      color: #ffd700; /* Ensure text color is visible */
    }

    .page-8k8-jili__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      width: 25px; /* Fixed width to prevent jump */
      text-align: center;
      pointer-events: none; /* Prevent blocking click event on parent */
      color: #ffd700; /* Ensure toggle color is visible */
    }

    .page-8k8-jili__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fefefe;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-question {
      background-color: #2a2a2a;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-toggle {
      content: '−'; /* Changed via JS */
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-jili__hero-title {
        font-size: 3em;
      }
      .page-8k8-jili__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-jili__section-title {
        font-size: 2em;
      }
      .page-8k8-jili__card {
        padding: 25px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-jili__hero-section {
        padding: 10px 15px 60px;
      }
      .page-8k8-jili__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-jili__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-jili__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-jili__section {
        padding: 40px 15px;
      }
      .page-8k8-jili__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-jili__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-jili__card {
        padding: 20px;
      }
      .page-8k8-jili__card-icon {
        width: 80px; /* Still scaled by system to min 200x200 */
        height: 80px; /* Still scaled by system to min 200x200 */
        margin-bottom: 15px;
      }
      .page-8k8-jili__card-title {
        font-size: 1.3em;
      }
      .page-8k8-jili__call-to-action-section {
        padding: 60px 15px;
      }
      .page-8k8-jili__call-to-action-title {
        font-size: 2em;
      }
      .page-8k8-jili__call-to-action-description {
        font-size: 1em;
      }
      .page-8k8-jili__faq-section {
        padding: 40px 15px;
      }
      .page-8k8-jili__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-jili__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-jili__faq-toggle {
        font-size: 1.5em;
        width: 20px;
      }
      .page-8k8-jili__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-jili__faq-item.active .page-8k8-jili__faq-answer {
        padding: 15px 20px !important;
      }

      /* List item mobile responsiveness */
      .page-8k8-jili__features-list,
      .page-8k8-jili__game-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-8k8-jili__features-list > li,
      .page-8k8-jili__game-item {
        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-8k8-jili__game-item .page-8k8-jili__game-title {
        word-break: break-word !important;
      }
      .page-8k8-jili__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-jili__hero-title {
        font-size: 2em;
      }
      .page-8k8-jili__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-jili__section-title {
        font-size: 1.5em;
      }
      .page-8k8-jili__call-to-action-title {
        font-size: 1.8em;
      }
      .page-8k8-jili__call-to-action-description {
        font-size: 0.9em;
      }
    }
  