
    /* Page-specific CSS for 8k8-9 */
    :root {
      --page-8k8-9-primary-color: #0056b3; /* Darker blue */
      --page-8k8-9-secondary-color: #007bff; /* Royal blue */
      --page-8k8-9-accent-color: #ffc107; /* Yellow */
      --page-8k8-9-text-color: #333;
      --page-8k8-9-light-text-color: #fff;
      --page-8k8-9-background-light: #f8f9fa;
      --page-8k8-9-background-dark: #212529;
      --page-8k8-9-border-color: #dee2e6;
    }

    .page-8k8-9 {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-9-text-color);
      /* Rely on body padding-top for header offset */
      /* If body padding-top is not guaranteed by shared.css, uncomment the following: */
      /* padding-top: var(--header-offset, 122px); */
    }

    .page-8k8-9__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-8k8-9-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-9__hero-section {
      padding-top: 80px; /* Adjusted padding-top for hero section, allowing for header offset via body padding */
      padding-bottom: 80px;
    }

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

    .page-8k8-9__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-9__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-9__heading-primary {
      color: var(--page-8k8-9-primary-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

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

    .page-8k8-9__heading-tertiary {
      color: var(--page-8k8-9-primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-8k8-9__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.7;
    }

    .page-8k8-9__button {
      display: inline-block;
      background-color: var(--page-8k8-9-accent-color);
      color: var(--page-8k8-9-text-color); /* Dark text on yellow for contrast */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin-top: 20px;
    }

    .page-8k8-9__button:hover {
      background-color: #e0a800; /* Pre-calculated darker yellow */
    }

    .page-8k8-9__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-9__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }

    /* Feature List */
    .page-8k8-9__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-9__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-9__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-9__feature-icon {
      min-width: 200px; /* Enforce min image size */
      min-height: 200px; /* Enforce min image size */
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-8k8-9__feature-title {
      font-size: 1.3em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: 10px;
      margin-top: 15px;
    }

    /* Ordered List for Steps */
    .page-8k8-9__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin: 30px 0;
      display: grid;
      grid-template-columns: 1fr; /* Default to single column */
      gap: 20px;
    }

    .page-8k8-9__step-item {
      background-color: #fff;
      padding: 25px;
      border-left: 5px solid var(--page-8k8-9-secondary-color);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      position: relative;
      box-sizing: border-box; /* Required for list items */
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-8k8-9__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: var(--page-8k8-9-secondary-color);
      color: var(--page-8k8-9-light-text-color);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
      margin-top: 5px; /* Align with text */
    }

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

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

    .page-8k8-9__step-description {
      margin-bottom: 0;
    }

    /* Game Categories Grid */
    .page-8k8-9__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-9__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border is included in width */
    }

    .page-8k8-9__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-9__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-8k8-9-border-color);
    }

    .page-8k8-9__game-title {
      font-size: 1.2em;
      color: var(--page-8k8-9-primary-color);
      padding: 15px;
      margin: 0;
    }

    /* Payment Methods Grid */
    .page-8k8-9__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-9__payment-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
      width: 100%;
      max-width: 180px; /* Limit width for individual items */
    }

    .page-8k8-9__payment-logo {
      min-width: 200px; /* Enforce min image size */
      min-height: 200px; /* Enforce min image size */
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Adjust height as needed */
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .page-8k8-9__payment-name {
      margin-top: 10px;
      font-weight: bold;
      color: var(--page-8k8-9-text-color);
    }

    /* FAQ Section */
    .page-8k8-9__faq-section {
      background-color: var(--page-8k8-9-background-light);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-9__faq-list {
      margin-top: 30px;
    }

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

    .page-8k8-9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9ecef;
      transition: background-color 0.3s ease;
      user-select: none;
      color: var(--page-8k8-9-primary-color);
    }

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

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

    .page-8k8-9__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
      color: var(--page-8k8-9-secondary-color);
    }

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

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

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

    .page-8k8-9__faq-item.active .page-8k8-9__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus sign */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-9__heading-primary {
        font-size: 2em;
      }

      .page-8k8-9__heading-secondary {
        font-size: 1.7em;
      }

      .page-8k8-9__section {
        padding: 30px 15px;
      }

      .page-8k8-9__features-grid,
      .page-8k8-9__game-categories,
      .page-8k8-9__payment-methods-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }
      
      /* List items responsive */
      .page-8k8-9__features-grid .page-8k8-9__feature-item,
      .page-8k8-9__steps-list .page-8k8-9__step-item,
      .page-8k8-9__game-categories .page-8k8-9__game-card,
      .page-8k8-9__payment-methods-grid .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-left: 15px !important;
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-9__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-9__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-8k8-9__step-item::before {
        margin-bottom: 10px;
        margin-top: 0;
      }

      .page-8k8-9__step-content {
        text-align: center;
      }

      /* Images responsive */
      .page-8k8-9__image-wrapper,
      .page-8k8-9__image,
      .page-8k8-9__feature-icon,
      .page-8k8-9__game-image,
      .page-8k8-9__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      /* FAQ mobile adjustments */
      .page-8k8-9__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-9__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-9__faq-item.active .page-8k8-9__faq-answer {
        padding: 15px 20px !important;
      }
    }
    
    @media (max-width: 480px) {
      .page-8k8-9__heading-primary {
        font-size: 1.8em;
      }
      .page-8k8-9__heading-secondary {
        font-size: 1.5em;
      }
      .page-8k8-9__paragraph {
        font-size: 1em;
      }
      .page-8k8-9__button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  