
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000000; /* Black */
      --text-color: #FFFFFF; /* White */
      --accent-color: #FF4500; /* OrangeRed */
      --dark-gray: #333333;
      --light-gray: #CCCCCC;
      --border-radius-small: 8px;
      --border-radius-medium: 12px;
    }

    .page-8k8-apk {
      background-color: var(--secondary-color);
      color: var(--text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space before footer */
      /* Fallback for header offset if body padding-top is not set by shared.css */
      /* padding-top: var(--header-offset, 122px); */
    }

    .page-8k8-apk__hero-section {
      position: relative;
      background-color: var(--dark-gray);
      padding: 10px 20px 80px 20px; /* Adjusted padding-top to avoid double offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-apk__hero-image {
      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: 900px;
      margin: 0 auto;
    }

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

    .page-8k8-apk__hero-description {
      font-size: 1.2em;
      color: var(--light-gray);
      margin-bottom: 30px;
    }

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: var(--border-radius-medium);
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-apk__download-button:hover {
      background-color: #FF6347; /* Slightly lighter orange-red */
      transform: translateY(-2px);
    }

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

    .page-8k8-apk__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-apk__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

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

    .page-8k8-apk__feature-card {
      background-color: var(--dark-gray);
      border-radius: var(--border-radius-medium);
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-8k8-apk__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: var(--border-radius-small);
    }

    .page-8k8-apk__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-apk__feature-description {
      color: var(--light-gray);
      font-size: 0.95em;
    }

    .page-8k8-apk__how-to-section .page-8k8-apk__content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .page-8k8-apk__how-to-step {
      display: flex;
      align-items: center;
      gap: 30px;
      background-color: var(--dark-gray);
      padding: 25px;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__how-to-step:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-apk__step-number {
      font-size: 3em;
      color: var(--accent-color);
      font-weight: bold;
      min-width: 60px;
      text-align: center;
    }

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

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

    .page-8k8-apk__step-description {
      color: var(--light-gray);
    }

    .page-8k8-apk__step-image-container {
      width: 250px;
      height: 180px;
      flex-shrink: 0;
      border-radius: var(--border-radius-small);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-apk__step-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-8k8-apk__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-apk__provider-logo-container {
      background-color: var(--dark-gray);
      border-radius: var(--border-radius-small);
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .page-8k8-apk__faq-section {
      background-color: var(--dark-gray);
      padding: 60px 20px;
    }

    .page-8k8-apk__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-apk__faq-item {
      margin-bottom: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--border-radius-small);
      overflow: hidden;
    }

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

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

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

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      color: var(--accent-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1;
      width: 25px;
      text-align: center;
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Visually represent "-" */
    }

    .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(--light-gray);
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-apk__hero-section {
        padding: 10px 15px 60px 15px;
        min-height: 400px;
      }

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

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

      .page-8k8-apk__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-8k8-apk__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-apk__feature-card {
        padding: 25px;
      }

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

      .page-8k8-apk__feature-title {
        font-size: 1.3em;
      }

      .page-8k8-apk__how-to-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
      }

      .page-8k8-apk__how-to-step:nth-child(even) {
        flex-direction: column; /* Reset order for mobile */
      }

      .page-8k8-apk__step-number {
        font-size: 2.5em;
        min-width: unset;
      }

      .page-8k8-apk__step-title {
        font-size: 1.4em;
      }

      .page-8k8-apk__step-image-container {
        width: 100%;
        height: 150px;
      }

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

      .page-8k8-apk__provider-logo-container {
        height: 80px;
        padding: 10px;
      }

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

      .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;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-apk__hero-title {
        font-size: 1.8em;
      }

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

      .page-8k8-apk__how-to-step {
        padding: 15px;
      }

      .page-8k8-apk__step-image-container {
        width: 100%;
        height: 120px;
      }
    }

    /* Important: Mobile responsive list items requirements */
    .page-8k8-apk__feature-grid,
    .page-8k8-apk__how-to-section .page-8k8-apk__content-wrapper,
    .page-8k8-apk__game-providers-grid,
    .page-8k8-apk__faq-container {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .page-8k8-apk__feature-card,
    .page-8k8-apk__how-to-step,
    .page-8k8-apk__provider-logo-container,
    .page-8k8-apk__faq-item {
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    @media (max-width: 768px) {
      .page-8k8-apk__feature-card,
      .page-8k8-apk__how-to-step,
      .page-8k8-apk__provider-logo-container,
      .page-8k8-apk__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to ensure content fits */
        padding-right: 15px !important; /* Adjust padding to ensure content fits */
      }

      .page-8k8-apk__faq-question,
      .page-8k8-apk__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

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