
    /* Base styles for the 8k8 app page */
    .page-8k8-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
    }

    .page-8k8-app__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-app__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #2a0055; /* Dark violet, similar to brand colors */
      color: #fff;
      border-radius: 0;
      box-shadow: none;
      position: relative;
      overflow: hidden;
      padding-top: calc(60px + 10px); /* Adjust for the small decorative padding and potential body padding */
    }

    .page-8k8-app__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(42, 0, 85, 0.9), rgba(85, 0, 170, 0.9));
      z-index: 1;
    }

    .page-8k8-app__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-app__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffe047; /* Gold accent */
      line-height: 1.2;
    }

    .page-8k8-app__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-app__cta-button {
      display: inline-block;
      background-color: #ffe047; /* Gold accent */
      color: #2a0055; /* Dark violet */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-app__cta-button:hover {
      background-color: #ffc107; /* Darker gold on hover */
      transform: translateY(-2px);
    }

    .page-8k8-app__image-container {
      margin-top: 30px;
      text-align: center;
    }

    .page-8k8-app__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }

    .page-8k8-app__section-title {
      font-size: 2em;
      color: #2a0055;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-app__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffe047;
      border-radius: 2px;
    }

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

    .page-8k8-app__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-app__feature-icon {
      margin-bottom: 15px;
      max-width: 250px; /* Min size 200x200, so 250 is good */
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 8px;
    }

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

    .page-8k8-app__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-app__how-to-download-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-app__step-item {
      display: flex;
      align-items: center;
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-app__step-number {
      background-color: #2a0055;
      color: #ffe047;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-right: 20px;
    }

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

    .page-8k8-app__step-title {
      font-size: 1.3em;
      color: #2a0055;
      margin-bottom: 5px;
    }

    .page-8k8-app__step-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-8k8-app__promo-banner {
      background: linear-gradient(90deg, #2a0055, #5500aa);
      color: #fff;
      text-align: center;
      padding: 40px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-8k8-app__promo-title {
      font-size: 2.2em;
      color: #ffe047;
      margin-bottom: 15px;
    }

    .page-8k8-app__promo-text {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-app__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-app__payment-provider-item {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 180px; /* Max width for larger screens */
    }

    .page-8k8-app__payment-provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
      border-radius: 4px;
      min-width: 200px; /* Min size 200x200 */
      min-height: 200px; /* Min size 200x200 */
      object-fit: contain;
    }

    .page-8k8-app__payment-provider-name {
      font-size: 0.9em;
      color: #333;
      font-weight: bold;
    }

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

    .page-8k8-app__game-provider-item {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
      max-width: 220px;
    }

    .page-8k8-app__game-provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
      border-radius: 4px;
      min-width: 200px; /* Min size 200x200 */
      min-height: 200px; /* Min size 200x200 */
      object-fit: contain;
    }

    .page-8k8-app__game-provider-name {
      font-size: 0.95em;
      color: #333;
      font-weight: bold;
    }

    .page-8k8-app__faq-list {
      margin-top: 30px;
    }

    .page-8k8-app__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      color: #2a0055;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-app__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8k8-app__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      font-size: 1.1em;
      color: #2a0055;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: #ffe047;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

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

    .page-8k8-app__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;
      background-color: #fbfbfb;
      color: #555;
    }

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

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

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

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

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

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

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

      .page-8k8-app__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

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

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

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

      .page-8k8-app__promo-text {
        font-size: 1em;
      }

      .page-8k8-app__payment-providers-grid,
      .page-8k8-app__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* More compact on small screens */
        gap: 15px;
      }

      .page-8k8-app__payment-provider-item,
      .page-8k8-app__game-provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
      }

      .page-8k8-app__payment-provider-logo,
      .page-8k8-app__game-provider-logo {
        min-width: 150px; /* Adjust min-width for mobile */
        min-height: 150px; /* Adjust min-height for mobile */
      }

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

      .page-8k8-app__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-app__faq-answer {
        padding: 0 20px;
      }

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

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

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

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