
    /* Page-specific styles for 8k8.com login */
    :root {
      --page-8k8-6-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-6-secondary-color: #333333; /* Dark Gray */
      --page-8k8-6-accent-color: #007bff; /* Blue for links/buttons */
      --page-8k8-6-text-color: #ffffff; /* White text */
      --page-8k8-6-background-dark: #1a1a1a; /* Dark background */
      --page-8k8-6-background-light: #2c2c2c; /* Slightly lighter dark background */
      --page-8k8-6-border-radius: 8px;
    }

    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-6-text-color);
      background-color: var(--page-8k8-6-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Minimal top padding, relying on body padding-top for header offset */
    }

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

    .page-8k8-6__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: var(--page-8k8-6-background-light);
      border-radius: var(--page-8k8-6-border-radius);
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-6__hero-title {
      font-size: 3.5em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-8k8-6__button {
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-secondary-color);
      padding: 15px 30px;
      border: none;
      border-radius: var(--page-8k8-6-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__button:hover {
      background-color: #e6b800; /* Slightly darker yellow */
      transform: translateY(-3px);
    }

    .page-8k8-6__register-button {
      background-color: var(--page-8k8-6-accent-color);
      color: var(--page-8k8-6-text-color);
    }

    .page-8k8-6__register-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-6__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-6-primary-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      border-bottom: 2px solid var(--page-8k8-6-primary-color);
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__content-section {
      background-color: var(--page-8k8-6-background-light);
      padding: 40px 20px;
      margin-bottom: 40px;
      border-radius: var(--page-8k8-6-border-radius);
    }

    .page-8k8-6__text-block {
      margin-bottom: 20px;
      text-align: justify;
      color: #e0e0e0;
    }

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

    .page-8k8-6__image-item {
      background-color: var(--page-8k8-6-background-dark);
      border-radius: var(--page-8k8-6-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-6__image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-6__image:hover {
      transform: scale(1.05);
    }

    .page-8k8-6__image-caption {
      padding: 15px;
      font-weight: bold;
      color: var(--page-8k8-6-primary-color);
    }

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

    .page-8k8-6__list-item {
      background-color: var(--page-8k8-6-background-dark);
      padding: 15px 20px;
      border-radius: var(--page-8k8-6-border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e0e0e0;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-6__list-item::before {
      content: '✓';
      color: var(--page-8k8-6-primary-color);
      font-weight: bold;
      margin-right: 8px;
    }

    .page-8k8-6__faq-section {
      background-color: var(--page-8k8-6-background-light);
      padding: 40px 20px;
      margin-bottom: 40px;
      border-radius: var(--page-8k8-6-border-radius);
    }

    .page-8k8-6__faq-item {
      margin-bottom: 15px;
      border: 1px solid #444;
      border-radius: var(--page-8k8-6-border-radius);
      overflow: hidden;
    }

    .page-8k8-6__faq-question {
      background-color: #3a3a3a;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-8k8-6__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-6-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-6-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #2c2c2c;
      color: #e0e0e0;
      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-6__faq-item.active .page-8k8-6__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-8k8-6__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 26, 0.9);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-6__floating-button {
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-secondary-color);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-8k8-6__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-6__floating-button--login {
      background-color: var(--page-8k8-6-accent-color);
      color: var(--page-8k8-6-text-color);
    }

    .page-8k8-6__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-6__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-6__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-6__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-6__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-6__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-6__image-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-6__list {
        grid-template-columns: 1fr;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__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;
      }

      .page-8k8-6__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-6__floating-buttons {
        width: calc(100% - 40px);
        bottom: 10px;
        padding: 8px 15px;
        gap: 10px;
      }

      .page-8k8-6__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* Image responsiveness */
      .page-8k8-6__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-6__image-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 2em;
      }
      .page-8k8-6__hero-description {
        font-size: 1em;
      }
      .page-8k8-6__section-title {
        font-size: 1.8em;
      }
      .page-8k8-6__floating-buttons {
        width: calc(100% - 20px);
      }
    }
  