
    :root {
      --page-8k8-apk-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-apk-secondary-color: #333333; /* Dark Gray */
      --page-8k8-apk-accent-color: #e04e1a; /* Orange Red */
      --page-8k8-apk-text-color: #f0f0f0; /* Light Gray */
      --page-8k8-apk-bg-color: #1a1a1a; /* Dark background */
      --page-8k8-apk-card-bg: #2a2a2a; /* Slightly lighter card background */
      --page-8k8-apk-border-radius: 8px;
      --page-8k8-apk-transition-speed: 0.3s;
    }

    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-apk-text-color);
      background-color: var(--page-8k8-apk-bg-color);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback 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-secondary-color);
    }

    .page-8k8-apk__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:mobile,casino,app]') no-repeat center center/cover;
      color: #fff;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding to avoid double offset */
    }

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

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

    .page-8k8-apk__download-button {
      display: inline-block;
      background-color: var(--page-8k8-apk-accent-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: var(--page-8k8-apk-border-radius);
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color var(--page-8k8-apk-transition-speed) ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-apk__download-button:hover {
      background-color: #c0392b;
    }

    .page-8k8-apk__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: var(--page-8k8-apk-border-radius);
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-apk__image-container img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-apk__title {
      font-size: 2.5em;
      color: var(--page-8k8-apk-primary-color);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-apk__subtitle {
      font-size: 1.6em;
      color: #fff;
      margin-bottom: 30px;
      text-align: center;
    }

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

    .page-8k8-apk__feature-card {
      background-color: var(--page-8k8-apk-card-bg);
      padding: 30px;
      border-radius: var(--page-8k8-apk-border-radius);
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform var(--page-8k8-apk-transition-speed) ease;
    }

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

    .page-8k8-apk__feature-icon {
      margin-bottom: 20px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-apk__feature-icon img {
      width: 200px; /* Minimum 200px */
      height: auto;
      max-width: 100%;
      border-radius: var(--page-8k8-apk-border-radius);
    }

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

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

    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-8k8-apk__step-item {
      background-color: var(--page-8k8-apk-card-bg);
      margin-bottom: 20px;
      padding: 25px;
      border-radius: var(--page-8k8-apk-border-radius);
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-apk__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-8k8-apk-primary-color);
      flex-shrink: 0;
    }

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

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

    .page-8k8-apk__step-description {
      font-size: 1em;
      color: var(--page-8k8-apk-text-color);
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-apk__faq-section {
      text-align: left;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-8k8-apk__faq-item {
      background-color: var(--page-8k8-apk-card-bg);
      margin-bottom: 15px;
      border-radius: var(--page-8k8-apk-border-radius);
      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: 20px 25px;
      background-color: var(--page-8k8-apk-secondary-color);
      cursor: pointer;
      user-select: none;
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color var(--page-8k8-apk-transition-speed) ease;
    }

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit;
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform var(--page-8k8-apk-transition-speed) ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: var(--page-8k8-apk-primary-color);
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, visually indicates open */
    }

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

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

    .page-8k8-apk__promo-cta {
      background-color: var(--page-8k8-apk-accent-color);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-apk__promo-cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
    }

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

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

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

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

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

      .page-8k8-apk__content-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-apk__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .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__promo-cta-title {
        font-size: 2em;
      }

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

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

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

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

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

      .page-8k8-apk__feature-description {
        font-size: 0.95em;
      }

      /* Image responsive styles */
      .page-8k8-apk__image-container img,
      .page-8k8-apk__feature-icon img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-apk__image-container,
      .page-8k8-apk__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  