
    /* Base styles for the page */
    .page-8k8-jili {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header spacing */
    }

    .page-8k8-jili__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-jili__section--dark {
      background-color: #2a2a2a;
      color: #f0f0f0;
    }

    .page-8k8-jili__section-title {
      text-align: center;
      color: #0056b3; /* A strong blue for titles */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-jili__section--dark .page-8k8-jili__section-title {
      color: #ffe0b2; /* Lighter color for dark background */
    }

    .page-8k8-jili__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-8k8-jili__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      min-height: 500px;
      padding: 10px 20px 40px 20px; /* Small top padding for decoration */
    }

    .page-8k8-jili__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-8k8-jili__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-8k8-jili__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-jili__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-jili__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-8k8-jili__cta-button {
      display: inline-block;
      background-color: #ffc107; /* A vibrant yellow for CTA */
      color: #333;
      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; /* Use button tag, so no default border */
      cursor: pointer;
    }

    .page-8k8-jili__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-8k8-jili__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-jili__feature-item {
      background-color: #e3f2fd; /* Light blue background */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-jili__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-jili__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-8k8-jili__feature-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-jili__feature-description {
      font-size: 1em;
      color: #555;
    }

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

    .page-8k8-jili__game-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-jili__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-jili__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
    }

    .page-8k8-jili__game-info {
      padding: 15px;
    }

    .page-8k8-jili__game-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-jili__game-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Promotions Section */
    .page-8k8-jili__promotion-card {
      display: flex;
      flex-direction: column;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-top: 30px;
    }

    .page-8k8-jili__promotion-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .page-8k8-jili__promotion-content {
      padding: 25px;
      text-align: center;
    }

    .page-8k8-jili__promotion-title {
      font-size: 2em;
      color: #d9534f; /* Reddish for promotions */
      margin-bottom: 15px;
    }

    .page-8k8-jili__promotion-details {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-8k8-jili__faq-container {
      margin-top: 30px;
    }

    .page-8k8-jili__faq-item {
      background-color: #e0f7fa; /* Very light blue */
      border: 1px solid #b2ebf2;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-jili__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #00796b; /* Dark cyan */
      cursor: pointer;
      user-select: none;
      background-color: #e0f7fa;
      transition: background-color 0.3s ease;
    }

    .page-8k8-jili__faq-question:hover {
      background-color: #cfd8dc; /* Lighter grey on hover */
    }

    .page-8k8-jili__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #00796b;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-jili__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-toggle {
      transform: rotate(45deg); /* Plus to X rotation */
    }

    .page-8k8-jili__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;
      background-color: #ffffff;
      color: #444;
      border-top: 1px solid #b2ebf2;
    }

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-jili__section {
        padding: 30px 15px;
      }

      .page-8k8-jili__section-title {
        font-size: 2em;
      }

      .page-8k8-jili__hero-section {
        min-height: 400px;
        padding-bottom: 30px;
      }

      .page-8k8-jili__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-jili__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-8k8-jili__features-grid,
      .page-8k8-jili__game-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
      }

      .page-8k8-jili__feature-item,
      .page-8k8-jili__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-jili__game-image {
        height: 180px;
      }

      .page-8k8-jili__promotion-image {
        height: 200px;
      }

      .page-8k8-jili__promotion-title {
        font-size: 1.5em;
      }

      .page-8k8-jili__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-8k8-jili__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-jili__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8-jili img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Image containers for responsiveness */
    .page-8k8-jili__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    /* List item responsiveness for ul/ol */
    .page-8k8-jili__list {
      list-style: disc;
      padding-left: 20px;
      margin-top: 20px;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    .page-8k8-jili__list-item {
      margin-bottom: 10px;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }
    @media (max-width: 768px) {
      .page-8k8-jili__list {
        padding-left: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-jili__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Ensure no extra padding from parent */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }
  