
    :root {
      --page-8k8-login-2-primary-color: #007bff;
      --page-8k8-login-2-secondary-color: #6c757d;
      --page-8k8-login-2-accent-color: #ffc107;
      --page-8k8-login-2-background-light: #f8f9fa;
      --page-8k8-login-2-background-dark: #343a40;
      --page-8k8-login-2-text-dark: #212529;
      --page-8k8-login-2-text-light: #ffffff;
      --page-8k8-login-2-button-hover: #0056b3;
      --page-8k8-login-2-border-color: #dee2e6;
      --page-8k8-login-2-font-family: 'Arial', sans-serif;
    }

    .page-8k8-login-2 {
      font-family: var(--page-8k8-login-2-font-family);
      color: var(--page-8k8-login-2-text-dark);
      line-height: 1.6;
      background-color: var(--page-8k8-login-2-background-light);
    }

    .page-8k8-login-2__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-8k8-login-2__hero-section {
      background-color: var(--page-8k8-login-2-background-dark);
      color: var(--page-8k8-login-2-text-light);
      text-align: center;
      padding: 10px 20px 60px; /* Adjusted padding-top to avoid double header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-8k8-login-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-login-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-8k8-login-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-login-2-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-2__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-login-2-text-light);
    }

    .page-8k8-login-2__button {
      display: inline-block;
      background-color: var(--page-8k8-login-2-primary-color);
      color: var(--page-8k8-login-2-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-login-2__button:hover {
      background-color: var(--page-8k8-login-2-button-hover);
    }

    .page-8k8-login-2__title {
      font-size: 2.2em;
      color: var(--page-8k8-login-2-primary-color);
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-login-2__subtitle {
      font-size: 1.8em;
      color: var(--page-8k8-login-2-primary-color);
      margin-bottom: 20px;
    }

    .page-8k8-login-2__text-content {
      margin-bottom: 30px;
      text-align: justify;
    }

    .page-8k8-login-2__image-container {
      text-align: center;
      margin: 40px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-login-2__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .page-8k8-login-2__feature-item {
      background-color: var(--page-8k8-login-2-text-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      border-top: 4px solid var(--page-8k8-login-2-primary-color);
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-login-2__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-8k8-login-2__step-item {
      background-color: var(--page-8k8-login-2-text-light);
      margin-bottom: 20px;
      padding: 25px 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      border-left: 5px solid var(--page-8k8-login-2-accent-color);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-login-2__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: var(--page-8k8-login-2-primary-color);
      color: var(--page-8k8-login-2-text-light);
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      margin-right: 20px;
      flex-shrink: 0;
    }

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

    .page-8k8-login-2__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-8k8-login-2__provider-item {
      background-color: var(--page-8k8-login-2-text-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-8k8-login-2-secondary-color);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-login-2__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-8k8-login-2__payment-item {
      background-color: var(--page-8k8-login-2-text-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-8k8-login-2-secondary-color);
      box-sizing: border-box; /* Required for list items */
    }

    /* FAQ Section */
    .page-8k8-login-2__faq-section {
      background-color: var(--page-8k8-login-2-background-light);
    }

    .page-8k8-login-2__faq-list {
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-login-2__faq-item {
      background-color: var(--page-8k8-login-2-text-light);
      border: 1px solid var(--page-8k8-login-2-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-login-2__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-8k8-login-2__faq-question-title {
      font-size: 1.1em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-login-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-login-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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-login-2-text-dark);
    }

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

    .page-8k8-login-2__faq-item.active .page-8k8-login-2__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar for active state */
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-login-2__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-login-2__title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login-2__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-login-2__hero-description {
        font-size: 1em;
      }
      .page-8k8-login-2__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-8k8-login-2__title {
        font-size: 1.6em;
      }
      .page-8k8-login-2__subtitle {
        font-size: 1.4em;
      }
      .page-8k8-login-2__section {
        padding: 30px 15px;
      }

      /* Mobile list item responsiveness */
      .page-8k8-login-2__features-grid,
      .page-8k8-login-2__steps-list,
      .page-8k8-login-2__game-providers-grid,
      .page-8k8-login-2__payment-methods-grid,
      .page-8k8-login-2__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          display: block; /* Force block for better stacking */
      }

      .page-8k8-login-2__feature-item,
      .page-8k8-login-2__step-item,
      .page-8k8-login-2__provider-item,
      .page-8k8-login-2__payment-item,
      .page-8k8-login-2__faq-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-login-2__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-8k8-login-2__step-item::before {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-login-2__step-title {
        font-size: 1.2em;
      }

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

    @media (max-width: 480px) {
      .page-8k8-login-2__hero-title {
        font-size: 1.5em;
      }
      .page-8k8-login-2__title {
        font-size: 1.4em;
      }
    }
  