.page-jili11-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Adjust for fixed header, relying on body padding for main offset */
    }

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

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

    .page-jili11-apk__section-title {
      color: #a00;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-jili11-apk__section-subtitle {
      color: #c00;
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-jili11-apk__text {
      text-align: justify;
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-jili11-apk__button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      text-align: center;
      cursor: pointer;
      border: none;
    }

    .page-jili11-apk__button:hover {
      background-color: #ff6f42;
    }

    .page-jili11-apk__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px auto;
      display: block;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jili11-apk__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-jili11-apk__feature-item {
      background-color: #fefefe;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      text-align: center;
      box-sizing: border-box;
    }

    .page-jili11-apk__feature-item-title {
      color: #d00;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-jili11-apk__step-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-jili11-apk__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: #fefefe;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-jili11-apk__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #e44d26;
      color: #fff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-jili11-apk__step-content {
      flex-grow: 1;
    }

    .page-jili11-apk__step-title {
      color: #c00;
      font-size: 1.3em;
      margin-bottom: 8px;
    }

    .page-jili11-apk__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-jili11-apk__game-provider-logo {
      width: 100px;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-jili11-apk__game-provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-jili11-apk__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-jili11-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jili11-apk__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jili11-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevents click event from being blocked by h3 */
    }

    .page-jili11-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e44d26;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents click event from being blocked by toggle icon */
    }

    .page-jili11-apk__faq-item.active .page-jili11-apk__faq-toggle {
      transform: rotate(45deg);
    }

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

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

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

      .page-jili11-apk__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-jili11-apk__section-title {
        font-size: 2em;
      }

      .page-jili11-apk__section-subtitle {
        font-size: 1.5em;
      }

      .page-jili11-apk__text {
        font-size: 1em;
      }

      .page-jili11-apk__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-jili11-apk__feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-jili11-apk__feature-item, .page-jili11-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-jili11-apk__step-content {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-jili11-apk__step-item::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
        margin-right: 10px;
      }

      .page-jili11-apk__game-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }

      .page-jili11-apk__game-provider-logo {
        width: 80px;
      }

      .page-jili11-apk__faq-question {
        padding: 15px;
      }

      .page-jili11-apk__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jili11-apk__faq-answer {
        padding: 0 15px;
      }

      .page-jili11-apk__faq-item.active .page-jili11-apk__faq-answer {
        padding: 15px !important;
      }

      .page-jili11-apk__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }