
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #f8901c; /* A complementary color */
      --background-color: #1a1a1a; /* Dark background for gaming theme */
      --card-background: #2a2a2a;
      --text-color: #ffffff;
      --light-text-color: #cccccc;
      --border-color: #444444;
      --button-hover-color: #ff6a00;
      --faq-border-color: #3a3a3a;
      --faq-hover-bg: #333333;
    }

    .page-jilihot-test {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-color);
      background-color: var(--background-color);
      line-height: 1.6;
      padding-bottom: 60px; /* Space for sticky buttons */
    }

    /* Fallback for header offset if shared.css doesn't provide it */
    .page-jilihot-test {
      padding-top: var(--header-offset, 122px);
    }

    .page-jilihot-test__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-jilihot-test__section--dark {
      background-color: #121212;
    }

    .page-jilihot-test__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jilihot-test__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-jilihot-test__hero-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60vh;
      min-height: 400px;
      overflow: hidden;
      text-align: center;
      padding-top: 10px; /* Small top padding, assuming body already has header offset */
    }

    .page-jilihot-test__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-jilihot-test__hero-content {
      position: relative;
      z-index: 2;
      color: var(--text-color);
      max-width: 900px;
      padding: 20px;
    }

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

    .page-jilihot-test__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--light-text-color);
    }

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

    .page-jilihot-test__button:hover {
      background-color: var(--button-hover-color);
    }

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

    .page-jilihot-test__feature-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-test__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-jilihot-test__feature-icon {
      width: 100px; /* Min size 200x200px required, so this will be larger */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-jilihot-test__game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-jilihot-test__game-item {
      background-color: var(--card-background);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-jilihot-test__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

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

    .page-jilihot-test__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-jilihot-test__game-info {
      padding: 20px;
      text-align: left;
    }

    .page-jilihot-test__game-title {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-jilihot-test__game-provider {
      font-size: 0.9em;
      color: var(--light-text-color);
      margin-bottom: 15px;
    }

    .page-jilihot-test__promo-section {
      background-color: var(--primary-color);
      color: var(--text-color);
      padding: 60px 20px;
      text-align: center;
    }

    .page-jilihot-test__promo-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-jilihot-test__promo-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    .page-jilihot-test__promo-button {
      background-color: var(--background-color);
      color: var(--primary-color);
      padding: 18px 35px;
      font-size: 1.2em;
      border-radius: 10px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .page-jilihot-test__promo-button:hover {
      background-color: var(--card-background);
      color: var(--secondary-color);
    }

    .page-jilihot-test__faq-container {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jilihot-test__faq-item {
      border: 1px solid var(--faq-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--card-background);
    }

    .page-jilihot-test__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #333333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jilihot-test__faq-question:hover {
      background-color: var(--faq-hover-bg);
    }

    .page-jilihot-test__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-jilihot-test__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-jilihot-test__faq-item.active .page-jilihot-test__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-jilihot-test__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--light-text-color);
      opacity: 0;
    }

    .page-jilihot-test__faq-item.active .page-jilihot-test__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-jilihot-test__sticky-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-test__sticky-button {
      flex: 1;
      max-width: 180px;
      padding: 12px 15px;
      font-size: 1em;
      text-align: center;
      border-radius: 6px;
    }

    .page-jilihot-test__sticky-button--register {
      background-color: var(--secondary-color);
      color: var(--text-color);
    }

    .page-jilihot-test__sticky-button--register:hover {
      background-color: #fca031;
    }

    .page-jilihot-test__sticky-button--login {
      background-color: #555555;
      color: var(--text-color);
    }

    .page-jilihot-test__sticky-button--login:hover {
      background-color: #666666;
    }

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

      .page-jilihot-test__hero-subtitle {
        font-size: 1.1em;
      }

      .page-jilihot-test__section-title {
        font-size: 2em;
      }

      .page-jilihot-test__promo-title {
        font-size: 2em;
      }

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

      .page-jilihot-test__features-grid,
      .page-jilihot-test__game-gallery {
        grid-template-columns: 1fr;
      }

      .page-jilihot-test__feature-card,
      .page-jilihot-test__game-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jilihot-test__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jilihot-test__faq-answer {
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-jilihot-test__sticky-buttons {
        gap: 10px;
        padding: 8px 0;
      }

      .page-jilihot-test__sticky-button {
        padding: 10px 12px;
        font-size: 0.9em;
      }

      /* Ensure all images are responsive */
      .page-jilihot-test img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jilihot-test__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-test__hero-title {
        font-size: 2em;
      }
      .page-jilihot-test__hero-subtitle {
        font-size: 0.9em;
      }
      .page-jilihot-test__button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-jilihot-test__sticky-buttons {
        flex-direction: row;
        gap: 5px;
      }
      .page-jilihot-test__sticky-button {
        flex: 1;
        max-width: none;
      }
    }
  