/* General Styling */
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #1A1A1A; /* Dark Grey */
      --accent-color: #007BFF; /* Blue */
      --text-color-light: #FFFFFF;
      --text-color-dark: #333333;
      --background-dark: #222222;
      --background-light: #F8F9FA;
      --border-color: #444444;
      --button-hover-color: #E0B800;
      --header-offset: 122px; /* Fallback value, will be overridden by shared if present */
    }

    .page-80jili-download-free {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
    }

    .page-80jili-download-free__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-80jili-download-free__section-title {
      font-size: 2.5em;
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-80jili-download-free__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-80jili-download-free__section-description {
      text-align: center;
      font-size: 1.1em;
      color: var(--text-color-dark);
      margin-bottom: 40px;
    }

    /* Buttons */
    .page-80jili-download-free__hero-button,
    .page-80jili-download-free__access-button,
    .page-80jili-download-free__game-button,
    .page-80jili-download-free__promo-button,
    .page-80jili-download-free__contact-button,
    .page-80jili-download-free__blog-readmore {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-80jili-download-free__hero-button:hover,
    .page-80jili-download-free__access-button:hover,
    .page-80jili-download-free__game-button:hover,
    .page-80jili-download-free__promo-button:hover,
    .page-80jili-download-free__contact-button:hover,
    .page-80jili-download-free__blog-readmore:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Images */
    .page-80jili-download-free img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      box-sizing: border-box;
    }

    /* HERO Section */
    .page-80jili-download-free__hero-section {
      background: linear-gradient(135deg, var(--background-dark), #333333);
      color: var(--text-color-light);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding for visual separation from fixed header */
    }

    .page-80jili-download-free__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-80jili-download-free__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      line-height: 1.2;
    }

    .page-80jili-download-free__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 40px;
      opacity: 0.9;
    }

    .page-80jili-download-free__hero-image-wrapper {
      margin-top: 50px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      display: inline-block; /* To center the image wrapper */
    }

    .page-80jili-download-free__hero-image {
      border-radius: 15px;
    }

    /* Partner Logos Section */
    .page-80jili-download-free__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 40px 20px;
      background-color: var(--background-dark);
    }

    .page-80jili-download-free__payment-providers .page-80jili-download-free__section-title {
      color: var(--text-color-light);
      width: 100%;
      margin-bottom: 20px;
    }

    .page-80jili-download-free__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      width: 100%;
    }

    .page-80jili-download-free__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      filter: grayscale(100%) brightness(150%);
      transition: filter 0.3s ease;
    }

    .page-80jili-download-free__payment-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }

    .page-80jili-download-free__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Introduction Section */
    .page-80jili-download-free__introduction-section {
      padding: 80px 0;
      background-color: var(--background-light);
    }

    .page-80jili-download-free__intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-80jili-download-free__intro-item {
      background-color: #FFFFFF;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-80jili-download-free__intro-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-80jili-download-free__intro-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-80jili-download-free__intro-heading {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-80jili-download-free__intro-text {
      color: var(--text-color-dark);
    }

    .page-80jili-download-free__intro-paragraph {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      color: var(--text-color-dark);
    }

    /* Quick Access Section */
    .page-80jili-download-free__quick-access-section {
      background-color: var(--background-dark);
      padding: 60px 0;
      text-align: center;
    }

    .page-80jili-download-free__quick-access-section .page-80jili-download-free__section-title {
      color: var(--text-color-light);
    }

    .page-80jili-download-free__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-80jili-download-free__access-button {
      padding: 12px 25px;
      font-size: 1em;
      border-radius: 8px;
      background-color: var(--accent-color);
      color: var(--text-color-light);
    }

    .page-80jili-download-free__access-button:hover {
      background-color: #0056b3;
    }

    /* Games Section */
    .page-80jili-download-free__games-section {
      padding: 80px 0;
      background-color: var(--background-light);
    }

    .page-80jili-download-free__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-80jili-download-free__game-card {
      background-color: #FFFFFF;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-80jili-download-free__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-80jili-download-free__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-80jili-download-free__game-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-80jili-download-free__game-description {
      font-size: 0.95em;
      color: var(--text-color-dark);
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-80jili-download-free__game-button {
      display: block;
      width: calc(100% - 60px);
      margin: 0 30px 20px;
      padding: 10px 15px;
      font-size: 0.95em;
      border-radius: 5px;
    }

    /* Promotions Section */
    .page-80jili-download-free__promotions-section {
      padding: 80px 0;
      background-color: var(--background-dark);
    }

    .page-80jili-download-free__promotions-section .page-80jili-download-free__section-title,
    .page-80jili-download-free__promotions-section .page-80jili-download-free__section-description {
      color: var(--text-color-light);
    }

    .page-80jili-download-free__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-80jili-download-free__promo-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-80jili-download-free__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .page-80jili-download-free__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-80jili-download-free__promo-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-80jili-download-free__promo-text {
      font-size: 0.95em;
      color: #CCCCCC;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-80jili-download-free__promo-button {
      display: block;
      width: calc(100% - 60px);
      margin: 0 30px 20px;
      padding: 10px 15px;
      font-size: 0.95em;
      border-radius: 5px;
    }

    /* Security & Support Section */
    .page-80jili-download-free__security-support-section {
      padding: 80px 0;
      background-color: var(--background-light);
      text-align: center;
    }

    .page-80jili-download-free__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .page-80jili-download-free__info-item {
      background-color: #FFFFFF;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-80jili-download-free__info-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-80jili-download-free__info-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-80jili-download-free__info-heading {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-80jili-download-free__info-text {
      color: var(--text-color-dark);
    }

    .page-80jili-download-free__contact-button {
      margin-top: 20px;
      background-color: var(--accent-color);
      color: var(--text-color-light);
    }

    /* FAQ Section */
    .page-80jili-download-free__faq-section {
      padding: 80px 0;
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-80jili-download-free__faq-section .page-80jili-download-free__section-title {
      color: var(--text-color-light);
    }

    .page-80jili-download-free__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-80jili-download-free__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-80jili-download-free__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #444444;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-80jili-download-free__faq-question:hover {
      background-color: #555555;
    }

    .page-80jili-download-free__faq-heading {
      font-size: 1.2em;
      color: var(--primary-color);
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event on parent div */
    }

    .page-80jili-download-free__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event on parent div */
    }

    .page-80jili-download-free__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #3A3A3A;
      color: #CCCCCC;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-80jili-download-free__faq-answer p {
      margin: 0;
      padding-bottom: 20px;
    }

    .page-80jili-download-free__faq-item.active .page-80jili-download-free__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-80jili-download-free__faq-item.active .page-80jili-download-free__faq-toggle {
      transform: rotate(45deg); /* Changes + to an X or diamond shape */
    }

    /* Blog Section */
    .page-80jili-download-free__blog-section {
      padding: 80px 0;
      background-color: var(--background-light);
    }

    .page-80jili-download-free__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-80jili-download-free__blog-card {
      background-color: #FFFFFF;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-80jili-download-free__blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-80jili-download-free__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-80jili-download-free__blog-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin: 15px 15px 10px;
      line-height: 1.3;
    }

    .page-80jili-download-free__blog-title a {
      text-decoration: none;
      color: var(--secondary-color);
      transition: color 0.3s ease;
    }

    .page-80jili-download-free__blog-title a:hover {
      color: var(--primary-color);
    }

    .page-80jili-download-free__blog-excerpt {
      font-size: 0.95em;
      color: var(--text-color-dark);
      margin: 0 15px 20px;
    }

    .page-80jili-download-free__blog-readmore {
      display: block;
      width: calc(100% - 60px);
      margin: 0 30px 20px;
      padding: 10px 15px;
      font-size: 0.9em;
      border-radius: 5px;
      background-color: var(--accent-color);
      color: var(--text-color-light);
    }

    .page-80jili-download-free__blog-readmore:hover {
      background-color: #0056b3;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-80jili-download-free__hero-title {
        font-size: 3em;
      }
      .page-80jili-download-free__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-80jili-download-free__hero-section {
        padding: 60px 0;
      }
      .page-80jili-download-free__hero-title {
        font-size: 2.5em;
      }
      .page-80jili-download-free__hero-subtitle {
        font-size: 1.1em;
      }
      .page-80jili-download-free__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-80jili-download-free__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-80jili-download-free__section-description {
        font-size: 1em;
      }

      .page-80jili-download-free__payment-providers {
        flex-direction: row; /* Ensure row even on mobile */
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px; /* Adjusted gap for mobile */
        padding: 30px 15px;
      }
      .page-80jili-download-free__payment-logo,
      .page-80jili-download-free__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-80jili-download-free__intro-grid,
      .page-80jili-download-free__game-grid,
      .page-80jili-download-free__promo-grid,
      .page-80jili-download-free__info-grid,
      .page-80jili-download-free__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-80jili-download-free__access-buttons {
        flex-direction: column;
        gap: 15px;
      }

      /* List item responsive (general rule for all lists) */
      .page-80jili-download-free__intro-item,
      .page-80jili-download-free__game-card,
      .page-80jili-download-free__promo-card,
      .page-80jili-download-free__info-item,
      .page-80jili-download-free__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      .page-80jili-download-free__intro-item p,
      .page-80jili-download-free__game-card p,
      .page-80jili-download-free__promo-card p,
      .page-80jili-download-free__info-item p,
      .page-80jili-download-free__blog-card p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-80jili-download-free__faq-question {
        padding: 15px 20px;
      }
      .page-80jili-download-free__faq-heading {
        font-size: 1.1em;
      }
      .page-80jili-download-free__faq-answer {
        padding: 0 20px;
      }
      .page-80jili-download-free__faq-item.active .page-80jili-download-free__faq-answer {
        padding: 15px 20px !important;
      }

      .page-80jili-download-free__blog-readmore,
      .page-80jili-download-free__game-button,
      .page-80jili-download-free__promo-button {
        width: calc(100% - 40px); /* Adjust for 20px padding on card */
        margin: 0 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-80jili-download-free__hero-title {
        font-size: 2em;
      }
      .page-80jili-download-free__hero-subtitle {
        font-size: 1em;
      }
      .page-80jili-download-free__section-title {
        font-size: 1.5em;
      }
      .page-80jili-download-free__faq-heading {
        font-size: 1em;
      }
    }