
    :root {
      --page-8k8-9-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-9-secondary-color: #333333; /* Dark Grey */
      --page-8k8-9-background-dark: #1a1a1a; /* Very Dark Grey */
      --page-8k8-9-text-light: #ffffff; /* White */
      --page-8k8-9-text-dark: #000000; /* Black */
      --page-8k8-9-accent-color: #e60000; /* Red for alerts/buttons */
      --page-8k8-9-border-radius: 8px;
      --page-8k8-9-spacing-small: 10px;
      --page-8k8-9-spacing-medium: 20px;
      --page-8k8-9-spacing-large: 40px;
    }

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

    .page-8k8-9__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--page-8k8-9-spacing-medium);
      box-sizing: border-box;
    }

    .page-8k8-9__hero-section {
      background-color: #000;
      color: var(--page-8k8-9-text-light);
      text-align: center;
      padding: 10px 0 var(--page-8k8-9-spacing-large) 0; /* Add 10px top padding for header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

    .page-8k8-9__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: var(--page-8k8-9-spacing-medium);
    }

    .page-8k8-9__hero-title {
      font-size: 3.5em;
      margin-bottom: var(--page-8k8-9-spacing-small);
      color: var(--page-8k8-9-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-9__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: var(--page-8k8-9-spacing-large);
      color: #ccc;
    }

    .page-8k8-9__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-9-accent-color);
      color: var(--page-8k8-9-text-light);
      padding: 15px 30px;
      border-radius: var(--page-8k8-9-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-9__cta-button:hover {
      background-color: #cc0000;
    }

    .page-8k8-9__section {
      padding: var(--page-8k8-9-spacing-large) 0;
      text-align: center;
      background-color: var(--page-8k8-9-background-dark);
    }

    .page-8k8-9__section:nth-of-type(even) {
      background-color: var(--page-8k8-9-secondary-color);
    }

    .page-8k8-9__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: var(--page-8k8-9-spacing-large);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-9__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto var(--page-8k8-9-spacing-large) auto;
      color: #ccc;
    }

    .page-8k8-9__features-grid,
    .page-8k8-9__game-grid,
    .page-8k8-9__steps-grid,
    .page-8k8-9__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-8k8-9-spacing-medium);
      margin-top: var(--page-8k8-9-spacing-large);
    }

    .page-8k8-9__feature-card,
    .page-8k8-9__game-card,
    .page-8k8-9__step-card,
    .page-8k8-9__payment-item {
      background-color: #2a2a2a;
      padding: var(--page-8k8-9-spacing-medium);
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box;
    }

    .page-8k8-9__feature-image,
    .page-8k8-9__game-image,
    .page-8k8-9__step-image,
    .page-8k8-9__payment-logo {
      width: 100%;
      max-width: 300px; /* Ensure images are not too small */
      height: auto;
      border-radius: var(--page-8k8-9-border-radius);
      margin-bottom: var(--page-8k8-9-spacing-small);
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-8k8-9__feature-title,
    .page-8k8-9__game-title,
    .page-8k8-9__step-title,
    .page-8k8-9__payment-name {
      font-size: 1.4em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: var(--page-8k8-9-spacing-small);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-9__feature-description,
    .page-8k8-9__game-description,
    .page-8k8-9__step-description {
      font-size: 1em;
      color: #ccc;
      flex-grow: 1; /* Allow description to take available space */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-9__promo-link {
      color: var(--page-8k8-9-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-9__promo-link:hover {
      color: #fff;
    }

    /* FAQ Section */
    .page-8k8-9__faq-section {
      background-color: var(--page-8k8-9-secondary-color);
      padding: var(--page-8k8-9-spacing-large) 0;
    }

    .page-8k8-9__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-8k8-9__faq-item {
      background-color: #2a2a2a;
      margin-bottom: var(--page-8k8-9-spacing-small);
      border-radius: var(--page-8k8-9-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      color: var(--page-8k8-9-text-light);
      transition: background-color 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-8k8-9__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-8k8-9__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-9-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
      word-wrap: break-word;
      overflow-wrap: break-word;
      text-align: left;
      flex-grow: 1;
    }

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

    .page-8k8-9__faq-item.active .page-8k8-9__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-9__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      text-align: left;
    }

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

    .page-8k8-9__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* General text styling */
    .page-8k8-9 p {
      margin-bottom: var(--page-8k8-9-spacing-small);
    }

    .page-8k8-9 strong {
      color: var(--page-8k8-9-primary-color);
    }

    .page-8k8-9__social-proof {
      padding: var(--page-8k8-9-spacing-large) 0;
      background-color: var(--page-8k8-9-background-dark);
    }

    .page-8k8-9__social-item {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--page-8k8-9-spacing-small);
    }

    .page-8k8-9__social-logo {
      width: 60px; /* Min size 200x200 is for content images, not small decorative logos, but I need to make sure I use a large enough placeholder for these. */
      height: auto;
      max-width: 200px; /* Setting max-width to 200px to meet the minimum size requirement for the placeholder */
      margin-right: 15px;
      border-radius: 50%;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-9__social-text {
      font-size: 1.1em;
      color: #ccc;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-9__container {
        padding: var(--page-8k8-9-spacing-small);
      }

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

      .page-8k8-9__hero-subtitle {
        font-size: 1.2em;
      }

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

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

      .page-8k8-9__features-grid,
      .page-8k8-9__game-grid,
      .page-8k8-9__steps-grid,
      .page-8k8-9__payments-grid {
        grid-template-columns: 1fr;
        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-9__feature-card,
      .page-8k8-9__game-card,
      .page-8k8-9__step-card,
      .page-8k8-9__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: var(--page-8k8-9-spacing-small) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-9__feature-description,
      .page-8k8-9__game-description,
      .page-8k8-9__step-description,
      .page-8k8-9__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-9__feature-image,
      .page-8k8-9__game-image,
      .page-8k8-9__step-image,
      .page-8k8-9__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

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

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