
    :root {
      --primary-bg: #1a1a1a;
      --secondary-bg: #2a2a2a;
      --text-color: #f0f0f0;
      --accent-color: #ffd700; /* Gold */
      --button-hover-color: #e6c200;
      --border-color: #444;
      --faq-question-bg: #333;
      --faq-answer-bg: #222;
    }

    .page-50jili-com-download {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--primary-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding-top is not set by shared CSS */
    }

    /* General Section Styling */
    .page-50jili-com-download__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-50jili-com-download__section--dark {
      background-color: var(--secondary-bg);
    }

    .page-50jili-com-download__heading {
      font-size: 2.8em;
      color: var(--accent-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-50jili-com-download__subheading {
      font-size: 1.8em;
      color: var(--text-color);
      margin-bottom: 15px;
    }

    .page-50jili-com-download__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

    /* Hero Section */
    .page-50jili-com-download__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 10px 20px 80px; /* Decorative top padding, actual offset handled by main */
      text-align: center;
      min-height: 600px;
      background-color: var(--primary-bg);
    }

    .page-50jili-com-download__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-50jili-com-download__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-50jili-com-download__hero-title {
      font-size: 3.5em;
      color: var(--accent-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-50jili-com-download__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-50jili-com-download__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--primary-bg);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-50jili-com-download__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* Features/Benefits Section */
    .page-50jili-com-download__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-50jili-com-download__feature-card {
      background-color: var(--faq-question-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid var(--border-color);
    }

    .page-50jili-com-download__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-50jili-com-download__feature-icon {
      width: 100px; /* Min size is 200px, but this is a container for an image, the image itself will be larger */
      height: 100px; /* The image placeholder will handle the actual large image */
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-50jili-com-download__feature-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-50jili-com-download__feature-description {
      color: #bbb;
    }

    /* How-to-Download Section */
    .page-50jili-com-download__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-50jili-com-download__step-item {
      background-color: var(--faq-question-bg);
      padding: 25px 30px;
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-50jili-com-download__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--accent-color);
      margin-right: 20px;
      flex-shrink: 0;
      width: 40px;
      text-align: center;
    }

    .page-50jili-com-download__step-content h3 {
      font-size: 1.4em;
      color: var(--text-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-50jili-com-download__step-content p {
      color: #bbb;
      margin-bottom: 0;
      word-wrap: break-word; /* Ensure long text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Game Providers Section */
    .page-50jili-com-download__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-50jili-com-download__provider-logo {
      width: 180px; /* Larger size to avoid "small icon" issue */
      height: 100px; /* Maintain aspect ratio or adjust */
      object-fit: contain;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      border-radius: 5px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
      box-sizing: border-box;
    }

    .page-50jili-com-download__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* FAQ Section */
    .page-50jili-com-download__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-50jili-com-download__faq-item {
      background-color: var(--faq-question-bg);
      border: 1px solid var(--border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-50jili-com-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--text-color);
      transition: background-color 0.3s ease;
    }

    .page-50jili-com-download__faq-question:hover {
      background-color: #444;
    }

    .page-50jili-com-download__faq-question h3 {
      margin: 0;
      color: var(--text-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-50jili-com-download__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--accent-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-50jili-com-download__faq-item.active .page-50jili-com-download__faq-toggle {
      transform: rotate(45deg); /* Visually represent minus */
    }

    .page-50jili-com-download__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--faq-answer-bg);
      color: #bbb;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-50jili-com-download__faq-item.active .page-50jili-com-download__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Call to Action Section */
    .page-50jili-com-download__cta-section {
      background-color: var(--accent-color);
      color: var(--primary-bg);
      padding: 80px 20px;
      text-align: center;
    }

    .page-50jili-com-download__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-bg);
    }

    .page-50jili-com-download__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #333;
    }

    .page-50jili-com-download__cta-button {
      background-color: var(--primary-bg);
      color: var(--accent-color);
      padding: 18px 40px;
      border-radius: 8px;
      font-size: 1.4em;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-50jili-com-download__cta-button:hover {
      background-color: #333;
      color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-50jili-com-download__hero-title {
        font-size: 3em;
      }
      .page-50jili-com-download__hero-description {
        font-size: 1.2em;
      }
      .page-50jili-com-download__heading {
        font-size: 2.5em;
      }
      .page-50jili-com-download__subheading {
        font-size: 1.6em;
      }
      .page-50jili-com-download__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-50jili-com-download__section {
        padding: 40px 15px;
      }
      .page-50jili-com-download__hero-section {
        min-height: 500px;
        padding-bottom: 60px;
      }
      .page-50jili-com-download__hero-title {
        font-size: 2.5em;
      }
      .page-50jili-com-download__hero-description {
        font-size: 1.1em;
      }
      .page-50jili-com-download__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-50jili-com-download__heading {
        font-size: 2em;
      }
      .page-50jili-com-download__subheading {
        font-size: 1.4em;
      }
      .page-50jili-com-download__paragraph {
        font-size: 1em;
      }

      /* List items responsive */
      .page-50jili-com-download__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-50jili-com-download__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }

      .page-50jili-com-download__steps-list {
        gap: 15px;
      }
      .page-50jili-com-download__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-50jili-com-download__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-50jili-com-download__step-content h3 {
        font-size: 1.3em;
      }
      .page-50jili-com-download__step-content p {
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-50jili-com-download__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-50jili-com-download__provider-logo {
        width: 150px;
        height: 80px;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-50jili-com-download__faq-question {
        padding: 18px 20px;
        font-size: 1.1em;
      }
      .page-50jili-com-download__faq-question h3 {
        font-size: 1.1em;
      }
      .page-50jili-com-download__faq-answer {
        padding: 15px 20px;
      }

      .page-50jili-com-download__cta-section {
        padding: 60px 15px;
      }
      .page-50jili-com-download__cta-title {
        font-size: 2em;
      }
      .page-50jili-com-download__cta-description {
        font-size: 1.1em;
      }
      .page-50jili-com-download__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      /* Image responsiveness */
      .page-50jili-com-download__hero-image,
      .page-50jili-com-download__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-50jili-com-download__hero-image[style] { /* Specific override for the illustration image */
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-50jili-com-download__hero-title {
        font-size: 2em;
      }
      .page-50jili-com-download__hero-description {
        font-size: 1em;
      }
      .page-50jili-com-download__heading {
        font-size: 1.8em;
      }
      .page-50jili-com-download__subheading {
        font-size: 1.2em;
      }
      .page-50jili-com-download__cta-title {
        font-size: 1.8em;
      }
      .page-50jili-com-download__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
      .page-50jili-com-download__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-50jili-com-download__provider-logo {
        width: 120px;
        height: 70px;
      }
    }
  