
    /* Base styles for the page */
    :root {
      --primary-color: #e44d26; /* A vibrant orange for action items */
      --secondary-color: #333;
      --text-color: #333;
      --light-text-color: #f8f8f8;
      --background-light: #f4f7f6;
      --background-dark: #2c3e50;
      --accent-color: #f39c12; /* Gold/yellow for highlights */
      --border-color: #ddd;
      --padding-section: 60px 20px;
      --padding-item: 20px;
      --border-radius: 8px;
      --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      /* --header-offset is expected to be defined by shared.css or similar and applied to body */
    }

    /* General page container */
    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-light);
      /* padding-top is handled by body from shared.css */
    }

    /* Section styling */
    .page-8k8-apk__section {
      padding: var(--padding-section);
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      text-align: center;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__section--dark {
      background-color: var(--background-dark);
      color: var(--light-text-color);
    }

    .page-8k8-apk__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-8k8-apk__section-title--dark {
      color: var(--accent-color);
    }

    .page-8k8-apk__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-apk__hero-section {
      background: linear-gradient(135deg, var(--background-dark) 0%, #3a506b 100%);
      color: var(--light-text-color);
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0; /* Hero section typically full width */
      box-shadow: none;
      padding-top: 10px; /* Small decorative padding after body's padding-top */
    }

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

    .page-8k8-apk__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--accent-color);
      line-height: 1.2;
    }

    .page-8k8-apk__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 18px 40px;
      font-size: 1.3em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-apk__download-button:hover {
      background-color: #ff6a40; /* Slightly lighter primary */
      transform: translateY(-3px);
    }

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

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

    .page-8k8-apk__feature-item {
      background-color: var(--background-light);
      padding: var(--padding-item);
      border-radius: var(--border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-apk__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-8k8-apk__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* How to Download Section */
    .page-8k8-apk__steps-list {
      list-style: none;
      counter-reset: step-counter;
      padding: 0;
      max-width: 800px;
      margin: 40px auto 0 auto;
    }

    .page-8k8-apk__step-item {
      background-color: var(--background-light);
      padding: var(--padding-item) 30px;
      margin-bottom: 20px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-8k8-apk__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: var(--primary-color);
      color: white;
      width: 40px;
      height: 40px;
      min-width: 40px; /* Ensure it doesn't shrink */
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3em;
      font-weight: bold;
      margin-right: 20px;
    }

    .page-8k8-apk__step-content h3 {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-8k8-apk__step-content p {
      margin-bottom: 0;
      font-size: 1em;
    }

    /* Game Providers Section */
    .page-8k8-apk__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-apk__provider-logo {
      background-color: var(--background-light);
      padding: 15px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      border: 1px solid var(--border-color);
    }

    .page-8k8-apk__provider-logo img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(0); /* Ensure no color filters */
    }

    /* Payment Methods Section */
    .page-8k8-apk__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-apk__payment-method {
      background-color: var(--background-light);
      padding: 15px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      border: 1px solid var(--border-color);
    }

    .page-8k8-apk__payment-method img {
      max-width: 100%;
      max-height: 50px;
      object-fit: contain;
      filter: grayscale(0); /* Ensure no color filters */
    }

    /* FAQ Section */
    .page-8k8-apk__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-8k8-apk__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: var(--border-radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
      color: var(--accent-color);
    }

    .page-8k8-apk__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: var(--text-color);
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-8k8-apk__cta-section {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: var(--padding-section);
      text-align: center;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      margin-left: auto;
      margin-right: auto;
      max-width: 1200px;
    }

    .page-8k8-apk__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: white;
    }

    .page-8k8-apk__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    /* General image styles */
    .page-8k8-apk img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      margin: 0 auto; /* Center images */
      filter: grayscale(0); /* Ensure no color filters */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-apk__section {
        padding: 40px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-8k8-apk__hero-section {
        padding: 80px 15px;
        padding-top: 10px; /* Small decorative padding after body's padding-top */
      }

      .page-8k8-apk__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-apk__hero-subtitle {
        font-size: 1.2em;
      }

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

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

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

      .page-8k8-apk__features-grid,
      .page-8k8-apk__providers-grid,
      .page-8k8-apk__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .page-8k8-apk__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-apk__step-content h3 {
        font-size: 1.2em;
      }

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

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

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

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

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

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

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

      /* List item responsiveness */
      .page-8k8-apk__features-grid > *,
      .page-8k8-apk__steps-list > *,
      .page-8k8-apk__providers-grid > *,
      .page-8k8-apk__payments-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-apk__steps-list,
      .page-8k8-apk__faq-container {
        padding: 0 10px !important; /* Adjust container padding */
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-8k8-apk__faq-item {
        margin-left: 10px;
        margin-right: 10px;
      }

      /* Image responsiveness for all images */
      .page-8k8-apk img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  