
    :root {
      --page-8k8-primary-color: #f7b32b; /* A golden yellow, good contrast */
      --page-8k8-secondary-color: #2c3e50; /* Dark blue/grey */
      --page-8k8-text-color: #333333;
      --page-8k8-light-text-color: #ffffff;
      --page-8k8-background-light: #f9f9f9;
      --page-8k8-background-dark: #1a1a1a;
      --page-8k8-border-color: #e0e0e0;
    }

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

    .page-8k8__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-8k8__section--dark .page-8k8__heading {
      color: var(--page-8k8-primary-color);
    }

    .page-8k8__heading {
      font-size: 2.8em;
      color: var(--page-8k8-secondary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-8k8__subheading {
      font-size: 2em;
      color: var(--page-8k8-secondary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8__button:hover {
      background-color: #e6a220; /* Slightly darker primary */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8__hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-8k8-light-text-color);
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

    .page-8k8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken image for text readability */
    }

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

    .page-8k8__hero-title {
      font-size: 3.8em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-8k8-primary-color);
      font-weight: bold;
    }

    .page-8k8__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Features Section */
    .page-8k8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8__feature-card {
      background-color: var(--page-8k8-light-text-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-8k8__feature-image {
      width: 100%;
      max-width: 250px; /* Adjust size for display */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
    }

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

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

    /* Download Section */
    .page-8k8__download-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8__download-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8__download-step {
      background-color: var(--page-8k8-light-text-color);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 280px;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-8k8__download-step-number {
      font-size: 2.5em;
      color: var(--page-8k8-primary-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8__download-step-title {
      font-size: 1.3em;
      color: var(--page-8k8-secondary-color);
      margin-bottom: 10px;
    }

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

    .page-8k8__qr-code {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Games Section */
    .page-8k8__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8__game-card {
      background-color: var(--page-8k8-light-text-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

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

    .page-8k8__game-info {
      padding: 20px;
    }

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

    .page-8k8__game-provider {
      font-size: 0.9em;
      color: #666;
    }

    /* Payment Methods */
    .page-8k8__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8__payment-item {
      background-color: var(--page-8k8-light-text-color);
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-8k8-secondary-color);
      font-size: 1.1em;
      box-sizing: border-box;
      flex: 0 1 auto;
      min-width: 120px;
      text-align: center;
    }

    /* FAQ Section */
    .page-8k8__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8__faq-item {
      background-color: var(--page-8k8-light-text-color);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

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

    .page-8k8__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-8k8-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      color: var(--page-8k8-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question, but top/bottom are 0 */
      color: var(--page-8k8-text-color);
      background-color: var(--page-8k8-light-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8k8__faq-item.active .page-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Top/bottom padding for expanded state */
      opacity: 1;
    }

    .page-8k8__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Space between paragraphs in answer */
    }

    .page-8k8__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-description {
        font-size: 1.2em;
      }
      .page-8k8__heading {
        font-size: 2.2em;
      }
      .page-8k8__subheading {
        font-size: 1.7em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8__hero-section {
        height: 450px;
      }
      .page-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8__hero-description {
        font-size: 1em;
      }
      .page-8k8__heading {
        font-size: 1.8em;
      }
      .page-8k8__subheading {
        font-size: 1.4em;
      }
      .page-8k8__section {
        padding: 40px 15px;
      }
      .page-8k8__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List item responsiveness */
      .page-8k8__features-grid,
      .page-8k8__download-steps,
      .page-8k8__games-grid,
      .page-8k8__payment-methods-grid {
        display: flex; /* Ensure flex for consistent behavior */
        flex-direction: column; /* Stack items vertically */
        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__feature-card,
      .page-8k8__download-step,
      .page-8k8__game-card,
      .page-8k8__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8__feature-image,
      .page-8k8__qr-code,
      .page-8k8__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8__faq-answer {
        padding: 0 20px;
      }
      .page-8k8__faq-item.active .page-8k8__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 2em;
      }
      .page-8k8__hero-description {
        font-size: 0.9em;
      }
      .page-8k8__heading {
        font-size: 1.5em;
      }
      .page-8k8__subheading {
        font-size: 1.2em;
      }
    }
  