
    :root {
      --8k8-primary: #FFC107; /* Gold/Amber */
      --8k8-secondary: #212121; /* Dark Gray */
      --8k8-accent: #00BCD4; /* Cyan */
      --8k8-text-light: #F5F5F5; /* Light Gray */
      --8k8-text-dark: #333333; /* Darker Gray */
      --8k8-bg-dark: #1A1A1A; /* Very Dark Gray */
      --8k8-bg-medium: #2C2C2C; /* Medium Dark Gray */
      --8k8-border-color: #444444; /* Border Gray */
    }

    .page-8k8 {
      font-family: 'Arial', sans-serif;
      color: var(--8k8-text-light);
      background-color: var(--8k8-bg-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body padding handles header offset */
    }

    .page-8k8__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--8k8-bg-medium);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8__section--dark {
      background-color: var(--8k8-secondary);
    }

    .page-8k8__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--8k8-bg-dark) 0%, var(--8k8-secondary) 100%);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8__hero-content {
      position: relative;
      z-index: 1;
    }

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

    .page-8k8__subtitle {
      font-size: 1.5em;
      color: var(--8k8-text-light);
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-8k8__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--8k8-primary);
      color: var(--8k8-text-dark);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8__button:hover {
      background-color: #FFD700;
      transform: translateY(-2px);
    }

    .page-8k8__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-8k8__section-title {
      font-size: 2.5em;
      color: var(--8k8-primary);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8__text-content {
      font-size: 1.1em;
      color: var(--8k8-text-light);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8__text-content p {
      margin-bottom: 15px;
    }

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

    .page-8k8__card {
      background-color: var(--8k8-bg-dark);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--8k8-border-color);
    }

    .page-8k8__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-8k8__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      object-fit: cover;
      width: 100%;
      min-height: 200px; /* Enforce minimum image height */
    }

    .page-8k8__card-title {
      font-size: 1.5em;
      color: var(--8k8-primary);
      margin-bottom: 10px;
    }

    .page-8k8__card-description {
      color: var(--8k8-text-light);
      font-size: 0.95em;
    }

    .page-8k8__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-8k8__list-item {
      background-color: var(--8k8-secondary);
      padding: 12px 20px;
      border-radius: 5px;
      color: var(--8k8-text-light);
      font-weight: bold;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
      width: auto; /* Default for desktop */
    }

    .page-8k8__list-item:hover {
      background-color: var(--8k8-accent);
    }

    /* FAQ Section Styles */
    .page-8k8__faq-section {
      max-width: 900px;
    }

    .page-8k8__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--8k8-border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--8k8-bg-dark);
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--8k8-secondary);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--8k8-primary);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      color: var(--8k8-text-light);
      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__faq-item.active .page-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 20px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-8k8__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Space between paragraphs in answer */
    }

    /* Floating Login/Register Buttons (Styled without actual fixed position as per instruction, just visually prominent) */
    .page-8k8__floating-buttons-wrapper {
      text-align: center;
      margin-top: -80px; /* Pull it up into the hero for visual effect */
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .page-8k8__floating-button {
      display: inline-block;
      padding: 15px 35px;
      background-color: var(--8k8-primary);
      color: var(--8k8-text-dark);
      text-decoration: none;
      border-radius: 50px; /* Pill shape */
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
      margin: 0 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8__floating-button:hover {
      background-color: #FFD700;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-8k8__promo-link {
      color: var(--8k8-accent);
      text-decoration: underline;
    }

    .page-8k8__promo-link:hover {
      color: #00E5FF;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8__main-title {
        font-size: 3em;
      }
      .page-8k8__subtitle {
        font-size: 1.3em;
      }
      .page-8k8__section-title {
        font-size: 2em;
      }
      .page-8k8__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8__hero-section {
        padding: 40px 15px;
      }
      .page-8k8__main-title {
        font-size: 2.5em;
      }
      .page-8k8__subtitle {
        font-size: 1.1em;
      }
      .page-8k8__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8__button, .page-8k8__floating-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-8k8__section {
        padding: 30px 15px;
      }
      .page-8k8__section-title {
        font-size: 1.8em;
      }
      .page-8k8__card {
        padding: 20px;
      }
      .page-8k8__card-title {
        font-size: 1.3em;
      }
      .page-8k8__list {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      .page-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
      }

      /* Image responsiveness for mobile */
      .page-8k8 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8__card-image {
        max-width: 100% !important;
        height: auto !important;
        min-height: 150px !important; /* Adjust minimum height for mobile */
      }
      .page-8k8__faq-question {
        padding: 12px 15px;
      }
      .page-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8__faq-answer {
        padding: 0 15px;
      }
      .page-8k8__faq-item.active .page-8k8__faq-answer {
        padding: 15px 15px !important;
      }
      .page-8k8__floating-buttons-wrapper {
        margin-top: -60px;
        margin-bottom: 30px;
      }
      .page-8k8__floating-button {
        font-size: 1em;
        padding: 12px 25px;
        margin: 5px 0;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__main-title {
        font-size: 2em;
      }
      .page-8k8__subtitle {
        font-size: 1em;
      }
      .page-8k8__section-title {
        font-size: 1.5em;
      }
      .page-8k8__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  