
    /* General styles for the page-8k8-app4 */
    .page-8k8-app4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Small top padding for the first section, assuming body has header offset */
    }

    /* Section styling */
    .page-8k8-app4__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;
    }

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

    .page-8k8-app4__section-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-8k8-app4__section--dark .page-8k8-app4__section-title {
      color: #ecf0f1;
    }

    .page-8k8-app4__section-subtitle {
      text-align: center;
      color: #555;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    .page-8k8-app4__section--dark .page-8k8-app4__section-subtitle {
      color: #bdc3c7;
    }

    /* Hero Section */
    .page-8k8-app4__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #3498db, #8e44ad);
      color: #fff;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-8k8-app4__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.1;
      color: #fff;
    }

    .page-8k8-app4__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-8k8-app4__cta-button {
      display: inline-block;
      background-color: #f1c40f;
      color: #2c3e50;
      padding: 15px 30px;
      border-radius: 5px;
      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-app4__cta-button:hover {
      background-color: #f39c12;
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-8k8-app4__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-8k8-app4__feature-item {
      padding: 25px;
      background-color: #ecf0f1;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-app4__feature-icon {
      width: 80px; /* Min 200x200px image will be scaled */
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

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

    /* Download Steps Section */
    .page-8k8-app4__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-app4__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-app4__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #3498db;
      margin-right: 20px;
      flex-shrink: 0;
      width: 40px;
      text-align: center;
    }

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

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

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

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

    .page-8k8-app4__game-card {
      background-color: #ecf0f1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

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

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

    .page-8k8-app4__game-info {
      padding: 15px;
      text-align: center;
    }

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

    .page-8k8-app4__game-provider {
      font-size: 0.9em;
      color: #777;
    }

    /* FAQ Section */
    .page-8k8-app4__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

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

    .page-8k8-app4__faq-question:hover {
      background-color: #2980b9;
    }

    .page-8k8-app4__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff; /* Ensure contrast */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-app4__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-8k8-app4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #fefefe;
      color: #333; /* Ensure contrast */
    }

    .page-8k8-app4__faq-item.active .page-8k8-app4__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 15px !important; /* Use !important as required */
      opacity: 1;
    }

    /* General image styling */
    .page-8k8-app4 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

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

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

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

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

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

      .page-8k8-app4__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

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

      /* List item mobile responsiveness */
      .page-8k8-app4__steps-list,
      .page-8k8-app4__features-grid,
      .page-8k8-app4__games-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding to prevent overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-app4__step-item,
      .page-8k8-app4__feature-item,
      .page-8k8-app4__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness for mobile */
      .page-8k8-app4 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-app4__feature-icon {
        width: 100% !important;
        max-width: 100px !important; /* Adjust if needed, but maintain min 200x200 source */
        height: auto !important;
      }

      .page-8k8-app4__game-image {
        max-width: 100% !important;
        height: 150px !important; /* Adjust height for mobile if needed */
      }
    }
  