
    :root {
      --page-jilihot-store__primary-color: #e53935; /* A vibrant red, common in gaming/casino themes */
      --page-jilihot-store__secondary-color: #ffb300; /* A golden yellow for accents */
      --page-jilihot-store__dark-text: #333333;
      --page-jilihot-store__light-text: #ffffff;
      --page-jilihot-store__background-light: #f5f5f5;
      --page-jilihot-store__background-dark: #212121;
      --page-jilihot-store__border-color: #e0e0e0;
      --page-jilihot-store__spacing-unit: 1rem;
    }

    .page-jilihot-store {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-jilihot-store__dark-text);
      background-color: var(--page-jilihot-store__background-light);
    }

    .page-jilihot-store__section {
      padding: calc(var(--page-jilihot-store__spacing-unit) * 3) var(--page-jilihot-store__spacing-unit);
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jilihot-store__section--dark {
      background-color: var(--page-jilihot-store__background-dark);
      color: var(--page-jilihot-store__light-text);
    }

    .page-jilihot-store__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: calc(var(--page-jilihot-store__spacing-unit) * 2);
      color: var(--page-jilihot-store__dark-text);
      font-weight: bold;
    }

    .page-jilihot-store__section--dark .page-jilihot-store__section-title {
      color: var(--page-jilihot-store__light-text);
    }

    .page-jilihot-store__hero-section {
      position: relative;
      background-color: var(--page-jilihot-store__background-dark);
      color: var(--page-jilihot-store__light-text);
      text-align: center;
      padding: 10px var(--page-jilihot-store__spacing-unit) calc(var(--page-jilihot-store__spacing-unit) * 5); /* Small top padding, assuming body handles header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      min-height: 500px;
    }

    .page-jilihot-store__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-jilihot-store__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-jilihot-store__hero-title {
      font-size: 3.5em;
      margin-bottom: var(--page-jilihot-store__spacing-unit);
      color: var(--page-jilihot-store__light-text);
      line-height: 1.2;
    }

    .page-jilihot-store__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: calc(var(--page-jilihot-store__spacing-unit) * 2);
      color: var(--page-jilihot-store__light-text);
    }

    .page-jilihot-store__cta-button {
      display: inline-block;
      background-color: var(--page-jilihot-store__primary-color);
      color: var(--page-jilihot-store__light-text);
      padding: var(--page-jilihot-store__spacing-unit) calc(var(--page-jilihot-store__spacing-unit) * 2);
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jilihot-store__cta-button:hover {
      background-color: #d32f2f;
    }

    .page-jilihot-store__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(var(--page-jilihot-store__spacing-unit) * 2);
    }

    .page-jilihot-store__game-card {
      background-color: var(--page-jilihot-store__light-text);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-jilihot-store__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-jilihot-store__game-info {
      padding: var(--page-jilihot-store__spacing-unit);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jilihot-store__game-title {
      font-size: 1.3em;
      margin-bottom: 0.5rem;
      color: var(--page-jilihot-store__primary-color);
    }

    .page-jilihot-store__game-description {
      font-size: 0.9em;
      color: var(--page-jilihot-store__dark-text);
      margin-bottom: var(--page-jilihot-store__spacing-unit);
    }

    .page-jilihot-store__provider-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-jilihot-store__spacing-unit);
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }

    .page-jilihot-store__provider-item {
      background-color: var(--page-jilihot-store__light-text);
      padding: calc(var(--page-jilihot-store__spacing-unit) * 0.8);
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-jilihot-store__dark-text);
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jilihot-store__provider-item:hover {
      background-color: var(--page-jilihot-store__secondary-color);
      color: var(--page-jilihot-store__light-text);
    }

    .page-jilihot-store__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(var(--page-jilihot-store__spacing-unit) * 2);
    }

    .page-jilihot-store__feature-card {
      background-color: var(--page-jilihot-store__light-text);
      padding: calc(var(--page-jilihot-store__spacing-unit) * 2);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-jilihot-store__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-jilihot-store__feature-icon {
      margin-bottom: var(--page-jilihot-store__spacing-unit);
      color: var(--page-jilihot-store__primary-color);
      font-size: 3em; /* Placeholder for icon, actual image will be used */
      display: block; /* Ensure it behaves like a block for margin */
      margin-left: auto;
      margin-right: auto;
      width: 100px; /* Example size for icon image placeholder */
      height: 100px; /* Example size for icon image placeholder */
      object-fit: contain;
    }

    .page-jilihot-store__feature-title {
      font-size: 1.4em;
      margin-bottom: var(--page-jilihot-store__spacing-unit);
      color: var(--page-jilihot-store__primary-color);
    }

    .page-jilihot-store__feature-description {
      font-size: 1em;
      color: var(--page-jilihot-store__dark-text);
    }

    .page-jilihot-store__faq-container {
      background-color: var(--page-jilihot-store__light-text);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      padding: calc(var(--page-jilihot-store__spacing-unit) * 2);
    }

    .page-jilihot-store__faq-item {
      border-bottom: 1px solid var(--page-jilihot-store__border-color);
      margin-bottom: var(--page-jilihot-store__spacing-unit);
      padding-bottom: var(--page-jilihot-store__spacing-unit);
    }

    .page-jilihot-store__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-jilihot-store__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 0;
      transition: background-color 0.3s ease;
    }

    .page-jilihot-store__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-jilihot-store__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-jilihot-store__dark-text);
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-jilihot-store__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-jilihot-store__primary-color);
      margin-left: var(--page-jilihot-store__spacing-unit);
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

    .page-jilihot-store__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-store__dark-text);
      font-size: 0.95em;
    }

    .page-jilihot-store__faq-item.active .page-jilihot-store__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }
    
    .page-jilihot-store__promo-banner {
      background-color: var(--page-jilihot-store__primary-color);
      color: var(--page-jilihot-store__light-text);
      padding: calc(var(--page-jilihot-store__spacing-unit) * 2);
      text-align: center;
      border-radius: 8px;
      margin-top: calc(var(--page-jilihot-store__spacing-unit) * 3);
    }

    .page-jilihot-store__promo-banner h2 {
      color: var(--page-jilihot-store__light-text);
      font-size: 2em;
      margin-bottom: var(--page-jilihot-store__spacing-unit);
    }

    .page-jilihot-store__promo-banner p {
      font-size: 1.1em;
      margin-bottom: calc(var(--page-jilihot-store__spacing-unit) * 1.5);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jilihot-store__section {
        padding: calc(var(--page-jilihot-store__spacing-unit) * 2) var(--page-jilihot-store__spacing-unit);
      }

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

      .page-jilihot-store__hero-title {
        font-size: 2.5em;
      }

      .page-jilihot-store__hero-subtitle {
        font-size: 1.2em;
      }

      .page-jilihot-store__cta-button {
        font-size: 1em;
        padding: 0.8rem 1.5rem;
      }

      .page-jilihot-store__game-grid,
      .page-jilihot-store__features-grid {
        grid-template-columns: 1fr;
      }

      /* Responsive list items */
      .page-jilihot-store__provider-list {
        grid-template-columns: 1fr; /* Stack items */
        gap: var(--page-jilihot-store__spacing-unit);
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-jilihot-store__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: calc(var(--page-jilihot-store__spacing-unit) * 0.8) var(--page-jilihot-store__spacing-unit) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-jilihot-store__game-image,
      .page-jilihot-store__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-jilihot-store__game-card,
      .page-jilihot-store__feature-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      
      .page-jilihot-store__faq-question h3 {
        font-size: 1.1em;
      }

      .page-jilihot-store__faq-answer {
        font-size: 0.9em;
      }
      
      .page-jilihot-store__promo-banner h2 {
        font-size: 1.5em;
      }
    }
  