
    :root {
      --page-jilifishing__primary-color: #007bff; /* Xanh dương */
      --page-jilifishing__secondary-color: #28a745; /* Xanh lá cây */
      --page-jilifishing__accent-color: #ffc107; /* Vàng */
      --page-jilifishing__dark-bg: #1a1a1a; /* Nền tối */
      --page-jilifishing__light-bg: #ffffff; /* Nền sáng */
      --page-jilifishing__text-color: #333333; /* Màu chữ chính */
      --page-jilifishing__light-text-color: #f8f9fa; /* Màu chữ sáng */
      --page-jilifishing__border-color: #e9ecef;
      --page-jilifishing__card-bg: #f8f9fa;
      --page-jilifishing__button-hover-color: #0056b3;
    }

    .page-jilifishing {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-jilifishing__text-color);
      background-color: var(--page-jilifishing__light-bg);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-jilifishing__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-jilifishing__light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-jilifishing__section--dark {
      background-color: var(--page-jilifishing__dark-bg);
      color: var(--page-jilifishing__light-text-color);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-jilifishing__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-jilifishing__hero-section {
      background: linear-gradient(135deg, #1f4037, #99f2c8); /* Gradient nền cho hero */
      color: var(--page-jilifishing__light-text-color);
      text-align: center;
      padding: 10px 20px 60px; /* Padding-top để tránh bị che bởi header cố định */
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-jilifishing__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-jilifishing__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      display: block;
      margin: 0 auto;
    }

    .page-jilifishing__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: var(--page-jilifishing__accent-color);
    }

    .page-jilifishing__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .page-jilifishing__button {
      display: inline-block;
      background-color: var(--page-jilifishing__primary-color);
      color: var(--page-jilifishing__light-text-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.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-jilifishing__button:hover {
      background-color: var(--page-jilifishing__button-hover-color);
      transform: translateY(-2px);
    }

    .page-jilifishing__button--accent {
      background-color: var(--page-jilifishing__accent-color);
      color: var(--page-jilifishing__dark-bg);
    }

    .page-jilifishing__button--accent:hover {
      background-color: #e0a800;
    }

    .page-jilifishing__heading {
      font-size: 2em;
      color: var(--page-jilifishing__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jilifishing__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-jilifishing__secondary-color);
      border-radius: 2px;
    }

    .page-jilifishing__heading--dark {
      color: var(--page-jilifishing__accent-color);
    }

    .page-jilifishing__sub-heading {
      font-size: 1.5em;
      color: var(--page-jilifishing__secondary-color);
      margin-top: 25px;
      margin-bottom: 15px;
      text-align: left;
    }

    .page-jilifishing__text {
      font-size: 1.05em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-jilifishing__list {
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-jilifishing__list-item {
      background-color: var(--page-jilifishing__card-bg);
      border-left: 5px solid var(--page-jilifishing__primary-color);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
    }

    .page-jilifishing__list-item--dark {
      background-color: #333;
      border-left-color: var(--page-jilifishing__accent-color);
      color: var(--page-jilifishing__light-text-color);
    }

    .page-jilifishing__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px 0;
      text-align: center;
    }

    .page-jilifishing__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      display: block;
      margin: 0 auto;
    }

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

    .page-jilifishing__game-card {
      background-color: var(--page-jilifishing__card-bg);
      border-radius: 10px;
      box-shadow: 0 6px 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;
      justify-content: space-between;
    }

    .page-jilifishing__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jilifishing__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 180px; /* Fixed height for consistency */
    }

    .page-jilifishing__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-jilifishing__game-card-content {
      padding: 20px;
    }

    .page-jilifishing__game-card-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-jilifishing__primary-color);
      font-weight: bold;
    }

    .page-jilifishing__game-card-text {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-jilifishing__game-card-link {
      display: inline-block;
      background-color: var(--page-jilifishing__secondary-color);
      color: var(--page-jilifishing__light-text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jilifishing__game-card-link:hover {
      background-color: #218838;
    }

    .page-jilifishing__promo-banner {
      background-color: var(--page-jilifishing__accent-color);
      color: var(--page-jilifishing__dark-bg);
      text-align: center;
      padding: 30px 20px;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-jilifishing__promo-title {
      font-size: 2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #b30000;
    }

    .page-jilifishing__promo-text {
      font-size: 1.2em;
      margin-bottom: 25px;
      line-height: 1.5;
    }

    .page-jilifishing__faq-section {
      background-color: var(--page-jilifishing__card-bg);
      padding: 40px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-jilifishing__faq-item {
      border: 1px solid var(--page-jilifishing__border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-jilifishing__faq-item.active {
      border-color: var(--page-jilifishing__primary-color);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-jilifishing__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--page-jilifishing__light-bg);
      cursor: pointer;
      font-weight: bold;
      color: var(--page-jilifishing__primary-color);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jilifishing__faq-question:hover {
      background-color: #eaf6ff;
    }

    .page-jilifishing__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-jilifishing__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jilifishing__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      color: var(--page-jilifishing__secondary-color);
    }

    .page-jilifishing__faq-item.active .page-jilifishing__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-jilifishing__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f0f8ff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-jilifishing__text-color);
      font-size: 1em;
    }

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

    .page-jilifishing__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-jilifishing__secondary-color);
      color: var(--page-jilifishing__light-text-color);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-jilifishing__floating-button:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jilifishing__hero-title {
        font-size: 2em;
      }

      .page-jilifishing__hero-subtitle {
        font-size: 1em;
      }

      .page-jilifishing__heading {
        font-size: 1.8em;
      }

      .page-jilifishing__sub-heading {
        font-size: 1.3em;
      }

      .page-jilifishing__section {
        padding: 30px 15px;
      }

      .page-jilifishing__game-grid {
        grid-template-columns: 1fr;
      }

      .page-jilifishing__promo-title {
        font-size: 1.5em;
      }

      .page-jilifishing__promo-text {
        font-size: 1em;
      }

      .page-jilifishing__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jilifishing__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-jilifishing__faq-question h3 {
        font-size: 1em;
      }

      .page-jilifishing__faq-answer {
        padding: 15px 15px !important; /* Ensure mobile padding is correct */
      }

      .page-jilifishing__hero-image,
      .page-jilifishing__content-image,
      .page-jilifishing__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jilifishing__hero-image-wrapper,
      .page-jilifishing__image-wrapper,
      .page-jilifishing__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  