
    /* Base styles for the page */
    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      color: #333333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
      /* Fallback for header offset if body padding is not applied by shared.css */
      padding-top: var(--header-offset, 122px);
    }

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

    .page-8k8-apk__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-apk__section--dark {
      background-color: #2c3e50;
      color: #ffffff;
    }

    .page-8k8-apk__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #333333;
      font-weight: bold;
    }

    .page-8k8-apk__section--dark .page-8k8-apk__section-title {
      color: #ffffff;
    }

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

    /* Hero Section */
    .page-8k8-apk__hero-section {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 80px 0 60px; /* Decorative padding-top, body has main offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .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: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-apk__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-8k8-apk__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__cta-button {
      display: inline-block;
      background-color: #e74c3c; /* A vibrant red */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-apk__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-8k8-apk__features-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .page-8k8-apk__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Ensure no default list styling */
      padding: 0;
    }

    .page-8k8-apk__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-apk__feature-image {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #2c3e50;
    }

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

    /* Download Guide Section */
    .page-8k8-apk__download-guide-section {
      background-color: #ecf0f1;
      padding: 80px 0;
    }

    .page-8k8-apk__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      list-style: none; /* Ensure no default list styling */
      padding: 0;
    }

    .page-8k8-apk__step-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: left;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-apk__step-number {
      background-color: #3498db; /* Blue for steps */
      color: #ffffff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2em;
      font-weight: bold;
      flex-shrink: 0;
      margin-right: 20px;
    }

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

    .page-8k8-apk__step-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #2c3e50;
    }

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

    /* Game Offerings Section */
    .page-8k8-apk__games-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .page-8k8-apk__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Ensure no default list styling */
      padding: 0;
    }

    .page-8k8-apk__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-apk__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-apk__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-radius: 10px 10px 0 0;
    }

    .page-8k8-apk__game-title {
      font-size: 1.3em;
      padding: 15px;
      color: #2c3e50;
      font-weight: bold;
    }

    /* Payment Methods Section */
    .page-8k8-apk__payments-section {
      background-color: #f9f9f9;
      padding: 80px 0;
    }

    .page-8k8-apk__payments-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      list-style: none; /* Ensure no default list styling */
      padding: 0;
    }

    .page-8k8-apk__payment-item {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-apk__payment-image {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-8k8-apk__faq-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .page-8k8-apk__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      list-style: none; /* Ensure no default list styling */
      padding: 0;
    }

    .page-8k8-apk__faq-item {
      background-color: #f0f4f7;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

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

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

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Rotates the plus sign to an 'x' or similar */
    }

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555555;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-apk__hero-title {
        font-size: 2.5em;
      }

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

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

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

      .page-8k8-apk__features-grid,
      .page-8k8-apk__games-grid,
      .page-8k8-apk__payments-list,
      .page-8k8-apk__faq-list,
      .page-8k8-apk__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important; /* Adjust padding for smaller screens */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-apk__feature-item,
      .page-8k8-apk__game-card,
      .page-8k8-apk__payment-item,
      .page-8k8-apk__faq-item,
      .page-8k8-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-apk__game-image {
        height: 180px;
      }

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

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

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

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

    @media (max-width: 480px) {
      .page-8k8-apk__hero-section {
        padding-top: 60px;
      }
      .page-8k8-apk__hero-title {
        font-size: 2em;
      }
      .page-8k8-apk__hero-description {
        font-size: 1em;
      }
      .page-8k8-apk__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-apk__section {
        padding: 40px 0;
      }
      .page-8k8-apk__section-title {
        font-size: 1.8em;
      }
    }

    /* Image responsive styles */
    .page-8k8-apk img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-8k8-apk__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8k8-apk img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-apk__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  