
    :root {
      --page-jilihot-co-primary-color: #ffcc00; /* Golden Yellow */
      --page-jilihot-co-secondary-color: #ff6600; /* Orange */
      --page-jilihot-co-dark-bg: #1a1a1a; /* Dark Grey */
      --page-jilihot-co-light-text: #ffffff; /* White */
      --page-jilihot-co-medium-grey: #333333; /* Medium Grey */
      --page-jilihot-co-light-grey: #f0f0f0; /* Light Grey */
      --page-jilihot-co-border-color: #444444;
      --page-jilihot-co-font-family: 'Arial', sans-serif;
    }

    .page-jilihot-co {
      font-family: var(--page-jilihot-co-font-family);
      color: var(--page-jilihot-co-light-text);
      background-color: var(--page-jilihot-co-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-jilihot-co__section {
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jilihot-co__section--dark {
      background-color: var(--page-jilihot-co-medium-grey);
    }

    .page-jilihot-co__section--light {
      background-color: var(--page-jilihot-co-dark-bg);
    }

    .page-jilihot-co__heading-primary {
      font-size: 3.2em;
      color: var(--page-jilihot-co-primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-jilihot-co__heading-tertiary {
      font-size: 1.8em;
      color: var(--page-jilihot-co-light-text);
      margin-bottom: 15px;
    }

    .page-jilihot-co__paragraph {
      font-size: 1.1em;
      color: var(--page-jilihot-co-light-text);
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jilihot-co__button {
      display: inline-block;
      background-color: var(--page-jilihot-co-secondary-color);
      color: var(--page-jilihot-co-light-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-jilihot-co__button:hover {
      background-color: #e65c00; /* Slightly darker orange */
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-jilihot-co__hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--page-jilihot-co-dark-bg);
      background-size: cover;
      background-position: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      text-align: center;
      position: relative;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-jilihot-co__hero-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }
    
    .page-jilihot-co__hero-image-overlay img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .page-jilihot-co__hero-content {
      position: relative;
      z-index: 1;
    }

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

    .page-jilihot-co__game-card {
      background-color: var(--page-jilihot-co-medium-grey);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-jilihot-co-light-text);
      text-align: left;
      border: 1px solid var(--page-jilihot-co-border-color);
      box-sizing: border-box;
    }

    .page-jilihot-co__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-co__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-jilihot-co__game-card-content {
      padding: 20px;
    }

    /* Payments & Providers */
    .page-jilihot-co__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-jilihot-co__logo-item {
      background-color: var(--page-jilihot-co-medium-grey);
      border-radius: 8px;
      padding: 15px 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      min-width: 180px;
      max-width: 220px;
      box-sizing: border-box;
      border: 1px solid var(--page-jilihot-co-border-color);
    }

    .page-jilihot-co__logo-item:hover {
      transform: translateY(-5px);
    }

    .page-jilihot-co__logo-image {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      display: block;
      margin-bottom: 10px;
    }

    .page-jilihot-co__logo-name {
      font-size: 0.9em;
      color: var(--page-jilihot-co-light-text);
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Why Choose Us */
    .page-jilihot-co__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-jilihot-co__feature-item {
      background-color: var(--page-jilihot-co-medium-grey);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--page-jilihot-co-border-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }
    
    .page-jilihot-co__feature-item:hover {
        background-color: #4a4a4a;
    }

    .page-jilihot-co__feature-item h3 {
      color: var(--page-jilihot-co-primary-color);
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.5em;
    }

    .page-jilihot-co__feature-item p {
      color: var(--page-jilihot-co-light-text);
      font-size: 1em;
    }

    /* FAQ Section */
    .page-jilihot-co__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-jilihot-co__faq-item {
      background-color: var(--page-jilihot-co-medium-grey);
      border: 1px solid var(--page-jilihot-co-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-jilihot-co__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
      user-select: none;
      color: var(--page-jilihot-co-light-text);
      box-sizing: border-box;
    }

    .page-jilihot-co__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-jilihot-co__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-jilihot-co-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jilihot-co__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-jilihot-co-secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-jilihot-co__faq-item.active .page-jilihot-co__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

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

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

    .page-jilihot-co__faq-answer p {
        margin: 0 0 10px 0;
        color: var(--page-jilihot-co-light-text);
    }
    .page-jilihot-co__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* External Link Button */
    .page-jilihot-co__external-link-button {
      background-color: var(--page-jilihot-co-primary-color);
      color: var(--page-jilihot-co-dark-bg);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      margin-top: 20px;
    }

    .page-jilihot-co__external-link-button:hover {
      background-color: #e6b800; /* Slightly darker yellow */
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jilihot-co__heading-primary {
        font-size: 2.2em;
      }

      .page-jilihot-co__heading-secondary {
        font-size: 1.8em;
      }

      .page-jilihot-co__heading-tertiary {
        font-size: 1.4em;
      }

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

      .page-jilihot-co__section {
        padding: 40px 15px;
      }

      .page-jilihot-co__hero {
        padding: 80px 15px;
      }

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

      .page-jilihot-co__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
      }

      .page-jilihot-co__logo-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-jilihot-co__feature-list {
        grid-template-columns: 1fr;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      
      .page-jilihot-co__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-jilihot-co__faq-question {
        padding: 12px 15px;
      }

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

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

      .page-jilihot-co__faq-answer {
        padding: 15px 15px;
      }
      .page-jilihot-co__faq-item.active .page-jilihot-co__faq-answer {
        padding: 15px 15px !important;
      }

      .page-jilihot-co__faq-list {
        padding: 0 10px;
      }
      
      /* Ensure all images are responsive */
      .page-jilihot-co img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jilihot-co__hero-image-overlay img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }
    }
  