
    /* Base styles for the page */
    .page-8k8-jili {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    .page-8k8-jili__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-jili__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-jili__section-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-8k8-jili__section--dark .page-8k8-jili__section-title {
      color: #ecf0f1;
    }

    .page-8k8-jili__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    .page-8k8-jili__section--dark .page-8k8-jili__section-description {
      color: #bdc3c7;
    }

    /* Hero Section */
    .page-8k8-jili__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Adjusted for body padding-top, 10px for decoration */
      background-color: #1a1a2e;
      color: #ffffff;
      text-align: center;
      overflow: hidden;
    }

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

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

    .page-8k8-jili__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.1;
      color: #f39c12; /* Bright accent color for title */
    }

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

    .page-8k8-jili__call-to-action {
      display: inline-block;
      padding: 15px 35px;
      background-color: #e74c3c; /* Striking button color */
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-jili__call-to-action:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

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

    .page-8k8-jili__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-8k8-jili__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-jili__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-jili__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-jili__game-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #2c3e50;
      font-weight: 600;
    }

    .page-8k8-jili__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-jili__game-button {
      display: inline-block;
      padding: 10px 25px;
      background-color: #3498db;
      color: #ffffff;
      font-size: 1em;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      margin-top: auto; /* Push button to the bottom */
    }

    .page-8k8-jili__game-button:hover {
      background-color: #2980b9;
    }

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

    .page-8k8-jili__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-8k8-jili__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: inline-block;
      object-fit: contain;
    }

    .page-8k8-jili__feature-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: 600;
    }

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

    /* How to Play Section */
    .page-8k8-jili__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-jili__step-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 calc(33% - 30px); /* 3 items per row */
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-8k8-jili__step-number {
      font-size: 2.5em;
      color: #e74c3c;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-jili__step-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

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

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

    .page-8k8-jili__promo-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-8k8-jili__promo-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-jili__promo-title {
      font-size: 1.6em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-jili__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8-jili__promo-button {
      display: inline-block;
      padding: 12px 28px;
      background-color: #f39c12;
      color: #ffffff;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      margin-top: auto;
    }

    .page-8k8-jili__promo-button:hover {
      background-color: #e67e22;
    }

    /* FAQ Section */
    .page-8k8-jili__faq-section {
      background-color: #ecf0f1;
    }

    .page-8k8-jili__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-jili__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8k8-jili__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #34495e;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: 600;
      border-bottom: 1px solid #4a627a;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-jili__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-8k8-jili__faq-question:hover {
      background-color: #2c3e50;
    }

    .page-8k8-jili__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-8k8-jili__faq-item.active .page-8k8-jili__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }

    .page-8k8-jili__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      background-color: #fcfcfc;
      color: #444;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    }

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

    /* General Image Styling */
    .page-8k8-jili img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-jili__hero-content {
        padding: 40px 15px;
      }

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

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

      .page-8k8-jili__call-to-action {
        padding: 12px 25px;
        font-size: 1.1em;
      }

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

      .page-8k8-jili__section-description {
        font-size: 1em;
      }

      .page-8k8-jili__games-grid,
      .page-8k8-jili__features-list,
      .page-8k8-jili__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-jili__step-item {
        flex: 1 1 100%;
      }

      .page-8k8-jili__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-8k8-jili__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-jili__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-jili__faq-item.active .page-8k8-jili__faq-answer {
        padding: 15px !important;
      }

      /* List item responsive requirements */
      .page-8k8-jili__games-grid > *,
      .page-8k8-jili__features-list > *,
      .page-8k8-jili__steps-list > *,
      .page-8k8-jili__promo-grid > * {
        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;
        word-break: break-word !important;
      }
      .page-8k8-jili__games-grid,
      .page-8k8-jili__features-list,
      .page-8k8-jili__steps-list,
      .page-8k8-jili__promo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-jili__hero-title {
        font-size: 2em;
      }

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

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

      .page-8k8-jili__game-title,
      .page-8k8-jili__feature-title,
      .page-8k8-jili__step-title,
      .page-8k8-jili__promo-title {
        font-size: 1.3em;
      }
    }
  