
    /* CSS cho trang ACB8 */
    .page-acb8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-acb8__hero-section {
      position: relative;
      width: 100%;
      height: 280px; /* Chiều cao cố định cho banner trên di động */
      background-color: #004080;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 60px; /* Đảm bảo không bị che bởi header cố định */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-acb8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      z-index: 1;
      max-width: 100%;
      height: auto;
    }

    .page-acb8__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 15px;
      max-width: 900px;
    }

    .page-acb8__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-acb8__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #eee;
    }

    .page-acb8__promo-button-fixed {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      white-space: nowrap;
      max-width: 90%; /* Giới hạn chiều rộng trên di động */
      box-sizing: border-box;
    }

    .page-acb8__promo-button-fixed:hover {
      background-color: #e6b800;
      transform: translateX(-50%) translateY(-3px);
    }

    .page-acb8__section {
      padding: 30px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-acb8__section-title {
      font-size: 1.8em;
      color: #004080;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      width: auto;
    }

    .page-acb8__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-acb8__text-content strong {
      color: #004080;
    }

    .page-acb8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-acb8__game-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      padding-bottom: 15px;
    }

    .page-acb8__game-item:hover {
      transform: translateY(-5px);
    }

    .page-acb8__game-image-wrapper {
      width: 100%;
      height: 120px; /* Fixed height for game images on mobile */
      overflow: hidden;
      margin-bottom: 10px;
    }

    .page-acb8__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-acb8__game-title {
      font-size: 1.1em;
      color: #004080;
      margin: 0 10px;
    }

    .page-acb8__game-description {
      font-size: 0.9em;
      color: #666;
      margin: 5px 10px 0;
    }

    .page-acb8__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
    }

    .page-acb8__cta-button:hover {
      background-color: #0056b3;
    }

    /* FAQ Section Styles */
    .page-acb8__faq-section {
      padding: 30px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-acb8__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-acb8__faq-item {
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
      background-color: #fdfdfd;
    }

    .page-acb8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #eaf2f8;
      cursor: pointer;
      font-weight: bold;
      color: #004080;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-acb8__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-acb8__faq-question:hover {
      background-color: #dbe9f5;
    }

    .page-acb8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-acb8__faq-item.active .page-acb8__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
    }

    .page-acb8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      opacity: 0;
    }

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

    .page-acb8__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-acb8__hero-section {
        height: 400px; /* Chiều cao lớn hơn trên desktop */
        padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      }

      .page-acb8__hero-title {
        font-size: 3em;
      }

      .page-acb8__hero-subtitle {
        font-size: 1.3em;
      }

      .page-acb8__promo-button-fixed {
        padding: 15px 35px;
        font-size: 1.2em;
        bottom: 30px;
      }

      .page-acb8__section {
        padding: 40px 30px;
      }

      .page-acb8__section-title {
        font-size: 2.5em;
      }

      .page-acb8__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

      .page-acb8__game-image-wrapper {
        height: 150px;
      }

      .page-acb8__game-title {
        font-size: 1.2em;
      }

      .page-acb8__faq-section {
        padding: 40px 30px;
      }

      .page-acb8__faq-question h3 {
        font-size: 1.2em;
      }
    }

    /* Important responsive image rules for all images */
    @media (max-width: 768px) {
      .page-acb8 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-acb8__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-acb8__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-acb8__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  