
    :root {
      --page-8k8-2-primary-color: #e50914; /* A vibrant red for action */
      --page-8k8-2-secondary-color: #ffc107; /* A bright yellow for accents */
      --page-8k8-2-background-dark: #1a1a1a;
      --page-8k8-2-background-light: #2c2c2c;
      --page-8k8-2-text-light: #f0f0f0;
      --page-8k8-2-text-dark: #333333;
      --page-8k8-2-border-color: #444444;
      --page-8k8-2-transition-speed: 0.3s ease;
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-2-text-light);
      background-color: var(--page-8k8-2-background-dark);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8k8-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-2__section--dark {
      background-color: var(--page-8k8-2-background-light);
    }

    .page-8k8-2__section-title {
      font-size: 2.8em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-2__section-subtitle {
      font-size: 1.3em;
      color: var(--page-8k8-2-text-light);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-2__hero-section {
      padding-top: 10px; /* Small decorative padding after body offset */
      background-color: var(--page-8k8-2-background-dark);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      text-align: center;
    }

    .page-8k8-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-8k8-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-2__hero-title {
      font-size: 4em;
      color: var(--page-8k8-2-text-light);
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-2__hero-description {
      font-size: 1.5em;
      color: var(--page-8k8-2-text-light);
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-2__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-2-primary-color);
      color: var(--page-8k8-2-text-light);
      padding: 15px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color var(--page-8k8-2-transition-speed), transform var(--page-8k8-2-transition-speed);
      border: none;
      cursor: pointer;
    }

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

    /* How to Download Section */
    .page-8k8-2__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-8k8-2__step-item {
      background-color: var(--page-8k8-2-background-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      border: 1px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-2-secondary-color);
      font-weight: bold;
      margin-bottom: 15px;
      line-height: 1;
    }

    .page-8k8-2__step-title {
      font-size: 1.6em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-2__step-description {
      font-size: 1.1em;
      color: var(--page-8k8-2-text-light);
      margin-bottom: 20px;
    }

    .page-8k8-2__step-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: auto; /* Pushes image to bottom */
      border: 1px solid var(--page-8k8-2-border-color);
    }

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

    .page-8k8-2__benefit-item {
      background-color: var(--page-8k8-2-background-light);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      border: 1px solid var(--page-8k8-2-border-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-2__benefit-item h3 {
      font-size: 1.4em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-2__benefit-item p {
      font-size: 1em;
      color: var(--page-8k8-2-text-light);
    }

    .page-8k8-2__benefit-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 1px solid var(--page-8k8-2-border-color);
    }

    /* Game Offerings Section */
    .page-8k8-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 50px;
    }

    .page-8k8-2__game-card {
      background-color: var(--page-8k8-2-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform var(--page-8k8-2-transition-speed);
      border: 1px solid var(--page-8k8-2-border-color);
    }

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

    .page-8k8-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__game-info {
      padding: 20px;
    }

    .page-8k8-2__game-title {
      font-size: 1.3em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-2__game-description {
      font-size: 0.95em;
      color: var(--page-8k8-2-text-light);
    }

    /* Promotions Section */
    .page-8k8-2__promo-card {
      background-color: var(--page-8k8-2-background-light);
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      border: 1px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__promo-content h3 {
      font-size: 2em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-2__promo-content p {
      font-size: 1.1em;
      color: var(--page-8k8-2-text-light);
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-8k8-2__faq-list {
      margin-top: 50px;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-8k8-2__faq-item {
      background-color: var(--page-8k8-2-background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-8k8-2-border-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: var(--page-8k8-2-background-light);
      transition: background-color var(--page-8k8-2-transition-speed);
    }

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

    .page-8k8-2__faq-question h3 {
      font-size: 1.25em;
      color: var(--page-8k8-2-text-light);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.8em;
      color: var(--page-8k8-2-primary-color);
      font-weight: bold;
      transition: transform var(--page-8k8-2-transition-speed);
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      color: var(--page-8k8-2-text-light);
      text-align: left;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
      max-height: 2000px !important; /* Use !important to override */
      padding: 20px 15px !important; /* Use !important to override */
      opacity: 1;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text */
    }

    /* Final CTA Section */
    .page-8k8-2__final-cta {
      background-color: var(--page-8k8-2-primary-color);
      color: var(--page-8k8-2-text-light);
      padding: 80px 20px;
      text-align: center;
    }

    .page-8k8-2__final-cta-title {
      font-size: 3em;
      margin-bottom: 20px;
    }

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

    /* Image responsive styles */
    .page-8k8-2 img {
      max-width: 100%;
      height: auto;
      display: block; /* Prevents extra space below images */
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-2__section {
        padding: 40px 15px;
      }

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

      .page-8k8-2__section-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-2__hero-section {
        min-height: 450px;
      }

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

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

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

      .page-8k8-2__steps-grid,
      .page-8k8-2__benefits-list,
      .page-8k8-2__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-2__benefit-item,
      .page-8k8-2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-8k8-2__benefits-list,
      .page-8k8-2__faq-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__step-item {
        padding: 25px;
      }

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

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

      .page-8k8-2__game-image {
        height: 180px;
      }

      .page-8k8-2__promo-card {
        padding: 30px;
      }

      .page-8k8-2__promo-content h3 {
        font-size: 1.8em;
      }

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

      .page-8k8-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-2__faq-answer {
        font-size: 0.95em;
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }

      .page-8k8-2__final-cta {
        padding: 60px 15px;
      }

      .page-8k8-2__final-cta-title {
        font-size: 2.2em;
      }

      .page-8k8-2__final-cta-description {
        font-size: 1.1em;
      }

      /* Ensure all images are responsive */
      .page-8k8-2__hero-background,
      .page-8k8-2__step-image,
      .page-8k8-2__benefit-image,
      .page-8k8-2__game-image,
      .page-8k8-2__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Ensure text in list items wraps */
      .page-8k8-2__benefit-item p,
      .page-8k8-2__faq-answer p,
      .page-8k8-2__step-description {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }
  