
    /* Base styles for the page, scoped with BEM prefix */
    .page-8k8-17-login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333; /* Dark gray for text, good contrast */
      background-color: #f9f9f9; /* Light gray background */
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header offset */
    }

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

    .page-8k8-17-login__section {
      background-color: #fff; /* White background for sections */
      margin-bottom: 30px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
      box-sizing: border-box;
    }

    .page-8k8-17-login__hero-section {
      background-color: #0056b3; /* Dark blue for a strong gaming feel */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding as body handles main offset */
    }

    .page-8k8-17-login__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Overlay effect */
      z-index: 0;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

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

    .page-8k8-17-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff; /* White text */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for readability */
    }

    .page-8k8-17-login__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0; /* Light gray text */
    }

    .page-8k8-17-login__button {
      display: inline-block;
      background-color: #ff9900; /* Vibrant orange for call to action, good contrast with white text */
      color: #fff;
      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-17-login__button:hover {
      background-color: #e68a00; /* Slightly darker orange on hover */
    }

    .page-8k8-17-login__title {
      font-size: 2em;
      color: #0056b3; /* Dark blue for main titles */
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-17-login__subtitle {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 20px;
    }

    .page-8k8-17-login__text {
      font-size: 1em;
      margin-bottom: 15px;
      color: #555; /* Medium gray for body text */
    }

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

    .page-8k8-17-login__feature-item {
      background-color: #f0f8ff; /* Light blue background for features */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-8k8-17-login__feature-icon {
      width: 250px; /* Minimum 200x200px */
      height: 250px; /* Minimum 200x200px */
      margin-bottom: 15px;
      border-radius: 50%; /* Circular images */
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-17-login__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

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

    .page-8k8-17-login__image-wrapper {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 100%; /* Responsive container */
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-17-login__image {
      width: 100%;
      height: 250px; /* Fixed height for consistent gallery look */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-17-login__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-8k8-17-login__list-item {
      background-color: #e6f7ff; /* Lighter blue for list items */
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid #007bff; /* Accent border */
      border-radius: 4px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    /* FAQ Section Styles */
    .page-8k8-17-login__faq-section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-17-login__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd; /* Light border for separation */
      border-radius: 5px;
      overflow: hidden;
    }

    .page-8k8-17-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff; /* Blue for question headers, good contrast with white text */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-17-login__faq-question:hover {
      background-color: #0056b3; /* Darker blue on hover */
    }

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

    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or visually indicate active */
    }

    .page-8k8-17-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      background-color: #f0f8ff; /* Light background for answers */
      color: #333; /* Dark gray text for answers */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

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

      .page-8k8-17-login__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-17-login__title {
        font-size: 1.5em;
      }

      .page-8k8-17-login__subtitle {
        font-size: 1.2em;
      }

      .page-8k8-17-login__container {
        padding: 15px;
      }

      .page-8k8-17-login__section {
        padding: 25px 15px;
      }

      .page-8k8-17-login__feature-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-8k8-17-login__image-gallery {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-8k8-17-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important; /* Adjusted padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 0.95em;
      }

      .page-8k8-17-login__list {
        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-17-login__faq-question {
        padding: 12px 15px;
        font-size: 0.95em;
      }

      .page-8k8-17-login__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-17-login__faq-answer {
        font-size: 0.9em;
      }

      .page-8k8-17-login__image,
      .page-8k8-17-login__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17-login__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17-login__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-17-login__hero-subtitle {
        font-size: 0.9em;
      }

      .page-8k8-17-login__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
    }
  