
    :root {
      --page-8k8-apk-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-apk-secondary-color: #333333; /* Dark Grey */
      --page-8k8-apk-accent-color: #007bff; /* Blue for buttons/links if needed, but no links here */
      --page-8k8-apk-text-color: #ffffff; /* White */
      --page-8k8-apk-dark-bg: #1a1a1a; /* Very Dark Grey */
      --page-8k8-apk-light-bg: #2a2a2a; /* Darker Grey */
      --page-8k8-apk-border-radius: 8px;
    }

    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-apk-text-color);
      background-color: var(--page-8k8-apk-dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding-top */
    }

    .page-8k8-apk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-apk__section--alt-bg {
      background-color: var(--page-8k8-apk-light-bg);
    }

    .page-8k8-apk__heading {
      color: var(--page-8k8-apk-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      line-height: 1.2;
    }

    .page-8k8-apk__subheading {
      color: var(--page-8k8-apk-primary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
      line-height: 1.3;
    }

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

    .page-8k8-apk__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-apk-primary-color);
      color: var(--page-8k8-apk-dark-bg);
      text-decoration: none;
      border-radius: var(--page-8k8-apk-border-radius);
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

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

    /* Hero Section */
    .page-8k8-apk__hero-section {
      position: relative;
      overflow: hidden;
      padding: 100px 20px 60px; /* Adjust padding-top for decorative spacing */
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      background: linear-gradient(135deg, var(--page-8k8-apk-dark-bg) 0%, #000000 100%);
    }

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

    .page-8k8-apk__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-8k8-apk__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-apk-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-apk__hero-description {
      font-size: 1.4em;
      color: #f0f0f0;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* 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(--page-8k8-apk-light-bg);
      padding: 30px;
      border-radius: var(--page-8k8-apk-border-radius);
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-apk__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

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

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

    /* Download Steps Section */
    .page-8k8-apk__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-apk__step-item {
      display: flex;
      align-items: flex-start;
      background-color: var(--page-8k8-apk-light-bg);
      padding: 25px;
      border-radius: var(--page-8k8-apk-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-apk__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-8k8-apk-primary-color);
      margin-right: 20px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-apk__step-content h3 {
      color: var(--page-8k8-apk-primary-color);
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-apk__step-content p {
      color: #e0e0e0;
      font-size: 1.05em;
    }

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

    .page-8k8-apk__provider-item {
      background-color: var(--page-8k8-apk-light-bg);
      padding: 20px;
      border-radius: var(--page-8k8-apk-border-radius);
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-apk__provider-logo {
      width: 120px; /* Larger size for logos */
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-apk__provider-name {
      color: #e0e0e0;
      font-weight: bold;
      font-size: 1em;
    }

    /* CTA Section */
    .page-8k8-apk__cta-section {
      text-align: center;
      background-color: var(--page-8k8-apk-primary-color);
      color: var(--page-8k8-apk-dark-bg);
      padding: 60px 20px;
      border-radius: var(--page-8k8-apk-border-radius);
      margin: 40px auto;
      max-width: 1000px;
    }

    .page-8k8-apk__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-apk-dark-bg);
    }

    .page-8k8-apk__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-apk-secondary-color);
    }

    .page-8k8-apk__cta-button {
      background-color: var(--page-8k8-apk-dark-bg);
      color: var(--page-8k8-apk-primary-color);
    }

    .page-8k8-apk__cta-button:hover {
      background-color: #333333;
      color: #ffffff;
    }

    /* FAQ Section */
    .page-8k8-apk__faq-list {
      margin-top: 40px;
    }

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

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-apk-secondary-color);
      color: var(--page-8k8-apk-primary-color);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      flex-grow: 1;
      pointer-events: none; /* Prevents text from blocking click event */
      color: var(--page-8k8-apk-primary-color);
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-apk-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

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

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-8k8-apk-light-bg);
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.05em;
    }

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

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

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

      .page-8k8-apk__hero-description {
        font-size: 1.1em;
      }

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

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

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

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

      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

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

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

      .page-8k8-apk__cta-description {
        font-size: 1em;
      }
      
      .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;
      }

      /* List item responsiveness */
      .page-8k8-apk__features-grid .page-8k8-apk__feature-item,
      .page-8k8-apk__steps-list .page-8k8-apk__step-item,
      .page-8k8-apk__providers-grid .page-8k8-apk__provider-item,
      .page-8k8-apk__faq-list .page-8k8-apk__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner spacing */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-apk__features-grid,
      .page-8k8-apk__steps-list,
      .page-8k8-apk__providers-grid,
      .page-8k8-apk__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsiveness */
      .page-8k8-apk__feature-icon,
      .page-8k8-apk__provider-logo,
      .page-8k8-apk__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  