
    :root {
      --page-8k8-6-primary-color: #e0b000; /* Gold/Yellow */
      --page-8k8-6-secondary-color: #333333; /* Dark Grey */
      --page-8k8-6-accent-color: #ff4500; /* Orange-Red */
      --page-8k8-6-text-color: #f0f0f0; /* Light Grey */
      --page-8k8-6-dark-bg: #1a1a1a; /* Very Dark Grey */
      --page-8k8-6-light-bg: #2a2a2a; /* Darker Grey */
      --page-8k8-6-border-color: #444444;
      --page-8k8-6-font-family: 'Arial', sans-serif;
    }

    .page-8k8-6 {
      font-family: var(--page-8k8-6-font-family);
      color: var(--page-8k8-6-text-color);
      background-color: var(--page-8k8-6-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-8k8-6__section-title {
      color: var(--page-8k8-6-primary-color);
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-6__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-8k8-6-accent-color);
    }

    .page-8k8-6__section-description {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      color: #ccc;
    }

    /* Hero Section */
    .page-8k8-6__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--page-8k8-6-light-bg);
      padding: 10px 20px 40px; /* Small padding-top, assuming body handles header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      margin-top: 30px;
      border-radius: 8px;
    }

    .page-8k8-6__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-8k8-6__hero-title {
      font-size: 3em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-8k8-6__hero-subtitle {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8k8-6__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-6__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      box-sizing: border-box;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-8k8-6__button--primary {
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-dark-bg);
      border: 2px solid var(--page-8k8-6-primary-color);
    }

    .page-8k8-6__button--primary:hover {
      background-color: var(--page-8k8-6-accent-color);
      border-color: var(--page-8k8-6-accent-color);
      transform: translateY(-2px);
    }

    .page-8k8-6__button--secondary {
      background-color: transparent;
      color: var(--page-8k8-6-primary-color);
      border: 2px solid var(--page-8k8-6-primary-color);
    }

    .page-8k8-6__button--secondary:hover {
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-dark-bg);
      transform: translateY(-2px);
    }

    .page-8k8-6__button--large {
      padding: 18px 35px;
      font-size: 1.2em;
    }

    /* Benefits Section */
    .page-8k8-6__benefits-section {
      @extend .page-8k8-6__section;
      background-color: var(--page-8k8-6-dark-bg);
    }

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

    .page-8k8-6__benefit-card {
      background-color: var(--page-8k8-6-light-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-8k8-6__benefit-icon {
      width: 250px; /* Enforce minimum size */
      height: 250px; /* Enforce minimum size */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

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

    .page-8k8-6__benefit-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Login Guide Section */
    .page-8k8-6__login-guide-section {
      @extend .page-8k8-6__section;
      background-color: var(--page-8k8-6-light-bg);
    }

    .page-8k8-6__steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__step-item {
      background-color: var(--page-8k8-6-dark-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      width: 100%;
      max-width: 280px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-8k8-6-border-color);
      box-sizing: border-box;
    }

    .page-8k8-6__step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-dark-bg);
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 0 15px rgba(224, 176, 0, 0.5);
    }

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

    .page-8k8-6__step-description {
      color: #ccc;
      font-size: 0.95em;
    }

    .page-8k8-6__cta-bottom {
      text-align: center;
      margin-top: 50px;
    }

    /* FAQ Section */
    .page-8k8-6__faq-section {
      @extend .page-8k8-6__section;
      background-color: var(--page-8k8-6-dark-bg);
    }

    .page-8k8-6__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

    .page-8k8-6__faq-question:hover {
      background-color: #383838;
    }

    .page-8k8-6__faq-q-text {
      margin: 0;
      color: var(--page-8k8-6-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      background-color: var(--page-8k8-6-dark-bg);
      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-6__faq-answer p {
      margin: 0;
      padding-bottom: 20px;
    }

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

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, could also be '−' */
    }

    /* Payment and Game Providers Sections */
    .page-8k8-6__payment-providers-section,
    .page-8k8-6__game-providers-section {
      @extend .page-8k8-6__section;
      background-color: var(--page-8k8-6-light-bg);
    }

    .page-8k8-6__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      margin-top: 40px;
    }

    .page-8k8-6__provider-logo {
      width: 100%;
      max-width: 250px; /* Max width for logos */
      height: 120px; /* Fixed height for consistency */
      object-fit: contain;
      filter: grayscale(80%) brightness(120%); /* Subtle effect, not color change */
      transition: filter 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      min-width: 200px; /* Minimum size for images */
      min-height: 100px; /* Minimum size for images */
    }

    .page-8k8-6__provider-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }

    /* Final CTA Section */
    .page-8k8-6__final-cta-section {
      @extend .page-8k8-6__section;
      background-color: var(--page-8k8-6-dark-bg);
      text-align: center;
      padding-bottom: 60px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-6__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-6__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-6__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-6__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

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

      .page-8k8-6__section-description {
        font-size: 1em;
      }

      .page-8k8-6__benefits-grid,
      .page-8k8-6__steps-container,
      .page-8k8-6__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-6__benefit-card,
      .page-8k8-6__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }

      .page-8k8-6__benefit-icon {
        width: 200px; /* Minimum size for mobile */
        height: 200px; /* Minimum size for mobile */
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__provider-logo {
        width: 100% !important;
        max-width: 200px !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 100px !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
      }

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

      .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        padding: 18px 20px !important;
      }

      .page-8k8-6__faq-q-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-6__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-6__section-title {
        font-size: 1.8em;
      }
    }
  