
    :root {
      --page-8k8-2-primary-color: #007bff; /* A vibrant blue */
      --page-8k8-2-secondary-color: #6c757d; /* A muted grey */
      --page-8k8-2-accent-color: #ffc107; /* A bright yellow for highlights */
      --page-8k8-2-text-color: #343a40; /* Dark text for readability */
      --page-8k8-2-background-light: #f8f9fa; /* Light background */
      --page-8k8-2-background-dark: #212529; /* Dark background */
      --page-8k8-2-white: #ffffff;
      --page-8k8-2-border-color: #e0e0e0;
    }

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

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

    .page-8k8-2__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Minimal top padding, body handles main offset */
      color: var(--page-8k8-2-white);
      text-align: center;
      overflow: hidden;
      background-color: var(--page-8k8-2-background-dark);
    }

    .page-8k8-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.6; /* Ensure text readability */
    }

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

    .page-8k8-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-2-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-2__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-2-primary-color);
      color: var(--page-8k8-2-white);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-2__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-8k8-2__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-2-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-2-accent-color);
      border-radius: 2px;
    }

    .page-8k8-2__content-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-8k8-2__feature-item {
      background-color: var(--page-8k8-2-background-light);
      border: 1px solid var(--page-8k8-2-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-2__feature-icon {
      margin-bottom: 15px;
      max-width: 250px; /* Min size 200x200 */
      height: auto;
      border-radius: 8px;
    }

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

    .page-8k8-2__download-steps {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-2__download-step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: var(--page-8k8-2-white);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-2__step-number {
      counter-increment: step-counter;
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-2-primary-color);
      background-color: var(--page-8k8-2-accent-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      color: var(--page-8k8-2-white);
    }

    .page-8k8-2__step-number::before {
      content: counter(step-counter);
    }

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

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

    .page-8k8-2__step-description {
      color: var(--page-8k8-2-text-color);
    }

    .page-8k8-2__game-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      padding: 0;
      list-style: none;
      margin-top: 30px;
    }

    .page-8k8-2__provider-item {
      background-color: var(--page-8k8-2-background-light);
      border: 1px solid var(--page-8k8-2-border-color);
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-2__provider-logo {
      max-width: 150px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-8k8-2__provider-name {
      font-weight: bold;
      color: var(--page-8k8-2-primary-color);
      font-size: 1.1em;
    }

    .page-8k8-2__promo-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(135deg, var(--page-8k8-2-primary-color), #00aaff);
      color: var(--page-8k8-2-white);
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-2__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-2-accent-color);
    }

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

    .page-8k8-2__promo-button {
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-background-dark);
    }

    .page-8k8-2__promo-button:hover {
      background-color: #ffda6a;
    }

    /* FAQ Section Styles */
    .page-8k8-2__faq-section {
      padding: 40px 20px;
      background-color: var(--page-8k8-2-background-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

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

    .page-8k8-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-8k8-2-white);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }

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

    .page-8k8-2__faq-item.active .page-8k8-2__faq-question {
      border-bottom-color: var(--page-8k8-2-border-color);
    }

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-2-primary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-2-primary-color);
      width: 25px;
      text-align: center;
      flex-shrink: 0;
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

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

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

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

      .page-8k8-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-2__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-8k8-2__feature-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-2__feature-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-2__download-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        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;
      }

      .page-8k8-2__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-2__game-providers {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        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__provider-item {
        padding: 15px;
        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;
      }

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

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

      .page-8k8-2__faq-question {
        padding: 12px 15px;
      }

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

      .page-8k8-2__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-2__hero-section,
      .page-8k8-2__section,
      .page-8k8-2__promo-section,
      .page-8k8-2__faq-section {
        padding: 30px 15px;
      }

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

      .page-8k8-2__hero-background {
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }

      .page-8k8-2__feature-icon,
      .page-8k8-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  