
    /* Page-specific CSS for 8k8 Jili */
    .page-8k8-jili {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small padding to avoid double header offset */
    }

    .page-8k8-jili__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

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

    .page-8k8-jili__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      width: 100%;
    }

    .page-8k8-jili__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-jili__cta-button {
      background-color: #007bff;
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      font-weight: bold;
    }

    .page-8k8-jili__cta-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-jili__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-jili__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-jili__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #cccccc;
    }

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

    .page-8k8-jili__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      border: 1px solid #444466;
    }

    .page-8k8-jili__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-jili__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

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

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

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

    .page-8k8-jili__game-description {
      font-size: 0.95em;
      color: #b0b0b0;
      margin-bottom: 15px;
    }

    .page-8k8-jili__game-button {
      background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 0.9em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      text-decoration: none;
      display: block;
    }

    .page-8k8-jili__game-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-jili__feature-list,
    .page-8k8-jili__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-jili__feature-item,
    .page-8k8-jili__step-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      width: calc(33% - 20px); /* Adjust for 3 columns */
      box-sizing: border-box;
      transition: transform 0.3s ease;
      border: 1px solid #444466;
    }

    .page-8k8-jili__feature-item:hover,
    .page-8k8-jili__step-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-jili__feature-icon {
      margin-bottom: 20px;
    }

    .page-8k8-jili__feature-icon img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-jili__feature-title,
    .page-8k8-jili__step-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-jili__feature-description,
    .page-8k8-jili__step-description {
      font-size: 1em;
      color: #b0b0b0;
    }

    .page-8k8-jili__step-number {
      font-size: 2.5em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-jili__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-jili__payment-logo-wrapper {
      background-color: #2a2a4a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid #444466;
    }

    .page-8k8-jili__payment-logo {
      height: 60px;
      width: auto;
      max-width: 150px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-jili__faq-section {
      text-align: left;
    }

    .page-8k8-jili__faq-list {
      margin-top: 40px;
    }

    .page-8k8-jili__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #444466;
    }

    .page-8k8-jili__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.2em;
      color: #ffcc00;
      background-color: #3a3a5a;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-jili__faq-question:hover {
      background-color: #4a4a6a;
    }

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

    .page-8k8-jili__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-toggle {
      transform: rotate(45deg); /* Rotates the plus to a cross */
    }

    .page-8k8-jili__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;
      color: #cccccc;
      font-size: 1em;
    }

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

    .page-8k8-jili__cta-section {
      background-color: #2a2a4a;
      padding: 60px 20px;
      text-align: center;
      margin-top: 60px;
      border-top: 1px solid #444466;
    }

    .page-8k8-jili__cta-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 20px;
    }

    .page-8k8-jili__cta-description {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 30px;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-jili__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-jili__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-jili__section-title {
        font-size: 2em;
      }

      .page-8k8-jili__text-content {
        font-size: 0.95em;
      }

      .page-8k8-jili__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-jili__feature-item,
      .page-8k8-jili__step-item {
        width: 100% !important; /* Ensure full width on mobile */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }

      .page-8k8-jili__feature-list,
      .page-8k8-jili__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-8k8-jili__feature-icon img {
        width: 80px;
        height: 80px;
      }

      .page-8k8-jili__feature-title,
      .page-8k8-jili__step-title {
        font-size: 1.4em;
      }

      .page-8k8-jili__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-jili__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-jili__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-jili__faq-item.active .page-8k8-jili__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-jili__cta-title {
        font-size: 2em;
      }

      .page-8k8-jili__cta-description {
        font-size: 1em;
      }

      .page-8k8-jili__game-image,
      .page-8k8-jili__hero-background,
      .page-8k8-jili__feature-icon img,
      .page-8k8-jili__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-jili__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-jili__payment-logo-wrapper {
        width: calc(50% - 10px); /* Two logos per row */
        box-sizing: border-box;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-jili__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-jili__hero-subtitle {
        font-size: 0.9em;
      }

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

      .page-8k8-jili__section-title {
        font-size: 1.8em;
      }

      .page-8k8-jili__game-title {
        font-size: 1.3em;
      }

      .page-8k8-jili__game-description {
        font-size: 0.9em;
      }

      .page-8k8-jili__payment-logo-wrapper {
        width: 100%; /* One logo per row */
      }
    }
  