
    :root {
      --primary-color: #e44d26; /* A vibrant orange for gaming, similar to Jili's branding */
      --secondary-color: #ffb74d; /* Complementary amber color */
      --text-color: #f0f0f0;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #444;
      --button-bg: var(--primary-color);
      --button-text: #ffffff;
      --link-color: var(--secondary-color);
    }

    .page-jilihot-log-in {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    .page-jilihot-log-in__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-jilihot-log-in__hero-section {
      position: relative;
      overflow: hidden;
      background-color: #000;
      padding: 10px 0 60px 0; /* Small padding-top as body handles header offset, larger padding-bottom for content */
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-jilihot-log-in__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken background for text readability */
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-jilihot-log-in__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-jilihot-log-in__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-jilihot-log-in__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--button-bg);
      color: var(--button-text);
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-jilihot-log-in__button:hover {
      background-color: var(--secondary-color);
      transform: translateY(-2px);
    }

    .page-jilihot-log-in__section {
      padding: 60px 0;
      background-color: var(--background-light);
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .page-jilihot-log-in__section--dark {
      background-color: var(--background-dark);
    }

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

    .page-jilihot-log-in__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-jilihot-log-in__card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Required for list-like items */
      word-wrap: break-word !important; /* Required for list-like items */
      overflow-wrap: break-word !important; /* Required for list-like items */
    }

    .page-jilihot-log-in__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-jilihot-log-in__card-icon {
      width: 200px; /* Min size for images */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-jilihot-log-in__card-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-jilihot-log-in__card-description {
      font-size: 1em;
      color: #ccc;
    }

    .page-jilihot-log-in__steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 0 20px;
    }

    .page-jilihot-log-in__step-item {
      display: flex;
      align-items: center;
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      box-sizing: border-box; /* Required for list-like items */
      word-wrap: break-word !important; /* Required for list-like items */
      overflow-wrap: break-word !important; /* Required for list-like items */
    }

    .page-jilihot-log-in__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--primary-color);
      margin-right: 25px;
      flex-shrink: 0;
      width: 60px;
      text-align: center;
    }

    .page-jilihot-log-in__step-content h3 {
      font-size: 1.6em;
      color: var(--secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-jilihot-log-in__step-content p {
      font-size: 1em;
      color: #ccc;
    }

    .page-jilihot-log-in__image-wrapper {
      text-align: center;
      margin-top: 50px;
      margin-bottom: 40px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-jilihot-log-in__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      display: block;
      margin: 0 auto; /* Center image */
    }

    /* FAQ Section */
    .page-jilihot-log-in__faq-section {
      padding: 60px 0;
      background-color: var(--background-light);
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-log-in__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-jilihot-log-in__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%; /* Required for list containers */
      max-width: 100%; /* Required for list containers */
      box-sizing: border-box; /* Required for list containers */
    }

    .page-jilihot-log-in__faq-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Required for list-like items */
      word-wrap: break-word !important; /* Required for list-like items */
      overflow-wrap: break-word !important; /* Required for list-like items */
    }

    .page-jilihot-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333;
      color: var(--text-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jilihot-log-in__faq-question:hover {
      background-color: #444;
    }

    .page-jilihot-log-in__faq-question h3 {
      margin: 0;
      color: var(--text-color);
      font-size: 1.2em; /* Match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-jilihot-log-in__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-jilihot-log-in__faq-item.active .page-jilihot-log-in__faq-toggle {
      transform: rotate(45deg);
    }

    .page-jilihot-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--background-dark);
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-jilihot-log-in__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }
    .page-jilihot-log-in__faq-answer p:last-child {
      margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jilihot-log-in__hero-title {
        font-size: 2.5em;
      }

      .page-jilihot-log-in__hero-description {
        font-size: 1em;
      }

      .page-jilihot-log-in__section-title,
      .page-jilihot-log-in__faq-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-jilihot-log-in__grid {
        grid-template-columns: 1fr;
      }

      .page-jilihot-log-in__card {
        padding: 20px;
      }

      .page-jilihot-log-in__card-icon {
        width: 150px;
        height: 150px;
      }

      .page-jilihot-log-in__card-title {
        font-size: 1.5em;
      }

      .page-jilihot-log-in__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .page-jilihot-log-in__step-number {
        margin-right: 0;
        margin-bottom: 15px;
        width: auto;
      }

      .page-jilihot-log-in__step-content h3 {
        font-size: 1.4em;
      }

      .page-jilihot-log-in__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-jilihot-log-in__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jilihot-log-in__faq-toggle {
        font-size: 1.5em;
      }

      .page-jilihot-log-in__faq-answer {
        padding: 15px 20px;
      }

      /* Mandatory list item responsive styles */
      .page-jilihot-log-in__card,
      .page-jilihot-log-in__step-item,
      .page-jilihot-log-in__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
      }
      .page-jilihot-log-in__grid,
      .page-jilihot-log-in__steps,
      .page-jilihot-log-in__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    /* Mandatory image responsive optimization */
    .page-jilihot-log-in__image,
    .page-jilihot-log-in__hero-background,
    .page-jilihot-log-in__card-icon {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-jilihot-log-in__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-jilihot-log-in__image,
      .page-jilihot-log-in__hero-background,
      .page-jilihot-log-in__card-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jilihot-log-in__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  