
    :root {
      --page-8k8-6-primary-color: #FFD700; /* Gold */
      --page-8k8-6-secondary-color: #007BFF; /* Blue */
      --page-8k8-6-dark-background: #1a1a2e; /* Dark Blue/Purple */
      --page-8k8-6-darker-background: #16213e; /* Darker Blue */
      --page-8k8-6-text-color: #e0e0e0; /* Light Grey */
      --page-8k8-6-light-text-color: #ffffff; /* White */
      --page-8k8-6-border-color: #3e2060; /* Purple Border */
      --page-8k8-6-button-hover: #e6c200; /* Gold Hover */
    }

    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-6-text-color);
      background-color: var(--page-8k8-6-dark-background);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-8k8-6__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px; /* 10px top padding for header offset */
      background-color: var(--page-8k8-6-darker-background);
      position: relative;
      overflow: hidden;
    }

    .page-8k8-6__hero-content {
      max-width: 900px;
      z-index: 1;
      margin-bottom: 40px;
    }

    .page-8k8-6__hero-title {
      font-size: 2.8em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-8k8-6-light-text-color);
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .page-8k8-6__btn {
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      text-decoration: none; /* Ensure buttons don't look like links */
      display: inline-block;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-6__btn--primary {
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-darker-background);
    }

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

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

    .page-8k8-6__btn--secondary:hover {
      background-color: rgba(255, 215, 0, 0.1);
      transform: translateY(-2px);
    }

    .page-8k8-6__promo-link {
      color: var(--page-8k8-6-primary-color);
      font-size: 1.1em;
      text-decoration: underline;
      transition: color 0.3s ease;
      display: block; /* Ensure it takes its own line */
      margin-top: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__promo-link:hover {
      color: var(--page-8k8-6-button-hover);
    }

    .page-8k8-6__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__hero-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-6__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-6-primary-color);
      text-align: center;
      margin-bottom: 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__features-section,
    .page-8k8-6__login-guide-section,
    .page-8k8-6__payments-section,
    .page-8k8-6__faq-section,
    .page-8k8-6__cta-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-6-dark-background);
    }

    .page-8k8-6__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-6__feature-item {
      background-color: var(--page-8k8-6-darker-background);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Important for responsive lists */
    }

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

    .page-8k8-6__feature-icon {
      width: 200px; /* Minimum 200px */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      max-width: 100%; /* Responsive image */
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-6__feature-description {
      font-size: 1em;
      color: var(--page-8k8-6-text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__login-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-6__step-item {
      background-color: var(--page-8k8-6-darker-background);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Important for responsive lists */
    }

    .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-darker-background);
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .page-8k8-6__step-title {
      font-size: 1.4em;
      color: var(--page-8k8-6-light-text-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__step-description {
      font-size: 1em;
      color: var(--page-8k8-6-text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-8k8-6__payment-item {
      background-color: var(--page-8k8-6-darker-background);
      padding: 20px 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-8k8-6__payment-logo {
      width: 100%;
      max-width: 200px; /* Adjusted from 400px to better fit grid, still >200px */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__payment-name {
      font-size: 1.1em;
      color: var(--page-8k8-6-light-text-color);
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-6__faq-item {
      background-color: var(--page-8k8-6-darker-background);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-8k8-6-darker-background);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-8k8-6-border-color);
    }

    .page-8k8-6__faq-question:hover {
      background-color: #2a3459; /* Slightly lighter dark background on hover */
    }

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

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

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Rotate plus to form minus */
    }

    .page-8k8-6__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-6-text-color);
    }

    .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-answer p {
      margin: 0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__cta-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px;
      background-color: var(--page-8k8-6-darker-background);
    }

    .page-8k8-6__cta-content {
      max-width: 800px;
      margin-bottom: 40px;
    }

    .page-8k8-6__cta-title {
      font-size: 2.5em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__cta-description {
      font-size: 1.2em;
      color: var(--page-8k8-6-light-text-color);
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__promo-link--cta {
      font-size: 1.1em;
      margin-top: 25px;
      display: inline-block;
    }

    .page-8k8-6__cta-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__cta-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8-6__hero-title {
        font-size: 2.4em;
      }
      .page-8k8-6__section-title {
        font-size: 2em;
      }
      .page-8k8-6__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-6__hero-section {
        padding: 10px 15px 40px;
      }
      .page-8k8-6__hero-title {
        font-size: 2em;
      }
      .page-8k8-6__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-6__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-6__btn {
        width: 100% !important;
        max-width: 300px !important; /* Limit width for stacked buttons */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
      }

      .page-8k8-6__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-6__section-description {
        font-size: 0.95em;
      }

      /* List item responsive requirements */
      .page-8k8-6__features-grid,
      .page-8k8-6__login-steps,
      .page-8k8-6__payment-methods {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
        padding: 0 10px !important; /* Adjust container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-6__feature-item,
      .page-8k8-6__step-item,
      .page-8k8-6__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Reduce padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-6__feature-description,
      .page-8k8-6__step-description,
      .page-8k8-6__payment-name,
      .page-8k8-6__faq-answer p {
        font-size: 0.9em !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* For long keywords */
      }

      .page-8k8-6__feature-icon,
      .page-8k8-6__payment-logo {
        max-width: 150px !important; /* Ensure images are not too big */
        width: auto !important; /* Allow auto width to scale with max-width */
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
      
      .page-8k8-6__hero-image,
      .page-8k8-6__cta-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-6__faq-question-title {
        font-size: 1.1em;
      }
      .page-8k8-6__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-6__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-6__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-6__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-6__section-title {
        font-size: 1.6em;
      }
      .page-8k8-6__cta-title {
        font-size: 1.6em;
      }
      .page-8k8-6__promo-link {
        font-size: 0.95em;
      }
      .page-8k8-6__faq-question-title {
        font-size: 1em;
      }
    }
  