
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #e60000; /* Red */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --medium-gray: #cccccc;
      --dark-gray-text: #333333;
      --border-radius-small: 5px;
      --border-radius-medium: 10px;
    }

    .page-8k8-com-log-in {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-com-log-in__hero-section {
      position: relative;
      text-align: center;
      padding: 100px 20px;
      background-color: #000;
      overflow: hidden;
      padding-top: 10px; /* Decorative top spacing, body handles main offset */
    }

    .page-8k8-com-log-in__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-8k8-com-log-in__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-log-in__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--secondary-color);
      color: var(--light-text);
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      border-radius: var(--border-radius-medium);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__button:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    .page-8k8-com-log-in__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-log-in__section--dark {
      background-color: #222;
    }

    .page-8k8-com-log-in__section--light {
      background-color: #2a2a2a;
    }

    .page-8k8-com-log-in__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-align: center;
    }

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

    .page-8k8-com-log-in__feature-card {
      background-color: #333;
      padding: 30px;
      border-radius: var(--border-radius-medium);
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-log-in__card-icon {
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius-small);
      box-sizing: border-box;
    }

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

    .page-8k8-com-log-in__card-description {
      color: var(--medium-gray);
      font-size: 1em;
    }

    .page-8k8-com-log-in__image-full {
      width: 100%;
      height: auto;
      border-radius: var(--border-radius-medium);
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__text-content {
      max-width: 800px;
      margin: 0 auto 40px auto;
      text-align: left;
      color: var(--medium-gray);
    }

    .page-8k8-com-log-in__text-content h2 {
      color: var(--primary-color);
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-com-log-in__text-content h3 {
      color: var(--light-text);
      font-size: 1.5em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-8k8-com-log-in__text-content p {
      margin-bottom: 15px;
    }

    .page-8k8-com-log-in__text-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-log-in__text-content li {
      background-color: #333;
      padding: 15px;
      margin-bottom: 10px;
      border-left: 5px solid var(--primary-color);
      border-radius: var(--border-radius-small);
      color: var(--light-text);
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word;
    }

    /* FAQ Section Styles */
    .page-8k8-com-log-in__faq-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-log-in__faq-section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
    }

    .page-8k8-com-log-in__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-com-log-in__faq-item {
      background-color: #2a2a2a;
      border-radius: var(--border-radius-medium);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      color: var(--light-text);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-com-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-log-in__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
    }

    .page-8k8-com-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      background-color: #2a2a2a;
      color: var(--medium-gray);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

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

    .page-8k8-com-log-in__floating-button {
      padding: 12px 25px;
      font-size: 1em;
      font-weight: bold;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.3s ease;
      cursor: pointer;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-log-in__floating-button--register {
      background-color: var(--primary-color);
      color: var(--dark-background);
    }

    .page-8k8-com-log-in__floating-button--register:hover {
      background-color: #e6b800;
    }

    .page-8k8-com-log-in__floating-button--login {
      background-color: var(--secondary-color);
      color: var(--light-text);
    }

    .page-8k8-com-log-in__floating-button--login:hover {
      background-color: #cc0000;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-log-in__hero-section {
        padding: 80px 15px;
      }

      .page-8k8-com-log-in__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-log-in__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-log-in__section {
        padding: 40px 15px;
      }

      .page-8k8-com-log-in__section-title {
        font-size: 2em;
      }

      .page-8k8-com-log-in__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-log-in__text-content {
        padding: 0 15px;
      }

      .page-8k8-com-log-in__text-content h2 {
        font-size: 1.8em;
      }

      .page-8k8-com-log-in__text-content h3 {
        font-size: 1.3em;
      }

      .page-8k8-com-log-in__text-content li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-log-in__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-com-log-in__faq-toggle {
        font-size: 1.5em;
      }

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

      .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-log-in__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
        gap: 5px;
      }

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

      .page-8k8-com-log-in__image-full,
      .page-8k8-com-log-in__card-icon,
      .page-8k8-com-log-in__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-log-in__hero-title {
        font-size: 2em;
      }

      .page-8k8-com-log-in__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-log-in__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-log-in__button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  