
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #FF4500; /* OrangeRed */
      --text-color: #FFFFFF;
      --background-dark: #1a1a2e; /* Dark blue-purple */
      --background-light: #2e2e4a; /* Slightly lighter dark */
      --accent-color: #00BFFF; /* Deep Sky Blue */
      --border-color: #4a4a6e;
      --button-hover-color: #FF8C00; /* Dark Orange */
      --faq-question-bg: #3b3b5e;
      --faq-answer-bg: #2e2e4a;
    }

    /* Base styling for the page */
    .page-jilihot-8 {
      background-color: var(--background-dark);
      color: var(--text-color);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback padding for header */
      overflow-x: hidden;
    }

    .page-jilihot-8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-jilihot-8__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      background-color: var(--background-light);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-8__section--dark {
      background-color: var(--background-dark);
    }

    .page-jilihot-8__heading {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }

    .page-jilihot-8__subheading {
      color: var(--accent-color);
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-jilihot-8__paragraph {
      margin-bottom: 15px;
      text-align: justify;
      color: var(--text-color);
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-jilihot-8__hero-section {
      position: relative;
      padding: 10px 0 60px; /* Small decorative top padding */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      min-height: 500px;
      background: linear-gradient(135deg, var(--background-dark) 0%, #0f0f1d 100%);
    }

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

    .page-jilihot-8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    }

    .page-jilihot-8__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }

    .page-jilihot-8__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 25px;
    }

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

    .page-jilihot-8__cta-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

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

    .page-jilihot-8__category-card {
      background-color: var(--background-dark);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--border-color);
    }

    .page-jilihot-8__category-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-jilihot-8__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }

    .page-jilihot-8__category-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin: 20px 10px 10px;
      font-weight: bold;
    }

    .page-jilihot-8__category-description {
      font-size: 0.95em;
      color: var(--text-color);
      padding: 0 15px;
    }

    /* Game Providers Section */
    .page-jilihot-8__providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-jilihot-8__provider-item {
      background-color: var(--background-light);
      border: 1px solid var(--accent-color);
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 1.1em;
      color: var(--text-color);
      font-weight: bold;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding and border are included in width */
      text-align: center;
    }

    .page-jilihot-8__provider-item:hover {
      background-color: var(--accent-color);
      transform: translateY(-5px);
    }

    /* Payment Methods Section */
    .page-jilihot-8__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-jilihot-8__payment-item {
      background-color: var(--background-dark);
      border: 1px solid var(--primary-color);
      border-radius: 10px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: var(--text-color);
      font-weight: bold;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding and border are included in width */
      text-align: center;
    }

    .page-jilihot-8__payment-item:hover {
      background-color: var(--primary-color);
      color: var(--background-dark);
      transform: scale(1.05);
    }

    /* Promotions Section */
    .page-jilihot-8__promo-card {
      background-color: var(--background-dark);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--border-color);
      padding-bottom: 20px;
      margin-bottom: 25px;
    }

    .page-jilihot-8__promo-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-jilihot-8__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--border-color);
    }

    .page-jilihot-8__promo-title {
      font-size: 1.6em;
      color: var(--secondary-color);
      margin: 20px 10px 10px;
      font-weight: bold;
    }

    .page-jilihot-8__promo-description {
      font-size: 1em;
      color: var(--text-color);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-jilihot-8__faq-section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      background-color: var(--background-light);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    .page-jilihot-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--faq-question-bg);
      transition: background-color 0.3s ease;
      border-bottom: 1px solid var(--border-color);
    }

    .page-jilihot-8__faq-question:hover {
      background-color: var(--background-dark);
    }

    .page-jilihot-8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-jilihot-8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-jilihot-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      background-color: var(--faq-answer-bg);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color);
      font-size: 1em;
    }

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

    .page-jilihot-8__faq-item.active .page-jilihot-8__faq-toggle {
      transform: rotate(45deg); /* Rotate plus to become cross/minus */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jilihot-8__container {
        padding: 15px;
      }

      .page-jilihot-8__heading {
        font-size: 2em;
      }

      .page-jilihot-8__subheading {
        font-size: 1.5em;
      }

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

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

      .page-jilihot-8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-jilihot-8__category-image {
        height: 180px;
      }

      .page-jilihot-8__provider-item,
      .page-jilihot-8__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-jilihot-8__providers-list,
      .page-jilihot-8__payment-methods {
        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-8__promo-image {
        height: 200px;
      }

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

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

      .page-jilihot-8__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness */
      .page-jilihot-8 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jilihot-8__category-image,
      .page-jilihot-8__promo-image,
      .page-jilihot-8__hero-background {
        max-width: 100% !important;
        height: auto !important; /* Maintain aspect ratio */
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jilihot-8__hero-title {
        font-size: 2em;
      }
      .page-jilihot-8__hero-subtitle {
        font-size: 1em;
      }
    }
  