
    /* Page-specific CSS for 8k8-com-login-password */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #007BFF; /* Blue */
      --text-color-dark: #333;
      --text-color-light: #FFF;
      --background-dark: #1a1a1a;
      --background-light: #f4f4f4;
      --accent-color: #DC3545; /* Red */
    }

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

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

    .page-8k8-com-login-password__hero-section {
      position: relative;
      color: var(--text-color-light);
      text-align: center;
      padding: 10px 20px 80px; /* Minimal top padding, assuming body handles header offset */
      background-color: var(--background-dark);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
      max-width: 100%; /* Responsive image */
    }

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

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

    .page-8k8-com-login-password__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--text-color-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

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

    .page-8k8-com-login-password__promo-button:hover {
      background-color: #BD2130;
      transform: translateY(-2px);
    }

    .page-8k8-com-login-password__section {
      background-color: var(--text-color-light);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    .page-8k8-com-login-password__card {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-login-password__card-icon {
      width: 250px; /* Min size */
      height: 250px; /* Min size */
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 5px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-com-login-password__card-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

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

    .page-8k8-com-login-password__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__list-item {
      background-color: var(--background-light);
      padding: 15px 20px;
      border-left: 5px solid var(--primary-color);
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure long text breaks */
      overflow-wrap: break-word; /* Ensure long text breaks */
    }

    .page-8k8-com-login-password__list-item strong {
      color: var(--secondary-color);
    }

    /* FAQ Section */
    .page-8k8-com-login-password__faq-section {
      background-color: var(--background-light);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .page-8k8-com-login-password__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: var(--text-color-light);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click handling */
      color: var(--secondary-color);
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
      color: var(--primary-color);
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually */
    }

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color-dark);
      background-color: var(--text-color-light);
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 15px !important; /* Active padding */
      opacity: 1;
    }

    .page-8k8-com-login-password__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure long text breaks */
      overflow-wrap: break-word; /* Ensure long text breaks */
    }

    /* Floating Login/Register Buttons */
    .page-8k8-com-login-password__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-com-login-password__floating-button {
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      cursor: pointer;
    }

    .page-8k8-com-login-password__floating-button:hover {
      background-color: #E6B800;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2em;
      }

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

      .page-8k8-com-login-password__section-title,
      .page-8k8-com-login-password__faq-title {
        font-size: 1.6em;
      }

      .page-8k8-com-login-password__content-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-password__list {
        padding: 0;
      }

      .page-8k8-com-login-password__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;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__card-icon {
        width: 200px;
        height: 200px;
      }

      .page-8k8-com-login-password__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 0 10px;
      }

      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px 10px !important;
      }

      .page-8k8-com-login-password__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* For better mobile layout */
        gap: 8px;
      }

      .page-8k8-com-login-password__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__floating-buttons {
        flex-direction: column; /* Stack vertically if very narrow */
        right: 10px;
        bottom: 10px;
      }
    }
  