
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for action items */
      --secondary-color: #007bff; /* Blue for highlights */
      --dark-background: #1a1a1a; /* Dark background for sections */
      --light-text: #ffffff; /* White text on dark backgrounds */
      --gray-text: #cccccc; /* Lighter gray text */
      --border-color: #333333; /* Darker border */
    }

    .page-8k8-9 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: #0d0d0d;
      line-height: 1.6;
      padding-top: 10px; /* Small padding to avoid double header offset */
    }

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

    .page-8k8-9__section--dark {
      background-color: var(--dark-background);
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-9__heading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-9__sub-heading {
      text-align: center;
      color: var(--light-text);
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-8k8-9__text-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      font-size: 1.1em;
      color: var(--gray-text);
    }

    .page-8k8-9__button {
      display: block;
      width: fit-content;
      margin: 30px auto;
      padding: 15px 30px;
      background-color: var(--primary-color);
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-9__image-container {
      text-align: center;
      margin-bottom: 30px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-8k8-9__feature-item {
      background-color: #222222;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-9__feature-icon {
      max-width: 250px; /* Minimum 200px */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

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

    .page-8k8-9__feature-description {
      color: var(--gray-text);
      font-size: 0.95em;
      word-wrap: break-word;
    }

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

    .page-8k8-9__step-item {
      background-color: #222222;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      flex: 1 1 calc(33% - 20px); /* Adjust for 3 columns on desktop */
      min-width: 280px;
      box-sizing: border-box;
      position: relative;
      counter-increment: step-counter;
      border: 1px solid var(--border-color);
    }

    .page-8k8-9__step-item::before {
      content: counter(step-counter);
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--primary-color);
      color: #1a1a1a;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2em;
      border: 3px solid #0d0d0d;
    }

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

    .page-8k8-9__step-description {
      color: var(--gray-text);
      font-size: 0.95em;
      word-wrap: break-word;
    }

    .page-8k8-9__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-8k8-9__game-card {
      background-color: #222222;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-9__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-8k8-9__game-title {
      color: var(--light-text);
      font-size: 1.2em;
      margin-top: 15px;
      word-wrap: break-word;
    }

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

    .page-8k8-9__provider-item {
      background-color: #222222;
      color: var(--light-text);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
      word-wrap: break-word;
    }

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

    .page-8k8-9__payment-item {
      background-color: #222222;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

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

    .page-8k8-9__payment-logo {
      max-width: 200px; /* Minimum 200px */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-9__payment-name {
      color: var(--gray-text);
      font-size: 1em;
      font-weight: bold;
      word-wrap: break-word;
    }

    .page-8k8-9__faq-list {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

    .page-8k8-9__faq-question h3 {
      margin: 0;
      color: var(--light-text);
      font-size: 1.1em;
      pointer-events: none; /* Prevents text selection from interfering with click */
      flex-grow: 1;
      text-align: left;
    }

    .page-8k8-9__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      pointer-events: none; /* Prevents icon from interfering with click */
      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 20px; /* Initial padding 0 to match max-height: 0 */
      opacity: 0;
      color: var(--gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-8k8-9__faq-item.active .page-8k8-9__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px !important; /* Use !important for consistent padding on expansion */
      opacity: 1;
    }

    .page-8k8-9__faq-answer p {
      margin-top: 0;
      margin-bottom: 0;
      word-wrap: break-word;
    }


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

      .page-8k8-9__sub-heading {
        font-size: 1.5em;
      }

      .page-8k8-9__text-content {
        font-size: 1em;
      }

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

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

      /* List items mobile responsiveness */
      .page-8k8-9__feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .page-8k8-9__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-9__step-list {
        flex-direction: column;
        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-9__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-9__game-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .page-8k8-9__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-9__provider-list {
        gap: 10px;
        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__provider-item {
        width: auto !important; /* Allow natural width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 6px 12px;
        word-break: break-word !important;
      }

      .page-8k8-9__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .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: 15px;
      }

      .page-8k8-9__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-8k8-9__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-9__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-9__faq-item.active .page-8k8-9__faq-answer {
        padding: 15px !important;
      }

      /* Ensure all images are responsive */
      .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;
      }
      .page-8k8-9__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  