
    /* Base styles for the page-8k8-app */
    .page-8k8-app {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-app__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-app__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-app__heading {
      text-align: center;
      margin-bottom: 30px;
      color: #2c3e50;
    }

    .page-8k8-app__section--dark .page-8k8-app__heading {
      color: #ecf0f1;
    }

    .page-8k8-app__heading h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #e74c3c;
    }

    .page-8k8-app__heading h2 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #3498db;
    }

    .page-8k8-app__heading h3 {
      font-size: 1.8em;
      margin-bottom: 10px;
      color: #27ae60;
    }

    .page-8k8-app__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-8k8-app__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 10px 20px 80px; /* Added 10px padding-top for header offset */
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

    .page-8k8-app__hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-app__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-app__download-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-app__hero-image {
      margin-top: 40px;
      max-width: 600px;
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-app__hero-image img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Features Section */
    .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: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-app__feature-icon {
      margin-bottom: 20px;
      width: 100%;
      max-width: 250px; /* Min 200x200px, so 250px is good */
      height: auto;
      border-radius: 8px;
      overflow: hidden;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-app__feature-icon img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-app__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #3498db;
    }

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

    /* How To Install Section */
    .page-8k8-app__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-app__step-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-8k8-app__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #e74c3c;
      flex-shrink: 0;
    }

    .page-8k8-app__step-content h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #2c3e50;
    }

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

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

    .page-8k8-app__game-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-app__game-info {
      padding: 20px;
      text-align: center;
    }

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

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

    /* Promotions Section */
    .page-8k8-app__promo-content {
      background-color: #ecf0f1;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-app__promo-content h3 {
      font-size: 2em;
      color: #e74c3c;
      margin-bottom: 20px;
    }

    .page-8k8-app__promo-content p {
      font-size: 1.1em;
      color: #333;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    /* FAQ Section */
    .page-8k8-app__faq-container {
      margin-top: 30px;
    }

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

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

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

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

    .page-8k8-app__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-8k8-app__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.3s ease;
      color: #555;
    }

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

    .page-8k8-app__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-app__section {
        padding: 30px 15px;
      }

      .page-8k8-app__hero-section {
        padding: 10px 15px 60px;
      }

      .page-8k8-app__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-app__heading h1 {
        font-size: 2.2em;
      }

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

      .page-8k8-app__heading h3 {
        font-size: 1.5em;
      }

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

      .page-8k8-app__feature-item,
      .page-8k8-app__step-item,
      .page-8k8-app__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-app__feature-icon,
      .page-8k8-app__game-image,
      .page-8k8-app__hero-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-8k8-app__feature-icon img,
      .page-8k8-app__game-image img,
      .page-8k8-app__hero-image img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-app__promo-content {
        padding: 30px 20px;
      }

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

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

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

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

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

      /* Ensure text wraps */
      .page-8k8-app p, .page-8k8-app li, .page-8k8-app__feature-description, .page-8k8-app__step-content p, .page-8k8-app__game-description, .page-8k8-app__promo-content p, .page-8k8-app__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-app__hero-title {
        font-size: 2em;
      }
      .page-8k8-app__hero-description {
        font-size: 0.95em;
      }
      .page-8k8-app__download-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  