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

    .page-8k8-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-2__section {
      padding: 60px 0;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-8k8-2__section--dark h2,
    .page-8k8-2__section--dark h3 {
      color: #ecf0f1;
    }

    .page-8k8-2__heading {
      font-size: 2.8em;
      color: #2c3e50;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-2__subheading {
      font-size: 1.8em;
      color: #34495e;
      margin-bottom: 15px;
    }

    .page-8k8-2__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__button {
      display: inline-block;
      background-color: #e74c3c; /* Red for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin: 10px;
    }

    .page-8k8-2__button:hover {
      background-color: #c0392b;
    }

    .page-8k8-2__button--secondary {
      background-color: #3498db; /* Blue for secondary action */
    }

    .page-8k8-2__button--secondary:hover {
      background-color: #2980b9;
    }

    /* Hero Section */
    .page-8k8-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:8k8,download,app,casino,mobile_gaming]') center/cover no-repeat;
      color: #fff;
      padding: 100px 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-8k8-2__hero-heading {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #fff;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__hero-description {
      font-size: 1.4em;
      max-width: 900px;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Features/Benefits Grid */
    .page-8k8-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-2__feature-item {
      background-color: #ecf0f1;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-2__feature-icon {
      width: 200px; /* Minimum 200x200 */
      height: 200px; /* Minimum 200x200 */
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-2__feature-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__feature-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Download Steps */
    .page-8k8-2__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-2__step-item {
      background-color: #fdfdfd;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      width: calc(33.333% - 20px); /* Adjust for 3 columns on desktop */
      min-width: 300px;
      box-sizing: border-box;
      position: relative;
      padding-left: 70px; /* Space for step number */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__step-number {
      position: absolute;
      left: 20px;
      top: 25px;
      font-size: 2em;
      font-weight: bold;
      color: #e74c3c;
      background-color: #fce7e5;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-2__step-title {
      font-size: 1.3em;
      color: #34495e;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__step-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* App Screenshots */
    .page-8k8-2__screenshots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-2__screenshot-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-8k8-2__screenshot-image {
      width: 100%;
      height: 400px; /* Fixed height for consistency, object-fit will handle aspect ratio */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Device compatibility */
    .page-8k8-2__devices-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-2__device-item {
      text-align: center;
      flex: 1 1 150px;
      max-width: 180px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__device-image {
      width: 200px; /* Minimum 200x200 */
      height: 200px; /* Minimum 200x200 */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-2__device-name {
      font-size: 1.2em;
      font-weight: bold;
      color: #34495e;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-2__faq-section {
      padding: 60px 0;
      background-color: #f8f8f8;
    }

    .page-8k8-2__faq-heading {
      font-size: 2.5em;
      color: #2c3e50;
      margin-bottom: 40px;
      text-align: center;
    }

    .page-8k8-2__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-2__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);
      box-sizing: border-box;
    }

    .page-8k8-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

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

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #34495e;
      pointer-events: none; /* Prevent h3 from intercepting click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      flex-shrink: 0;
      margin-left: 10px;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0 to animate */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
      color: #555;
      box-sizing: border-box;
    }

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

    .page-8k8-2__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-8k8-2__hero-heading {
        font-size: 3em;
      }
      .page-8k8-2__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-2__heading {
        font-size: 2.2em;
      }
      .page-8k8-2__subheading {
        font-size: 1.5em;
      }
      .page-8k8-2__step-item {
        width: calc(50% - 20px); /* 2 columns on medium screens */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-8k8-2__hero-heading {
        font-size: 2.5em;
      }
      .page-8k8-2__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-2__heading {
        font-size: 2em;
      }
      .page-8k8-2__subheading {
        font-size: 1.3em;
      }
      .page-8k8-2__section {
        padding: 40px 0;
      }
      .page-8k8-2__features-grid,
      .page-8k8-2__screenshots-grid {
        grid-template-columns: 1fr; /* Single column for all grids/lists */
        gap: 20px;
      }
      .page-8k8-2__steps-list,
      .page-8k8-2__devices-list,
      .page-8k8-2__faq-list {
        flex-direction: column; /* Ensure vertical stacking for lists */
        align-items: center; /* Center items if they are not full width */
      }
      .page-8k8-2__step-item,
      .page-8k8-2__feature-item,
      .page-8k8-2__device-item,
      .page-8k8-2__faq-item {
        width: 100% !important; /* Full width for single column */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 70px; /* Keep space for step number, adjust if needed */
        padding-right: 20px;
      }
      .page-8k8-2__feature-item {
        padding-left: 20px; /* Reset padding for feature items */
      }
      .page-8k8-2__feature-icon,
      .page-8k8-2__device-image,
      .page-8k8-2__screenshot-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-2__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-2__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-2__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-2__paragraph {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-heading {
        font-size: 2em;
      }
      .page-8k8-2__hero-description {
        font-size: 1em;
      }
      .page-8k8-2__heading {
        font-size: 1.8em;
      }
      .page-8k8-2__subheading {
        font-size: 1.2em;
      }
      .page-8k8-2__step-item {
        padding-left: 60px; /* Adjust for smaller screens */
      }
      .page-8k8-2__step-number {
        left: 15px;
        top: 20px;
        font-size: 1.8em;
        width: 35px;
        height: 35px;
      }
    }
  