
    /* General styles for the page */
    .page-8k8-log-in {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light gray for text */
      background-color: #1a1a2e; /* Dark background for gaming theme */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't define */
    }

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

    .page-8k8-log-in__section {
      margin-bottom: 40px;
      padding: 30px;
      background-color: #21213b; /* Slightly lighter dark background for sections */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-log-in__hero-section {
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 100px 20px;
      margin-top: 10px; /* Small decorative margin, header offset handled by body padding */
    }

    .page-8k8-log-in__heading-primary {
      font-size: 3em;
      color: #ffcc00; /* Gold accent color */
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-log-in__heading-secondary {
      font-size: 2.2em;
      color: #00bfff; /* Blue accent color */
      margin-bottom: 15px;
      text-align: center;
      border-bottom: 2px solid #00bfff;
      padding-bottom: 10px;
      margin-top: 30px;
    }

    .page-8k8-log-in__heading-tertiary {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-log-in__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #c0c0c0;
    }

    .page-8k8-log-in__button {
      display: inline-block;
      background-color: #00bfff;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-8k8-log-in__button:hover {
      background-color: #0099cc;
      transform: translateY(-3px);
    }

    .page-8k8-log-in__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-log-in__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-log-in__list-item {
      background-color: #2a2a47;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for responsive lists */
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-8k8-log-in__list-icon {
      flex-shrink: 0;
      width: 64px; /* Displayed size for the icon, image placeholder is 200x200 */
      height: 64px;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-8k8-log-in__list-content h4 {
      color: #ffcc00;
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-8k8-log-in__list-content p {
      color: #c0c0c0;
      font-size: 1em;
      margin-bottom: 0;
    }

    /* FAQ Section Styles */
    .page-8k8-log-in__faq-section {
      background-color: #21213b;
      padding: 40px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin-top: 40px;
    }

    .page-8k8-log-in__faq-heading {
      font-size: 2.5em;
      color: #00bfff;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-log-in__faq-item {
      background-color: #2a2a47;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333355;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-log-in__faq-question:hover {
      background-color: #3f3f6a;
    }

    .page-8k8-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-log-in__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for closed state */
      background-color: #2a2a47;
      color: #c0c0c0;
      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-log-in__faq-item.active .page-8k8-log-in__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Adjust padding for open state */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-log-in__heading-primary {
        font-size: 2.2em;
      }

      .page-8k8-log-in__heading-secondary {
        font-size: 1.8em;
      }

      .page-8k8-log-in__heading-tertiary {
        font-size: 1.5em;
      }

      .page-8k8-log-in__text {
        font-size: 1em;
      }

      .page-8k8-log-in__button {
        padding: 12px 25px;
        font-size: 1.1em;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
      }

      .page-8k8-log-in__container {
        padding: 15px;
      }

      .page-8k8-log-in__section {
        padding: 20px;
        margin-bottom: 30px;
      }

      .page-8k8-log-in__list {
        grid-template-columns: 1fr; /* Single column for lists on mobile */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-log-in__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-log-in__list-item h4 {
        word-break: break-word !important;
      }

      .page-8k8-log-in__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-log-in__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-log-in__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-log-in__faq-item.active .page-8k8-log-in__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-8k8-log-in__image {
        max-width: 100% !important;
        height: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  