
    :root {
      --page-8k8-login-account__primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-login-account__secondary-color: #333333; /* Dark Grey */
      --page-8k8-login-account__accent-color: #e60000; /* Red */
      --page-8k8-login-account__text-color: #ffffff; /* White */
      --page-8k8-login-account__dark-text-color: #000000; /* Black for contrast */
      --page-8k8-login-account__background-dark: #1a1a1a;
      --page-8k8-login-account__background-light: #2c2c2c;
      --page-8k8-login-account__border-radius: 8px;
    }

    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-login-account__text-color);
      background-color: var(--page-8k8-login-account__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

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

    /* Hero Section */
    .page-8k8-login-account__hero-section {
      position: relative;
      background-color: var(--page-8k8-login-account__background-dark);
      color: var(--page-8k8-login-account__text-color);
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      border-radius: var(--page-8k8-login-account__border-radius);
      margin-bottom: 40px;
    }

    .page-8k8-login-account__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-login-account__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-8k8-login-account__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-8k8-login-account__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-login-account__primary-color);
      color: var(--page-8k8-login-account__dark-text-color);
      text-decoration: none;
      border-radius: var(--page-8k8-login-account__border-radius);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login-account__button:hover {
      background-color: #ffd700; /* Slightly brighter gold */
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-login-account__section {
      background-color: var(--page-8k8-login-account__background-light);
      padding: 40px 20px;
      margin-bottom: 40px;
      border-radius: var(--page-8k8-login-account__border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-login-account__section-title {
      font-size: 2em;
      color: var(--page-8k8-login-account__primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-login-account__section-description {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features/Benefits List */
    .page-8k8-login-account__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-login-account__feature-item {
      background-color: var(--page-8k8-login-account__background-dark);
      padding: 25px;
      border-radius: var(--page-8k8-login-account__border-radius);
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-login-account__feature-icon {
      margin-bottom: 15px;
      width: 250px; /* Min size 200x200 */
      height: 250px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      box-sizing: border-box; /* Ensure responsive */
    }

    .page-8k8-login-account__feature-title {
      font-size: 1.3em;
      color: var(--page-8k8-login-account__primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-login-account__feature-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* How to Login Section */
    .page-8k8-login-account__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-login-account__step-card {
      background-color: var(--page-8k8-login-account__background-dark);
      padding: 30px;
      border-radius: var(--page-8k8-login-account__border-radius);
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login-account__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-login-account__primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-login-account__step-title {
      font-size: 1.4em;
      color: var(--page-8k8-login-account__primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-login-account__step-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* Promotion Section */
    .page-8k8-login-account__promotion-card {
      background-color: var(--page-8k8-login-account__background-dark);
      border-radius: var(--page-8k8-login-account__border-radius);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-login-account__promotion-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
      box-sizing: border-box; /* Ensure responsive */
    }

    .page-8k8-login-account__promotion-content {
      padding: 30px;
    }

    .page-8k8-login-account__promotion-title {
      font-size: 2em;
      color: var(--page-8k8-login-account__primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-login-account__promotion-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 30px;
    }

    .page-8k8-login-account__promotion-link {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-login-account__accent-color);
      color: var(--page-8k8-login-account__text-color);
      text-decoration: none;
      border-radius: var(--page-8k8-login-account__border-radius);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login-account__promotion-link:hover {
      background-color: #ff3333; /* Slightly brighter red */
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-login-account__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-login-account__faq-item {
      background-color: var(--page-8k8-login-account__background-dark);
      margin-bottom: 15px;
      border-radius: var(--page-8k8-login-account__border-radius);
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Ensure responsive */
    }

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

    .page-8k8-login-account__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-login-account__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 20px;
      text-align: center;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      background-color: var(--page-8k8-login-account__background-dark);
    }

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

    /* Call to Action Section */
    .page-8k8-login-account__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-8k8-login-account__primary-color);
      color: var(--page-8k8-login-account__dark-text-color);
      border-radius: var(--page-8k8-login-account__border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-login-account__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-login-account__dark-text-color);
    }

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8k8-login-account__container {
        padding: 15px;
      }

      .page-8k8-login-account__hero-section {
        padding: 60px 15px;
      }

      .page-8k8-login-account__hero-title {
        font-size: 2em;
      }

      .page-8k8-login-account__hero-description {
        font-size: 1em;
      }

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

      .page-8k8-login-account__section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }

      .page-8k8-login-account__section-title {
        font-size: 1.8em;
      }

      /* List item responsiveness */
      .page-8k8-login-account__feature-list,
      .page-8k8-login-account__steps-grid,
      .page-8k8-login-account__faq-list {
        grid-template-columns: 1fr;
        gap: 20px;
        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-login-account__feature-item,
      .page-8k8-login-account__step-card,
      .page-8k8-login-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-login-account__feature-description,
      .page-8k8-login-account__step-description {
        word-break: break-word !important; /* For long keywords */
      }

      .page-8k8-login-account__promotion-title {
        font-size: 1.5em;
      }

      .page-8k8-login-account__promotion-description {
        font-size: 1em;
      }

      .page-8k8-login-account__promotion-link {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-login-account__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-login-account__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-login-account__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-login-account__cta-title {
        font-size: 2em;
      }

      .page-8k8-login-account__cta-description {
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-8k8-login-account__hero-background,
      .page-8k8-login-account__feature-icon,
      .page-8k8-login-account__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-login-account__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-login-account__section-title {
        font-size: 1.5em;
      }
      .page-8k8-login-account__cta-title {
        font-size: 1.8em;
      }
    }
  