
    :root {
      --8k8-primary: #800080; /* Purple */
      --8k8-secondary: #FFD700; /* Gold */
      --8k8-dark: #1a1a1a;
      --8k8-light: #f5f5f5;
      --8k8-grey: #cccccc;
      --8k8-text-color: #ffffff;
      --8k8-text-dark: #333333;
      --8k8-accent: #FF4500; /* Orange-Red for highlights */
    }

    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--8k8-text-dark);
      background-color: var(--8k8-light);
    }

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

    .page-8k8-login-account__hero-section {
      background: linear-gradient(135deg, var(--8k8-primary) 0%, #4B0082 100%); /* Darker purple */
      color: var(--8k8-text-color);
      padding: 10px 20px 80px 20px; /* Adjusted padding-top */
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }
    .page-8k8-login-account__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-8k8-login-account__hero-content {
      position: relative;
      z-index: 1;
      padding-top: 50px; /* Space for the header */
    }

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

    .page-8k8-login-account__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-login-account__button {
      background-color: var(--8k8-secondary);
      color: var(--8k8-dark);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For button-like elements that are not actually buttons */
      display: inline-block;
      margin: 10px;
    }

    .page-8k8-login-account__button:hover {
      background-color: #FFEA00;
      transform: translateY(-3px);
    }

    .page-8k8-login-account__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-login-account__section:nth-of-type(even) {
      background-color: var(--8k8-text-color);
    }

    .page-8k8-login-account__section-title {
      font-size: 2.5em;
      color: var(--8k8-primary);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-login-account__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--8k8-secondary);
      border-radius: 2px;
    }

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

    .page-8k8-login-account__card {
      background-color: var(--8k8-text-color);
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 5px solid var(--8k8-primary);
    }

    .page-8k8-login-account__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-login-account__card-title {
      font-size: 1.8em;
      color: var(--8k8-primary);
      margin-bottom: 15px;
    }

    .page-8k8-login-account__card-description {
      font-size: 1.1em;
      color: var(--8k8-text-dark);
    }

    .page-8k8-login-account__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-login-account__list-item {
      background-color: var(--8k8-text-color);
      border: 1px solid var(--8k8-grey);
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: var(--8k8-text-dark);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
      width: calc(33% - 20px); /* Adjust for 3 columns, accounting for gap */
      text-align: center;
    }

    .page-8k8-login-account__list-item:hover {
      background-color: var(--8k8-light);
    }

    .page-8k8-login-account__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-login-account__step-item {
      display: flex;
      align-items: flex-start;
      text-align: left;
      background-color: var(--8k8-text-color);
      border-left: 5px solid var(--8k8-primary);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-login-account__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--8k8-secondary);
      margin-right: 20px;
      line-height: 1;
      flex-shrink: 0;
    }

    .page-8k8-login-account__step-content h3 {
      font-size: 1.6em;
      color: var(--8k8-primary);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-login-account__step-content p {
      font-size: 1.1em;
      color: var(--8k8-text-dark);
    }

    .page-8k8-login-account__image-wrapper {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsiveness */
      width: 100%; /* Ensure container fills width */
    }

    .page-8k8-login-account__image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-login-account__faq-section {
      background-color: var(--8k8-dark);
      color: var(--8k8-text-color);
      padding: 60px 0;
    }

    .page-8k8-login-account__faq-section .page-8k8-login-account__section-title {
      color: var(--8k8-secondary);
    }

    .page-8k8-login-account__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      padding: 0;
      list-style: none;
    }

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

    .page-8k8-login-account__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.3em;
      font-weight: bold;
      color: var(--8k8-text-color);
      background-color: var(--8k8-primary);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-login-account__faq-question:hover {
      background-color: #6A0DAD; /* Slightly lighter purple on hover */
    }

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-8k8-login-account__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      line-height: 1;
      width: 30px;
      text-align: center;
      flex-shrink: 0;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, visually appealing */
    }

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding for collapsed state */
      font-size: 1.1em;
      color: var(--8k8-light);
      background-color: #4B0082; /* Darker purple for answer background */
      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-login-account__faq-item.active .page-8k8-login-account__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-8k8-login-account__text-center {
      text-align: center;
    }

    .page-8k8-login-account__promotions-link {
      color: var(--8k8-accent);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-login-account__promotions-link:hover {
      color: var(--8k8-secondary);
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-login-account__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-login-account__section-title {
        font-size: 2.2em;
      }
      .page-8k8-login-account__list-item {
        width: calc(50% - 20px); /* Two columns on medium screens */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__container {
        padding: 15px;
      }
      .page-8k8-login-account__hero-section {
        padding: 10px 15px 60px 15px;
      }
      .page-8k8-login-account__hero-title {
        font-size: 2.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: 40px 0;
      }
      .page-8k8-login-account__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-login-account__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }
      .page-8k8-login-account__card {
        padding: 20px;
      }
      .page-8k8-login-account__card-title {
        font-size: 1.5em;
      }
      .page-8k8-login-account__card-description {
        font-size: 1em;
      }
      /* List items responsive rules */
      .page-8k8-login-account__list {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-login-account__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Ensure text breaks */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-login-account__list-container { /* Assuming a container for ul/ol */
        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__step-item {
        flex-direction: column;
        padding: 20px;
      }
      .page-8k8-login-account__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-8k8-login-account__step-content h3 {
        font-size: 1.4em;
      }
      .page-8k8-login-account__step-content p {
        font-size: 0.95em;
      }
      .page-8k8-login-account__image-wrapper {
        margin: 25px auto;
        border-radius: 8px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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