
    /* Global styles for the page-8k8-apk scope */
    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

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

    .page-8k8-apk__heading-primary {
      font-size: 2.8em;
      color: #0056b3; /* A strong blue for titles */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      word-break: break-word;
    }

    .page-8k8-apk__heading-secondary {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 15px;
      text-align: center;
      word-break: break-word;
    }

    .page-8k8-apk__heading-tertiary {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
      word-break: break-word;
    }

    .page-8k8-apk__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
      word-break: break-word;
    }

    .page-8k8-apk__button {
      display: inline-block;
      background-color: #007bff; /* Primary button color */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-8k8-apk__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

    /* Hero Section */
    .page-8k8-apk__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #e0f2f7 0%, #c2e0f0 100%); /* Light gradient background */
      border-radius: 0; /* No border-radius for hero */
      margin-bottom: 30px;
    }

    .page-8k8-apk__hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-apk__hero-image {
      max-width: 600px;
      height: auto;
      margin: 30px auto 20px;
      display: block;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Features/Benefits List */
    .page-8k8-apk__feature-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-8k8-apk__feature-item {
      background-color: #f8fafd;
      border: 1px solid #e0e7eb;
      border-radius: 8px;
      padding: 25px;
      flex: 1 1 calc(33% - 40px); /* Three items per row, with gap */
      min-width: 280px;
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-apk__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-apk__feature-icon {
      max-width: 80px; /* Adjust size for content images, not small icons */
      height: auto;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      word-break: break-word;
    }

    .page-8k8-apk__feature-description {
      font-size: 1em;
      color: #666;
      word-break: break-word;
    }

    /* How to Download Section */
    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-8k8-apk__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: #fcfdff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-apk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #007bff;
      border-radius: 50%;
      background-color: #e6f2ff;
    }

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

    /* Game Providers Section */
    .page-8k8-apk__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      justify-items: center;
      padding: 20px 0;
    }

    .page-8k8-apk__provider-card {
      background-color: #f8fafd;
      border: 1px solid #e0e7eb;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-apk__provider-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-apk__provider-logo {
      max-width: 120px; /* Appropriate size for logos */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1.1em;
      word-break: break-word;
    }

    /* Payment Methods Section */
    .page-8k8-apk__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      padding: 20px 0;
    }

    .page-8k8-apk__payment-item {
      text-align: center;
      padding: 15px;
      background-color: #f8fafd;
      border: 1px solid #e0e7eb;
      border-radius: 8px;
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .page-8k8-apk__payment-item:hover {
      transform: scale(1.05);
    }

    .page-8k8-apk__payment-logo {
      max-width: 100px; /* Appropriate size for payment logos */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__payment-name {
      font-size: 0.95em;
      color: #333;
      word-break: break-word;
    }

    /* FAQ Section */
    .page-8k8-apk__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-apk__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

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

    .page-8k8-apk__faq-question:hover {
      background-color: #f0f0f0;
    }

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

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1; /* Ensure consistent height for + and - */
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-apk__container {
        padding: 15px;
      }

      .page-8k8-apk__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-8k8-apk__heading-primary {
        font-size: 2em;
        padding-top: 5px;
      }

      .page-8k8-apk__heading-secondary {
        font-size: 1.6em;
      }

      .page-8k8-apk__heading-tertiary {
        font-size: 1.3em;
      }

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

      .page-8k8-apk__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-apk__hero-section {
        padding: 40px 15px;
      }

      .page-8k8-apk__feature-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-apk__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-apk__steps-list {
        gap: 15px;
      }

      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px;
      }

      .page-8k8-apk__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-apk__provider-grid,
      .page-8k8-apk__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-8k8-apk__provider-card,
      .page-8k8-apk__payment-item {
        padding: 15px;
      }

      .page-8k8-apk__provider-logo,
      .page-8k8-apk__payment-logo {
        max-width: 80px;
      }

      .page-8k8-apk__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-apk__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-apk__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsive styles */
      .page-8k8-apk__image,
      .page-8k8-apk__hero-image,
      .page-8k8-apk__feature-icon,
      .page-8k8-apk__provider-logo,
      .page-8k8-apk__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      /* Ensure containers also resize */
      .page-8k8-apk__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* Text wrapping for lists and cards */
      .page-8k8-apk__feature-title,
      .page-8k8-apk__feature-description,
      .page-8k8-apk__step-content p,
      .page-8k8-apk__provider-name,
      .page-8k8-apk__payment-name,
      .page-8k8-apk__faq-question h3,
      .page-8k8-apk__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  