
    /* Page-specific CSS for 8k8.com download page */
    :root {
      --page-8k8-2-primary-color: #FFD700; /* Gold */
      --page-8k8-2-secondary-color: #000000; /* Black */
      --page-8k8-2-text-color: #E0E0E0; /* Light Gray for contrast */
      --page-8k8-2-accent-color: #FF4500; /* OrangeRed */
      --page-8k8-2-background-dark: #1a1a1a;
      --page-8k8-2-background-light: #2a2a2a;
      --page-8k8-2-border-color: #333333;
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-2-text-color);
      background-color: var(--page-8k8-2-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding as per instruction */
    }

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

    .page-8k8-2__hero-section {
      background: var(--page-8k8-2-background-light);
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

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

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

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

    .page-8k8-2__hero-subtitle {
      color: var(--page-8k8-2-text-color);
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-2__download-button {
      display: inline-block;
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer; /* Use cursor pointer for button-like behavior */
      border: none;
    }

    .page-8k8-2__download-button:hover {
      background-color: #FF6347; /* Slightly lighter orange-red */
      transform: translateY(-3px);
    }

    .page-8k8-2__section {
      background-color: var(--page-8k8-2-background-light);
      padding: 40px;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-8k8-2__section-title {
      color: var(--page-8k8-2-primary-color);
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-2__card {
      background-color: var(--page-8k8-2-background-dark);
      border: 1px solid var(--page-8k8-2-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-2__card-icon {
      width: 250px; /* Minimum 200x200 */
      height: 250px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

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

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

    .page-8k8-2__step-item {
      background-color: var(--page-8k8-2-background-dark);
      border: 1px solid var(--page-8k8-2-border-color);
      border-radius: 8px;
      padding: 20px 25px;
      display: flex;
      align-items: center;
      position: relative;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-2__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: var(--page-8k8-2-primary-color);
      color: var(--page-8k8-2-secondary-color);
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 20px;
    }

    .page-8k8-2__step-content h3 {
      color: var(--page-8k8-2-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-8k8-2__step-content p {
      color: var(--page-8k8-2-text-color);
      margin-bottom: 0;
    }

    .page-8k8-2__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-2__provider-logo {
      width: 200px; /* Minimum 200x200 */
      height: 100px;
      object-fit: contain;
      background-color: #333;
      padding: 10px;
      border-radius: 5px;
      transition: transform 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-2__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-2__faq-section {
      background-color: var(--page-8k8-2-background-light);
      padding: 40px;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-8k8-2__faq-title {
      color: var(--page-8k8-2-primary-color);
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-2__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      pointer-events: none; /* Crucial for click handling */
    }

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

    .page-8k8-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Crucial for click handling */
      transition: transform 0.3s ease;
      color: var(--page-8k8-2-accent-color);
    }

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

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

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-2__final-cta {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-8k8-2-background-light);
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-8k8-2__final-cta h2 {
      color: var(--page-8k8-2-primary-color);
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-8k8-2__final-cta p {
      color: var(--page-8k8-2-text-color);
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-2__hero-title {
        font-size: 3em;
      }
      .page-8k8-2__section-title, .page-8k8-2__faq-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__container {
        padding: 15px;
      }
      .page-8k8-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-2__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-2__section {
        padding: 30px 20px;
      }
      .page-8k8-2__section-title, .page-8k8-2__faq-title {
        font-size: 2em;
      }
      .page-8k8-2__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-2__card-icon {
        width: 200px; /* Ensure minimum size */
        height: 200px;
      }
      .page-8k8-2__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        box-sizing: border-box !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
      }
      .page-8k8-2__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-2__step-content {
        text-align: left;
        width: 100%;
      }
      .page-8k8-2__step-content p {
        word-wrap: break-word !important; /* Text wrapping for lists */
        overflow-wrap: break-word !important; /* Text wrapping for lists */
        word-break: break-word !important; /* Text wrapping for lists */
      }
      .page-8k8-2__steps-list {
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        box-sizing: border-box !important; /* List container responsive */
        padding: 0 !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
      }
      .page-8k8-2__provider-logo {
        width: 150px;
        height: 75px;
      }
      .page-8k8-2__faq-question {
        padding: 15px 20px;
        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__final-cta h2 {
        font-size: 1.8em;
      }
      .page-8k8-2__final-cta p {
        font-size: 1em;
      }

      /* Image responsive rules */
      .page-8k8-2__hero-background-image,
      .page-8k8-2__card-icon,
      .page-8k8-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* Ensure image containers are also responsive */
      .page-8k8-2__card,
      .page-8k8-2__game-providers {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-2__download-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-2__section-title, .page-8k8-2__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-2__card-title {
        font-size: 1.3em;
      }
      .page-8k8-2__faq-question {
        font-size: 1em;
      }
    }
  