
    /* Base styles for the page */
    .page-8k8-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Section styling */
    .page-8k8-app__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-app__section-title {
      text-align: center;
      color: #0056b3;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    /* Hero Section */
    .page-8k8-app__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 50px 20px 30px; /* Small padding-top for aesthetic space */
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      border-radius: 0; /* No border-radius for hero to span full width */
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-8k8-app__hero-content {
      max-width: 800px;
      margin-bottom: 30px;
    }

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

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

    .page-8k8-app__download-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-app__download-btn {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      white-space: nowrap;
    }

    .page-8k8-app__download-btn:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-8k8-app__hero-image-wrapper {
      width: 100%;
      max-width: 600px;
      margin-top: 40px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-app__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Features Section */
    .page-8k8-app__features-section {
      background-color: #f0f8ff;
      padding: 60px 20px;
    }

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

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

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

    .page-8k8-app__feature-icon {
      width: 250px; /* Min 200px */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-app__feature-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 10px;
    }

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

    /* Download Guide Section */
    .page-8k8-app__download-guide-section {
      background-color: #fff;
    }

    .page-8k8-app__download-steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 40px;
    }

    .page-8k8-app__step-item {
      display: flex;
      align-items: center;
      background-color: #fefefe;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-app__step-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-app__step-image-wrapper {
      flex: 0 0 40%;
      max-width: 40%;
      padding: 20px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-8k8-app__step-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-app__step-content {
      flex: 1;
      padding: 0 20px;
    }

    .page-8k8-app__step-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 10px;
    }

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

    /* Games Section */
    .page-8k8-app__games-section {
      background-color: #f0f8ff;
    }

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

    .page-8k8-app__game-category {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-app__game-category:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-app__game-image-wrapper {
      width: 100%;
      height: 250px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-8k8-app__game-info {
      padding: 25px;
    }

    .page-8k8-app__game-title {
      font-size: 1.6em;
      color: #007bff;
      margin-bottom: 10px;
    }

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

    /* Payment Section */
    .page-8k8-app__payment-section {
      background-color: #fff;
    }

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

    .page-8k8-app__payment-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      width: 100%; /* Ensure it respects grid column */
    }

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

    .page-8k8-app__payment-logo {
      width: 250px; /* Min 200px */
      height: auto;
      max-width: 100%;
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-8k8-app__faq-section {
      background-color: #f0f8ff;
    }

    .page-8k8-app__faq-container {
      margin-top: 40px;
    }

    .page-8k8-app__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-8k8-app__faq-heading {
      font-size: 1.3em;
      color: #0056b3;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .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;
      color: #444;
      font-size: 1.05em;
    }

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

    /* Call to Action Section */
    .page-8k8-app__cta-section {
      text-align: center;
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #fff;
      padding: 60px 20px;
    }

    .page-8k8-app__cta-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
    }

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

    .page-8k8-app__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-app__cta-btn {
      background-color: #ffc107;
      color: #333;
      padding: 15px 35px;
      border: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      white-space: nowrap;
    }

    .page-8k8-app__cta-btn:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-app__hero-title {
        font-size: 3em;
      }
      .page-8k8-app__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-app__section-title {
        font-size: 2em;
      }
      .page-8k8-app__step-item {
        flex-direction: column;
        text-align: center;
      }
      .page-8k8-app__step-item:nth-child(even) {
        flex-direction: column;
      }
      .page-8k8-app__step-image-wrapper {
        max-width: 80%;
        margin-bottom: 20px;
      }
      .page-8k8-app__step-content {
        padding: 0;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-app__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }
      .page-8k8-app__hero-section {
        padding: 40px 15px 20px;
      }
      .page-8k8-app__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-app__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-app__download-btn {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-app__section-title {
        font-size: 1.8em;
      }
      .page-8k8-app__features-section,
      .page-8k8-app__download-guide-section,
      .page-8k8-app__games-section,
      .page-8k8-app__payment-section,
      .page-8k8-app__faq-section,
      .page-8k8-app__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-app__feature-title {
        font-size: 1.6em;
      }
      .page-8k8-app__step-title {
        font-size: 1.6em;
      }
      .page-8k8-app__game-title {
        font-size: 1.4em;
      }

      /* List item responsive requirements */
      .page-8k8-app__payment-list {
        grid-template-columns: 1fr; /* Stack items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-app__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-app__payment-name {
        word-break: break-word !important;
      }

      .page-8k8-app__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-app__faq-heading {
        font-size: 1.1em;
      }
      .page-8k8-app__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-app__faq-item.active .page-8k8-app__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-app__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-app__cta-description {
        font-size: 1.2em;
      }
      .page-8k8-app__cta-btn {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-app__hero-title {
        font-size: 2em;
      }
      .page-8k8-app__hero-description {
        font-size: 1em;
      }
      .page-8k8-app__download-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-app__section-title {
        font-size: 1.5em;
      }
      .page-8k8-app__feature-icon {
        width: 200px; /* Min size */
      }
      .page-8k8-app__feature-title {
        font-size: 1.4em;
      }
      .page-8k8-app__step-image-wrapper {
        max-width: 100%;
      }
      .page-8k8-app__game-image {
        height: 200px;
      }
      .page-8k8-app__payment-logo {
        width: 200px; /* Min size */
      }
      .page-8k8-app__faq-heading {
        font-size: 1em;
      }
      .page-8k8-app__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-app__cta-description {
        font-size: 1em;
      }
      .page-8k8-app__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
    }
  