
    /* Base styles for the page */
    .page-www-8k8-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #E0E0E0; /* Light grey text for good contrast */
      background-color: #1A1A1A; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      padding-bottom: 80px; /* Space for floating buttons */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-www-8k8-com-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-www-8k8-com-login-register__section--dark {
      background-color: #222222;
    }

    .page-www-8k8-com-login-register__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Gold color for titles */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-www-8k8-com-login-register__section-subtitle {
      font-size: 1.2em;
      color: #CCCCCC;
      margin-bottom: 30px;
    }

    .page-www-8k8-com-login-register__button {
      display: inline-block;
      background-color: #FFD700; /* Gold button */
      color: #1A1A1A; /* Dark text on gold */
      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;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

    .page-www-8k8-com-login-register__button:hover {
      background-color: #E6C200; /* Slightly darker gold on hover */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-www-8k8-com-login-register__hero-section {
      position: relative;
      padding: 80px 20px;
      background: linear-gradient(135deg, #1A1A1A, #333333);
      color: #FFFFFF;
      text-align: center;
      overflow: hidden;
      border-radius: 10px;
      margin: 20px auto;
      max-width: 1200px;
    }

    .page-www-8k8-com-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

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

    .page-www-8k8-com-login-register__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-www-8k8-com-login-register__hero-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    /* Floating Buttons */
    .page-www-8k8-com-login-register__floating-buttons {
      position: fixed;
      bottom: 15px;
      right: 15px;
      z-index: 1000;
      display: flex;
      flex-direction: column; /* Stack buttons on mobile */
      gap: 10px;
    }

    .page-www-8k8-com-login-register__floating-button {
      background-color: #007BFF; /* Blue for login */
      color: white;
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px; /* Ensure button width */
    }

    .page-www-8k8-com-login-register__floating-button--register {
      background-color: #28A745; /* Green for register */
    }

    .page-www-8k8-com-login-register__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.4);
    }

    .page-www-8k8-com-login-register__floating-button--register:hover {
      background-color: #218838;
    }
    .page-www-8k8-com-login-register__floating-button:hover:not(.page-www-8k8-com-login-register__floating-button--register) {
        background-color: #0069D9;
    }


    /* Content Sections */
    .page-www-8k8-com-login-register__content-block {
      display: flex;
      flex-direction: column; /* Default stack on mobile */
      align-items: center;
      gap: 30px;
      margin-bottom: 50px;
      text-align: left;
    }

    .page-www-8k8-com-login-register__content-block--reversed {
      flex-direction: column-reverse;
    }

    .page-www-8k8-com-login-register__content-image-container {
      flex: 1;
      min-width: 300px;
      max-width: 100%; /* Image responsiveness */
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .page-www-8k8-com-login-register__content-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100% !important; /* Image responsiveness */
      box-sizing: border-box !important; /* Image responsiveness */
    }

    .page-www-8k8-com-login-register__content-text {
      flex: 1;
      padding: 20px;
      background-color: #2C2C2C;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .page-www-8k8-com-login-register__content-text h3 {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login-register__content-text p {
      color: #E0E0E0;
      margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-www-8k8-com-login-register__list-item {
      background-color: #3A3A3A;
      padding: 15px 20px;
      border-radius: 8px;
      text-align: center;
      flex: 1 1 calc(33% - 30px); /* 3 items per row on desktop */
      min-width: 280px; /* Minimum width for items */
      box-sizing: border-box; /* List item responsiveness */
      color: #FFD700;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* FAQ Section */
    .page-www-8k8-com-login-register__faq-section {
      text-align: left;
    }

    .page-www-8k8-com-login-register__faq-item {
      background-color: #2C2C2C;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-www-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3A3A3A;
      color: #FFD700;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8-com-login-register__faq-question:hover {
      background-color: #4A4A4A;
    }

    .page-www-8k8-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #FFD700; /* Ensure high contrast */
    }

    .page-www-8k8-com-login-register__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #FFD700; /* Ensure high contrast */
    }

    .page-www-8k8-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #E0E0E0; /* Ensure high contrast */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '−' */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-www-8k8-com-login-register__hero-title {
        font-size: 2.2em;
      }

      .page-www-8k8-com-login-register__hero-text {
        font-size: 1em;
      }

      .page-www-8k8-com-login-register__section-title {
        font-size: 2em;
      }

      .page-www-8k8-com-login-register__content-block {
        flex-direction: column;
        text-align: center;
      }

      .page-www-8k8-com-login-register__content-text {
        padding: 15px;
      }

      .page-www-8k8-com-login-register__content-text h3 {
        font-size: 1.5em;
      }

      .page-www-8k8-com-login-register__list-item {
        flex: 1 1 100%; /* Stack items on mobile */
        width: 100% !important; /* List item responsiveness */
        max-width: 100% !important; /* List item responsiveness */
        box-sizing: border-box !important; /* List item responsiveness */
        margin-left: 0 !important; /* List item responsiveness */
        margin-right: 0 !important; /* List item responsiveness */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
      }

      .page-www-8k8-com-login-register__list {
        width: 100% !important; /* List container responsiveness */
        max-width: 100% !important; /* List container responsiveness */
        box-sizing: border-box !important; /* List container responsiveness */
        padding: 0 !important; /* List container responsiveness */
        margin-left: 0 !important; /* List container responsiveness */
        margin-right: 0 !important; /* List container responsiveness */
      }

      .page-www-8k8-com-login-register__floating-buttons {
        flex-direction: row; /* Side-by-side on mobile for better access */
        justify-content: center;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0; /* Stick to bottom edge */
        padding: 10px;
        background-color: rgba(26, 26, 26, 0.9); /* Semi-transparent background */
        border-top: 1px solid #333;
      }

      .page-www-8k8-com-login-register__floating-button {
        flex: 1;
        margin: 0 5px;
        min-width: unset; /* Remove min-width for mobile flexibility */
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-www-8k8-com-login-register__faq-question {
        padding: 12px 15px;
      }
      .page-www-8k8-com-login-register__faq-question h3 {
        font-size: 1em;
      }
      .page-www-8k8-com-login-register__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }

      .page-www-8k8-com-login-register__content-image-container {
        width: 100%;
      }
      .page-www-8k8-com-login-register__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (min-width: 769px) {
      .page-www-8k8-com-login-register__content-block {
        flex-direction: row; /* Desktop layout */
      }
      .page-www-8k8-com-login-register__content-block--reversed {
        flex-direction: row-reverse;
      }
      .page-www-8k8-com-login-register__floating-buttons {
        flex-direction: column; /* Stack buttons on desktop */
        right: 15px;
        left: unset;
        width: unset;
        bottom: 15px;
        background-color: unset;
        border-top: unset;
      }
    }
  