
    /* Base styles for the page */
    .page-8k8-apk-latest-version {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 40px;
    }

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

    /* Hero Section */
    .page-8k8-apk-latest-version__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 60px; /* Small padding-top, relying on body padding for header offset */
      background-color: #0f0f1d;
      overflow: hidden;
      border-bottom: 3px solid #ffcc00;
    }

    .page-8k8-apk-latest-version__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-apk-latest-version__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-apk-latest-version__hero-title {
      font-size: 3.2em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: 700;
    }

    .page-8k8-apk-latest-version__hero-subtitle {
      font-size: 1.5em;
      color: #f0f0f0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk-latest-version__download-button {
      display: inline-block;
      background-color: #e60073; /* A vibrant pink/magenta */
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-apk-latest-version__download-button:hover {
      background-color: #ff3399; /* Lighter pink on hover */
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-apk-latest-version__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-apk-latest-version__section:nth-of-type(even) {
      background-color: #161625;
    }

    .page-8k8-apk-latest-version__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 40px;
      font-weight: 600;
      text-align: center;
    }

    .page-8k8-apk-latest-version__section-description {
      font-size: 1.1em;
      color: #cccccc;
      max-width: 800px;
      margin: 0 auto 50px;
    }

    /* Features Grid */
    .page-8k8-apk-latest-version__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-apk-latest-version__feature-card {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-apk-latest-version__feature-card:hover {
      transform: translateY(-10px);
      background-color: #3a3a5a;
    }

    .page-8k8-apk-latest-version__feature-icon {
      width: 250px; /* Increased size */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-apk-latest-version__feature-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 600;
      text-align: center;
    }

    .page-8k8-apk-latest-version__feature-description {
      font-size: 1em;
      color: #c0c0c0;
      text-align: center;
    }

    /* How to Download */
    .page-8k8-apk-latest-version__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-apk-latest-version__step-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 20px;
      text-align: left;
      box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
    }

    .page-8k8-apk-latest-version__step-number {
      background-color: #e60073;
      color: #ffffff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-8k8-apk-latest-version__step-content {
      flex-grow: 1;
    }

    .page-8k8-apk-latest-version__step-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-apk-latest-version__step-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    .page-8k8-apk-latest-version__guide-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      margin-top: 40px;
      max-width: 800px;
      box-sizing: border-box;
    }

    /* Why Choose 8k8 VIP */
    .page-8k8-apk-latest-version__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-apk-latest-version__choice-card {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-8k8-apk-latest-version__choice-card:hover {
      transform: translateY(-8px);
    }

    .page-8k8-apk-latest-version__choice-icon {
      width: 200px; /* Min size */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-apk-latest-version__choice-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-apk-latest-version__choice-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* Call to Action */
    .page-8k8-apk-latest-version__cta-section {
      background-color: #0f0f1d;
      padding: 80px 20px;
      text-align: center;
      border-top: 3px solid #ffcc00;
    }

    .page-8k8-apk-latest-version__cta-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .page-8k8-apk-latest-version__cta-description {
      font-size: 1.3em;
      color: #f0f0f0;
      max-width: 900px;
      margin: 0 auto 40px;
    }

    /* FAQ Section */
    .page-8k8-apk-latest-version__faq-section {
      padding: 60px 0;
      background-color: #161625;
    }

    .page-8k8-apk-latest-version__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-apk-latest-version__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffcc00;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-8k8-apk-latest-version__faq-item.active .page-8k8-apk-latest-version__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-apk-latest-version__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #c0c0c0;
      font-size: 1em;
      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-apk-latest-version__faq-item.active .page-8k8-apk-latest-version__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-apk-latest-version__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-apk-latest-version__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-apk-latest-version__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-apk-latest-version__container {
        padding: 0 15px;
      }

      .page-8k8-apk-latest-version__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
      }

      .page-8k8-apk-latest-version__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 25px;
      }

      .page-8k8-apk-latest-version__download-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-8k8-apk-latest-version__section {
        padding: 40px 0;
      }

      .page-8k8-apk-latest-version__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-apk-latest-version__section-description {
        font-size: 1em;
        margin-bottom: 40px;
      }

      .page-8k8-apk-latest-version__features-grid,
      .page-8k8-apk-latest-version__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-apk-latest-version__feature-card,
      .page-8k8-apk-latest-version__choice-card {
        padding: 25px;
      }

      .page-8k8-apk-latest-version__feature-icon,
      .page-8k8-apk-latest-version__choice-icon {
        width: 200px; /* Ensure images are not too small but still responsive */
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-apk-latest-version__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-apk-latest-version__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-apk-latest-version__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-apk-latest-version__cta-section {
        padding: 60px 15px;
      }

      .page-8k8-apk-latest-version__cta-title {
        font-size: 2.2em;
        margin-bottom: 20px;
      }

      .page-8k8-apk-latest-version__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
      }

      .page-8k8-apk-latest-version__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-apk-latest-version__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

    @media (max-width: 480px) {
      .page-8k8-apk-latest-version__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-apk-latest-version__hero-subtitle {
        font-size: 0.95em;
      }
      .page-8k8-apk-latest-version__section-title {
        font-size: 1.6em;
      }
      .page-8k8-apk-latest-version__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-apk-latest-version__download-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  