
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #1A1A1A; /* Dark Grey */
      --accent-color: #FF4500; /* OrangeRed */
      --text-light: #F0F0F0;
      --text-dark: #1A1A1A;
      --background-dark: #0D0D0D;
      --background-light: #222222;
      --border-color: #333333;
    }

    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
    }

    .page-8k8-login-account__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__section {
        padding: 30px 15px;
      }
    }

    .page-8k8-login-account__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,login,account,jili,gaming,philippines]') center center / cover no-repeat;
      padding: 10px 20px 80px; /* Adjusted padding-top to 10px */
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-login-account__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-login-account__hero-description {
      font-size: 1.3em;
      color: var(--text-light);
      max-width: 800px;
      margin: 0 auto 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__hero-section {
        min-height: 400px;
        padding: 10px 15px 60px;
      }
      .page-8k8-login-account__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 1.1em;
      }
    }

    .page-8k8-login-account__title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8k8-login-account__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }

    .page-8k8-login-account__subtitle {
      font-size: 1.8em;
      color: var(--text-light);
      margin-top: 40px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-login-account__text-block {
      background-color: var(--background-light);
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-login-account__text-block p {
      margin-bottom: 15px;
      color: var(--text-light);
    }

    .page-8k8-login-account__text-block strong {
      color: var(--primary-color);
    }

    .page-8k8-login-account__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-login-account__step-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 25px;
      flex: 1 1 calc(33% - 20px); /* Three items per row */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-login-account__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

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

    .page-8k8-login-account__step-description {
      font-size: 1em;
      color: var(--text-light);
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important;
    }

    @media (max-width: 1024px) {
      .page-8k8-login-account__step-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__steps-list {
        flex-direction: column;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important; /* Reset margins for full width */
        padding: 20px 15px !important; /* Adjust padding */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__step-description {
        font-size: 0.95em;
      }
    }

    .page-8k8-login-account__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 10px;
      margin: 30px 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      box-sizing: border-box; /* Ensure padding/border are within width */
    }

    .page-8k8-login-account__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .page-8k8-login-account__image:hover {
      transform: scale(1.02);
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__image-container {
        margin: 20px 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-8k8-login-account__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 5px;
      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-top: 20px;
    }

    .page-8k8-login-account__button:hover {
      background-color: #FF6347; /* Slightly lighter OrangeRed */
      transform: translateY(-2px);
    }

    .page-8k8-login-account__faq-section {
      background-color: var(--background-light);
      padding: 40px 20px;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-8k8-login-account__faq-question:hover {
      background-color: #2a2a2a;
    }

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

    .page-8k8-login-account__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 span from blocking click on parent div */
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--background-light);
      color: var(--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-login-account__faq-item.active .page-8k8-login-account__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }

    .page-8k8-login-account__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-8k8-login-account__faq-answer p:last-child {
      padding-bottom: 0;
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__title {
        font-size: 2em;
      }
      .page-8k8-login-account__subtitle {
        font-size: 1.5em;
      }
      .page-8k8-login-account__text-block {
        padding: 20px;
      }
      .page-8k8-login-account__faq-question {
        padding: 15px 15px;
      }
      .page-8k8-login-account__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-login-account__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-login-account__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-answer {
        padding: 15px 15px !important;
      }
    }
  