
    /* Page-specific CSS for 8k8.com login */
    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

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

    .page-8k8-6__hero-section {
      background: linear-gradient(135deg, #0a192f 0%, #1a2a40 100%);
      color: #ffffff;
      padding: 10px 20px 80px; /* Adjusted padding-top for fixed header */
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
      animation: page-8k8-6__hero-animation 15s infinite linear;
      z-index: 0;
    }

    @keyframes page-8k8-6__hero-animation {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

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

    .page-8k8-6__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      color: #ffcc00; /* Gold/Yellow for contrast */
    }

    .page-8k8-6__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-8k8-6__primary-button {
      background-color: #ffcc00; /* Gold/Yellow */
      color: #0a192f; /* Dark blue */
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__primary-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-6__section {
      padding: 60px 0;
      text-align: center;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-6__section--dark {
      background-color: #1a2a40;
      color: #ffffff;
      padding: 60px 0;
      text-align: center;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-6__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #0a192f;
      font-weight: bold;
    }

    .page-8k8-6__section--dark .page-8k8-6__section-title {
      color: #ffcc00;
    }

    .page-8k8-6__text-content {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: #555;
    }

    .page-8k8-6__section--dark .page-8k8-6__text-content {
      color: #e0e0e0;
    }

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

    .page-8k8-6__grid-item {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-8k8-6__section--dark .page-8k8-6__grid-item {
      background-color: #0a192f;
      color: #e0e0e0;
    }

    .page-8k8-6__grid-item-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #0a192f;
      font-weight: bold;
    }

    .page-8k8-6__section--dark .page-8k8-6__grid-item-title {
      color: #ffcc00;
    }

    .page-8k8-6__image-wrapper {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-6__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-6__image-wrapper img:hover {
      transform: scale(1.05);
    }

    .page-8k8-6__step-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 700px;
    }

    .page-8k8-6__step-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      padding: 20px;
      border-left: 5px solid #ffcc00;
      border-radius: 5px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-6__step-item strong {
      color: #0a192f;
      font-size: 1.2em;
      display: block;
      margin-bottom: 5px;
    }

    .page-8k8-6__section--dark .page-8k8-6__step-item {
      background-color: #0a192f;
      color: #e0e0e0;
      border-left-color: #ffcc00;
    }

    .page-8k8-6__section--dark .page-8k8-6__step-item strong {
      color: #ffcc00;
    }

    /* FAQ Section */
    .page-8k8-6__faq-section {
      background-color: #f0f0f0;
      padding: 60px 0;
      box-sizing: border-box;
    }

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

    .page-8k8-6__faq-item {
      background-color: #ffffff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #0a192f;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-6__faq-question h3 {
      margin: 0;
      color: #ffcc00; /* Gold for question text */
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Plus to X/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: #333;
      text-align: left;
      box-sizing: border-box;
    }

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

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

    .page-8k8-6__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-6__payment-item,
    .page-8k8-6__provider-item {
      background-color: #ffffff;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      font-weight: bold;
      color: #0a192f;
      text-align: center;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-8k8-6__section--dark .page-8k8-6__payment-item,
    .page-8k8-6__section--dark .page-8k8-6__provider-item {
      background-color: #0a192f;
      color: #ffcc00;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-6__hero-title {
        font-size: 3em;
      }
      .page-8k8-6__section-title {
        font-size: 2em;
      }
      .page-8k8-6__hero-section {
        padding-bottom: 60px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-6__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-6__hero-description {
        font-size: 1em;
      }
      .page-8k8-6__primary-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-6__section {
        padding: 40px 0;
      }
      .page-8k8-6__section-title {
        font-size: 1.8em;
      }
      .page-8k8-6__text-content {
        font-size: 1em;
        margin-left: 15px;
        margin-right: 15px;
      }
      .page-8k8-6__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
      }
      .page-8k8-6__grid-item {
        padding: 25px;
      }
      .page-8k8-6__grid-item-title {
        font-size: 1.3em;
      }
      .page-8k8-6__step-list {
        padding: 0 15px;
      }
      .page-8k8-6__step-item {
        padding: 15px;
      }
      .page-8k8-6__step-item strong {
        font-size: 1.1em;
      }
      .page-8k8-6__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-6__faq-question h3 {
        font-size: 1em; /* Adjust h3 inside faq-question */
      }
      .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__faq-list {
        padding: 0 15px;
      }
      .page-8k8-6__payment-providers {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
      }
      .page-8k8-6__payment-item,
      .page-8k8-6__provider-item {
        width: 100%;
        max-width: 250px;
      }

      /* List item mobile responsiveness */
      .page-8k8-6__step-list,
      .page-8k8-6__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 10px !important; /* Adjusted padding to avoid excessive space */
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-8k8-6__step-item,
      .page-8k8-6__faq-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 15px !important; /* Adjusted padding */
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }
      .page-8k8-6__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-6__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-8k8-6__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 2em;
      }
      .page-8k8-6__section-title {
        font-size: 1.5em;
      }
      .page-8k8-6__hero-section {
        padding-bottom: 40px;
      }
    }
  