/* Base Styles */
    :root {
      --page-bg-color: #1a1a1a;
      --page-text-color: #e0e0e0;
      --page-heading-color: #ffffff;
      --page-accent-color: #ffcc00;
      --page-dark-gray: #2a2a2a;
      --page-medium-gray: #3a3a3a;
      --page-light-gray: #444;
      --page-border-color: #333;
    }

    .page-jili77-customer-service {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-bg-color);
      line-height: 1.6;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__section-title {
      font-size: 2.5em;
      color: var(--page-heading-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-jili77-customer-service__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-accent-color);
    }

    .page-jili77-customer-service__text-content {
      text-align: center;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jili77-customer-service__highlight {
      color: var(--page-accent-color);
      font-weight: bold;
    }

    .page-jili77-customer-service__button {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: var(--page-dark-gray);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 15px;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-jili77-customer-service__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-jili77-customer-service__hero-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 50px;
      padding-top: 10px; /* Minimal padding-top as body padding is handled by shared.css */
    }

    .page-jili77-customer-service__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__hero-content {
      position: relative;
      z-index: 1;
      color: var(--page-heading-color);
      padding: 30px;
      max-width: 800px;
    }

    .page-jili77-customer-service__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-heading-color);
    }

    .page-jili77-customer-service__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-text-color);
    }

    .page-jili77-customer-service__hero-cta-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-jili77-customer-service__hero-button {
      padding: 15px 35px;
      font-size: 1.1em;
      border-radius: 8px;
    }

    .page-jili77-customer-service__hero-button--primary {
      background-color: var(--page-accent-color);
      color: var(--page-dark-gray);
    }

    .page-jili77-customer-service__hero-button--secondary {
      background-color: transparent;
      border: 2px solid var(--page-accent-color);
      color: var(--page-accent-color);
    }

    .page-jili77-customer-service__hero-button--secondary:hover {
      background-color: var(--page-accent-color);
      color: var(--page-dark-gray);
    }

    /* Payment Providers Section (Logo Grid) */
    .page-jili77-customer-service__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 0;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      margin-bottom: 50px;
    }
    .page-jili77-customer-service__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-jili77-customer-service__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
    }
    .page-jili77-customer-service__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-jili77-customer-service__introduction-section {
      padding: 50px 20px;
      text-align: center;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
    }

    /* Quick Access Section */
    .page-jili77-customer-service__quick-access-section {
      padding: 50px 20px;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
    }

    .page-jili77-customer-service__access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jili77-customer-service__access-card {
      background-color: var(--page-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      color: var(--page-text-color);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__access-card:hover {
      transform: translateY(-5px);
      background-color: #4a4a4a;
    }

    .page-jili77-customer-service__access-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__access-title {
      font-size: 1.3em;
      color: var(--page-heading-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jili77-customer-service__access-description {
      font-size: 0.9em;
      color: #ccc;
      flex-grow: 1;
    }

    /* Games Section */
    .page-jili77-customer-service__games-section {
      padding: 50px 20px;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      text-align: center;
    }

    .page-jili77-customer-service__game-tabs {
      margin-top: 40px;
    }

    .page-jili77-customer-service__tab-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
    }

    .page-jili77-customer-service__tab-button {
      background-color: var(--page-medium-gray);
      color: var(--page-text-color);
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__tab-button.active {
      background-color: var(--page-accent-color);
      color: var(--page-dark-gray);
    }

    .page-jili77-customer-service__tab-button:hover:not(.active) {
      background-color: #555;
    }

    .page-jili77-customer-service__tab-content {
      display: none;
      padding: 30px;
      background-color: var(--page-medium-gray);
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__tab-content.active {
      display: block;
    }

    .page-jili77-customer-service__tab-content-title {
      font-size: 2em;
      color: var(--page-heading-color);
      margin-bottom: 20px;
    }

    .page-jili77-customer-service__tab-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    /* Promotions Section */
    .page-jili77-customer-service__promotions-section {
      padding: 50px 20px;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      text-align: center;
    }

    .page-jili77-customer-service__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jili77-customer-service__promo-card {
      background-color: var(--page-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-jili77-customer-service__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      display: block;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__promo-title {
      font-size: 1.4em;
      color: var(--page-heading-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jili77-customer-service__promo-description {
      font-size: 0.95em;
      color: #ccc;
      flex-grow: 1;
    }

    /* Security & Customer Service Section */
    .page-jili77-customer-service__security-section {
      padding: 50px 20px;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      text-align: center;
    }

    .page-jili77-customer-service__security-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jili77-customer-service__security-item {
      background-color: var(--page-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-jili77-customer-service__security-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__security-title {
      font-size: 1.3em;
      color: var(--page-heading-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-jili77-customer-service__faq-section {
      padding: 50px 20px;
      margin-bottom: 50px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
    }

    .page-jili77-customer-service__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jili77-customer-service__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-dark-gray);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom 0.3s ease;
    }

    .page-jili77-customer-service__faq-question:hover {
      background-color: var(--page-medium-gray);
    }

    .page-jili77-customer-service__faq-q-title {
      margin: 0;
      color: var(--page-heading-color);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jili77-customer-service__faq-toggle {
      font-size: 1.5em;
      color: var(--page-accent-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-jili77-customer-service__faq-item.active .page-jili77-customer-service__faq-question {
      border-bottom: 1px solid var(--page-light-gray);
    }

    .page-jili77-customer-service__faq-item.active .page-jili77-customer-service__faq-toggle {
      transform: rotate(45deg); /* Visually changes + to X */
    }

    .page-jili77-customer-service__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #1e1e1e;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__faq-item.active .page-jili77-customer-service__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important;
      opacity: 1;
    }

    .page-jili77-customer-service__faq-answer p {
      margin: 0;
      line-height: 1.6;
    }

    /* Latest Blog Content Section */
    .page-jili77-customer-service__blog-section {
      padding: 50px 20px;
      background-color: var(--page-dark-gray);
      border-radius: 10px;
      text-align: center;
    }

    .page-jili77-customer-service__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jili77-customer-service__blog-card {
      background-color: var(--page-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-jili77-customer-service__blog-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      display: block;
      box-sizing: border-box;
    }

    .page-jili77-customer-service__blog-card-title {
      font-size: 1.3em;
      color: var(--page-heading-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jili77-customer-service__blog-description {
      font-size: 0.95em;
      color: #ccc;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-jili77-customer-service__blog-card .page-jili77-customer-service__button {
      align-self: flex-start;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-jili77-customer-service__hero-title {
        font-size: 3em;
      }
      .page-jili77-customer-service__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-jili77-customer-service {
        padding: 15px;
      }
      .page-jili77-customer-service__hero-section {
        min-height: 400px;
        padding-top: 5px;
      }
      .page-jili77-customer-service__hero-content {
        padding: 20px;
      }
      .page-jili77-customer-service__hero-title {
        font-size: 2.2em;
      }
      .page-jili77-customer-service__hero-description {
        font-size: 1em;
      }
      .page-jili77-customer-service__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-jili77-customer-service__hero-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-jili77-customer-service__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-jili77-customer-service__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 30px 0;
      }
      .page-jili77-customer-service__payment-logo,
      .page-jili77-customer-service__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }
      .page-jili77-customer-service__logo-grid {
        gap: 16px;
      }

      .page-jili77-customer-service__introduction-section,
      .page-jili77-customer-service__quick-access-section,
      .page-jili77-customer-service__games-section,
      .page-jili77-customer-service__promotions-section,
      .page-jili77-customer-service__security-section,
      .page-jili77-customer-service__faq-section,
      .page-jili77-customer-service__blog-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }

      .page-jili77-customer-service__access-grid,
      .page-jili77-customer-service__promo-grid,
      .page-jili77-customer-service__security-content,
      .page-jili77-customer-service__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
      }

      .page-jili77-customer-service__access-card,
      .page-jili77-customer-service__promo-card,
      .page-jili77-customer-service__security-item,
      .page-jili77-customer-service__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px;
      }

      .page-jili77-customer-service__access-icon,
      .page-jili77-customer-service__security-icon {
        width: 80px;
        height: 80px;
      }

      .page-jili77-customer-service__tab-buttons {
        gap: 10px;
        margin-bottom: 20px;
      }

      .page-jili77-customer-service__tab-button {
        font-size: 0.9em;
        padding: 8px 15px;
      }

      .page-jili77-customer-service__tab-content {
        padding: 20px;
      }

      .page-jili77-customer-service__tab-content-title {
        font-size: 1.5em;
      }

      .page-jili77-customer-service__faq-question {
        padding: 12px 15px;
      }
      .page-jili77-customer-service__faq-q-title {
        font-size: 1em;
      }
      .page-jili77-customer-service__faq-toggle {
        font-size: 1.3em;
      }
      .page-jili77-customer-service__faq-answer {
        padding: 0 15px;
      }
      .page-jili77-customer-service__faq-item.active .page-jili77-customer-service__faq-answer {
        padding: 15px !important;
      }

      /* General image responsiveness */
      img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-jili77-customer-service__access-card,
      .page-jili77-customer-service__promo-card,
      .page-jili77-customer-service__security-item,
      .page-jili77-customer-service__blog-card {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jili77-customer-service__access-grid > a,
      .page-jili77-customer-service__promo-grid > div,
      .page-jili77-customer-service__security-content > div,
      .page-jili77-customer-service__blog-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-jili77-customer-service__hero-title {
        font-size: 1.8em;
      }
      .page-jili77-customer-service__section-title {
        font-size: 1.5em;
      }
    }