
    :root {
      --page-8k8-apk-primary-color: #f7b731; /* Golden Yellow */
      --page-8k8-apk-secondary-color: #333; /* Dark Grey */
      --page-8k8-apk-accent-color: #e55; /* Reddish-Orange */
      --page-8k8-apk-text-color: #eee; /* Light Grey */
      --page-8k8-apk-dark-bg: #1a1a1a; /* Very Dark Grey */
      --page-8k8-apk-light-bg: #2a2a2a; /* Slightly Lighter Dark Grey */
      --page-8k8-apk-border-color: #444;
      --page-8k8-apk-font-family: 'Arial', sans-serif;
      --page-8k8-apk-border-radius: 8px;
    }

    .page-8k8-apk {
      font-family: var(--page-8k8-apk-font-family);
      color: var(--page-8k8-apk-text-color);
      background-color: var(--page-8k8-apk-dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, relying on body for header offset */
    }

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

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

    .page-8k8-apk__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 500px;
      position: relative;
    }

    .page-8k8-apk__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Slightly darken background image */
    }

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

    .page-8k8-apk__hero-subtitle {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 800px;
    }

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

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

    .page-8k8-apk__heading {
      font-size: 2.2em;
      color: var(--page-8k8-apk-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-apk__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .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);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-8k8-apk-border-color);
    }

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

    .page-8k8-apk__feature-icon {
      width: 60px; /* Min size 200x200, so this is for the visual presentation */
      height: 60px;
      margin-bottom: 20px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .page-8k8-apk__feature-image-container {
      width: 100%;
      max-width: 200px; /* Ensure images are not too big for icons, but still meet min size */
      height: auto;
      margin: 0 auto 20px auto;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-apk__feature-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      border-radius: 4px;
      box-sizing: border-box;
    }

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

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

    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-apk__step-item {
      background-color: var(--page-8k8-apk-light-bg);
      padding: 30px;
      border-radius: var(--page-8k8-apk-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--page-8k8-apk-border-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-apk__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-apk-accent-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

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

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

    .page-8k8-apk__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-apk__provider-logo {
      width: 150px;
      height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-8k8-apk__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-8k8-apk__promo-card {
      background-color: var(--page-8k8-apk-light-bg);
      padding: 30px;
      border-radius: var(--page-8k8-apk-border-radius);
      margin-top: 40px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--page-8k8-apk-border-color);
    }

    .page-8k8-apk__promo-title {
      font-size: 2em;
      color: var(--page-8k8-apk-accent-color);
      margin-bottom: 15px;
    }

    .page-8k8-apk__promo-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 25px;
    }

    .page-8k8-apk__faq-container {
      margin-top: 40px;
      text-align: left;
    }

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

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-8k8-apk-secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-apk-primary-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-apk-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
      line-height: 1;
    }

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

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

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

    .page-8k8-apk__app-screenshot-wrapper {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-apk__app-screenshot {
      max-width: 100%;
      width: 400px; /* Example fixed width */
      height: auto;
      border-radius: var(--page-8k8-apk-border-radius);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
      border: 3px solid var(--page-8k8-apk-primary-color);
    }

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

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

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

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

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

      .page-8k8-apk__feature-item,
      .page-8k8-apk__step-item {
        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__feature-description,
      .page-8k8-apk__step-description,
      .page-8k8-apk__text-content,
      .page-8k8-apk__promo-description,
      .page-8k8-apk__faq-answer {
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

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

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

      .page-8k8-apk__provider-logo {
        width: 120px;
        height: 60px;
      }

      .page-8k8-apk__app-screenshot {
        width: 100%;
        max-width: 300px;
      }
      
      .page-8k8-apk__feature-image-container {
        width: 100%;
        max-width: 150px; /* Adjust for mobile if needed */
        box-sizing: border-box !important;
      }
      .page-8k8-apk__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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

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

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

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