
    :root {
      --page-8k8-2-primary-color: #e44d26; /* A vibrant red/orange */
      --page-8k8-2-secondary-color: #f9f9f9;
      --page-8k8-2-dark-text: #333;
      --page-8k8-2-light-text: #fff;
      --page-8k8-2-accent-color: #007bff; /* Blue for links/buttons */
      --page-8k8-2-border-color: #eee;
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-2-dark-text);
      background-color: var(--page-8k8-2-secondary-color);
    }

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

    .page-8k8-2__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-8k8-2-light-text);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-2__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-2-primary-color), #ff6f4e);
      color: var(--page-8k8-2-light-text);
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 0;
      padding-top: 10px; /* Decorative top spacing, relying on body padding for header offset */
    }

    .page-8k8-2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--page-8k8-2-light-text);
      word-wrap: break-word;
    }

    .page-8k8-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-2-light-text);
    }

    .page-8k8-2__download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .page-8k8-2__download-button {
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-light-text);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-2__download-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-2__hero-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      object-fit: cover;
    }

    .page-8k8-2__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-2-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      word-wrap: break-word;
    }

    .page-8k8-2__feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 0;
      list-style: none;
    }

    .page-8k8-2__feature-item {
      flex: 1 1 calc(33% - 40px);
      background-color: var(--page-8k8-2-secondary-color);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
      min-width: 280px;
      box-sizing: border-box;
      border: 1px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__feature-item-title {
      font-size: 1.5em;
      color: var(--page-8k8-2-dark-text);
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-8k8-2__feature-item-description {
      font-size: 1em;
      color: var(--page-8k8-2-dark-text);
    }

    .page-8k8-2__how-to-download {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .page-8k8-2__platform-guide {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .page-8k8-2__platform-guide:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-2__platform-image-wrapper {
      flex: 1;
      min-width: 300px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-2__platform-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-8k8-2__platform-steps {
      flex: 2;
      box-sizing: border-box;
    }

    .page-8k8-2__platform-title {
      font-size: 1.8em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 20px;
      word-wrap: break-word;
    }

    .page-8k8-2__step-list {
      list-style: none;
      padding: 0;
    }

    .page-8k8-2__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--page-8k8-2-dark-text);
      word-wrap: break-word;
      box-sizing: border-box;
    }

    .page-8k8-2__step-number {
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-light-text);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-8k8-2__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-8k8-2__game-card {
      background-color: var(--page-8k8-2-secondary-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      border: 1px solid var(--page-8k8-2-border-color);
    }

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

    .page-8k8-2__game-title {
      font-size: 1.2em;
      color: var(--page-8k8-2-dark-text);
      padding: 15px;
      word-wrap: break-word;
    }

    .page-8k8-2__faq-section {
      background-color: var(--page-8k8-2-light-text);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-2__faq-item {
      border: 1px solid var(--page-8k8-2-border-color);
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-8k8-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-8k8-2-dark-text);
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      word-wrap: break-word;
    }

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

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

    .page-8k8-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--page-8k8-2-light-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-8k8-2-dark-text);
    }

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

    .page-8k8-2__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-8k8-2-primary-color);
      color: var(--page-8k8-2-light-text);
      border-radius: 8px;
      margin-top: 20px;
    }

    .page-8k8-2__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-2-light-text);
      word-wrap: break-word;
    }

    .page-8k8-2__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-2-light-text);
    }

    .page-8k8-2__cta-button {
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-light-text);
      padding: 15px 40px;
      border-radius: 5px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-2__cta-button:hover {
      background-color: #0056b3;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-2__feature-item {
        flex: 1 1 calc(50% - 30px);
      }
      .page-8k8-2__how-to-download {
        flex-direction: column;
      }
      .page-8k8-2__platform-guide:nth-child(even) {
        flex-direction: column;
      }
      .page-8k8-2__platform-guide {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-2__download-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-2__download-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-8k8-2__section-title {
        font-size: 1.8em;
      }
      .page-8k8-2__feature-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-2__feature-list {
        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-2__platform-image-wrapper {
        min-width: unset;
        width: 100%;
      }
      .page-8k8-2__platform-steps {
        width: 100%;
      }
      .page-8k8-2__platform-title {
        font-size: 1.5em;
      }
      .page-8k8-2__step-item {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-2__game-image {
        height: 150px;
      }
      .page-8k8-2__game-title {
        font-size: 1.1em;
      }
      .page-8k8-2__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-2__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-2__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px !important;
      }
      .page-8k8-2__cta-title {
        font-size: 2em;
      }
      .page-8k8-2__cta-description {
        font-size: 1em;
      }
      .page-8k8-2__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      /* Image responsive specific */
      .page-8k8-2__hero-image,
      .page-8k8-2__platform-image,
      .page-8k8-2__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-2__section {
        padding: 30px 15px;
      }
      .page-8k8-2__section-title {
        font-size: 1.6em;
      }
      .page-8k8-2__download-button {
        width: 90%;
      }
      .page-8k8-2__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-2__cta-button {
        font-size: 1em;
        padding: 10px 25px;
      }
    }
  