
    /* CSS cho trang jn88 */
    :root {
      --jn88-primary-color: #e44d26; /* Màu cam đậm */
      --jn88-secondary-color: #f7931e; /* Màu cam nhạt */
      --jn88-dark-bg: #1a1a1a; /* Nền tối */
      --jn88-light-text: #ffffff; /* Chữ sáng */
      --jn88-dark-text: #333333; /* Chữ tối */
      --jn88-gray-text: #cccccc; /* Chữ xám */
      --jn88-border-color: #333333; /* Màu viền */
      --jn88-hover-color: #ff6a00; /* Màu hover */
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    .page-jn88 {
      font-family: 'Arial', sans-serif;
      background-color: var(--jn88-dark-bg);
      color: var(--jn88-light-text);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header, only if body padding is not guaranteed */
    }

    /* Fixed navigation bar offset adjustment for the first section */
    .page-jn88__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body already has main offset */
    }
    
    .page-jn88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jn88__section-title {
      color: var(--jn88-primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-jn88__section-subtitle {
      color: var(--jn88-secondary-color);
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-jn88__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--jn88-gray-text);
    }

    /* Hero Section */
    .page-jn88__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:gaming,abstract,jn88]');
      background-size: cover;
      background-position: center;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--jn88-light-text);
      position: relative;
      overflow: hidden;
      padding-bottom: 80px; /* Make space for floating buttons */
    }

    .page-jn88__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-jn88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-jn88__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--jn88-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-transform: uppercase;
      font-weight: 900;
    }

    .page-jn88__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: var(--jn88-light-text);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-jn88__floating-buttons {
      position: fixed;
      bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-jn88__floating-button {
      background-color: var(--jn88-primary-color);
      color: var(--jn88-light-text);
      border: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-decoration: none; /* Ensure it looks like a button even if it's an <a> */
      display: inline-block;
      text-align: center;
    }

    .page-jn88__floating-button:hover {
      background-color: var(--jn88-hover-color);
      transform: translateY(-3px);
    }

    /* Games Section */
    .page-jn88__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center; /* Center items in the grid */
      align-items: stretch; /* Make cards same height */
    }

    .page-jn88__game-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      color: var(--jn88-light-text);
    }

    .page-jn88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

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

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

    .page-jn88__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--jn88-secondary-color);
      font-weight: bold;
    }

    .page-jn88__game-card-description {
      font-size: 0.95em;
      color: var(--jn88-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-jn88__game-card-button {
      background-color: var(--jn88-primary-color);
      color: var(--jn88-light-text);
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
      width: fit-content;
      margin: 0 auto;
    }

    .page-jn88__game-card-button:hover {
      background-color: var(--jn88-hover-color);
    }

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

    .page-jn88__promo-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
      color: var(--jn88-light-text);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-jn88__promo-card:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-jn88__promo-card-title {
      font-size: 1.6em;
      color: var(--jn88-secondary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-jn88__promo-card-description {
      font-size: 1em;
      color: var(--jn88-gray-text);
      margin-bottom: 20px;
    }

    .page-jn88__promo-card-button {
      background-color: var(--jn88-primary-color);
      color: var(--jn88-light-text);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
      align-self: flex-start; /* Align button to start */
    }

    .page-jn88__promo-card-button:hover {
      background-color: var(--jn88-hover-color);
    }

    /* Providers and Payments Section */
    .page-jn88__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .page-jn88__logo-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Uniform height for logos */
      transition: transform 0.3s ease;
    }

    .page-jn88__logo-item:hover {
      transform: scale(1.05);
    }

    .page-jn88__logo-image {
      max-width: 100%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-jn88__faq-section {
      text-align: left;
    }

    .page-jn88__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-jn88__faq-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      color: var(--jn88-light-text);
    }

    .page-jn88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      border-bottom: 1px solid var(--jn88-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-jn88__faq-question:hover {
      background-color: #444444;
    }

    .page-jn88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--jn88-secondary-color);
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-jn88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--jn88-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-jn88__faq-item.active .page-jn88__faq-toggle {
      transform: rotate(45deg); /* Plus to X for active state, visually like a minus */
    }
    
    .page-jn88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--jn88-gray-text);
    }

    .page-jn88__faq-item.active .page-jn88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Padding for expanded state */
      opacity: 1;
    }
    
    /* CTA Section */
    .page-jn88__cta-section {
      background-color: var(--jn88-primary-color);
      color: var(--jn88-light-text);
      padding: 60px 20px;
      text-align: center;
    }

    .page-jn88__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
      color: var(--jn88-light-text);
    }

    .page-jn88__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-jn88__cta-button {
      background-color: var(--jn88-light-text);
      color: var(--jn88-primary-color);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      display: inline-block;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-jn88__hero-title {
        font-size: 3em;
      }
      .page-jn88__hero-subtitle {
        font-size: 1.5em;
      }
      .page-jn88__section-title {
        font-size: 2em;
      }
      .page-jn88__floating-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-jn88__section {
        padding: 30px 15px;
      }
      .page-jn88__hero-title {
        font-size: 2.5em;
      }
      .page-jn88__hero-subtitle {
        font-size: 1.2em;
      }
      .page-jn88__floating-buttons {
        flex-direction: column;
        bottom: 10px;
        gap: 10px;
      }
      .page-jn88__floating-button {
        width: calc(100% - 40px); /* Adjust for padding */
        max-width: 300px;
        margin: 0 auto;
      }
      .page-jn88__games-grid,
      .page-jn88__promo-grid,
      .page-jn88__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-jn88__game-card-image {
        height: 180px;
      }
      .page-jn88__game-card-title {
        font-size: 1.3em;
      }
      .page-jn88__promo-card-title {
        font-size: 1.4em;
      }
      .page-jn88__cta-title {
        font-size: 2em;
      }
      .page-jn88__cta-description {
        font-size: 1em;
      }
      .page-jn88__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-jn88__faq-question {
        padding: 15px 20px;
      }
      .page-jn88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-jn88__faq-answer {
        padding: 0 20px;
      }
      .page-jn88__faq-item.active .page-jn88__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive optimization for mobile */
      .page-jn88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jn88__game-card-image, .page-jn88__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-jn88__game-card, .page-jn88__promo-card, .page-jn88__logo-item, .page-jn88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jn88__games-grid, .page-jn88__promo-grid, .page-jn88__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jn88__paragraph, .page-jn88__game-card-description, .page-jn88__promo-card-description, .page-jn88__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-jn88__hero-title {
        font-size: 2em;
      }
      .page-jn88__hero-subtitle {
        font-size: 1em;
      }
      .page-jn88__section-title {
        font-size: 1.8em;
      }
    }
  