
    /* CSS cho trang 88i */
    .page-88i {
      background-color: #000;
      color: #fff;
      font-family: 'Arial', sans-serif;
    }

    /* Đảm bảo khoảng cách an toàn cho banner/nội dung đầu tiên */
    .page-88i__hero-section {
      padding-top: 100px; /* Cho di động */
      position: relative;
      text-align: center;
      overflow: hidden;
      max-width: 100%;
      box-sizing: border-box;
      background-color: #000; /* Nền đen cho phần hero */
    }

    @media (min-width: 769px) {
      .page-88i__hero-section {
        padding-top: 120px; /* Cho máy tính để bàn */
      }
    }

    .page-88i__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-88i__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Giữ tỷ lệ gốc */
      border-radius: 8px;
    }

    .page-88i__hero-content {
      padding: 20px 15px 40px;
      text-align: center;
    }

    .page-88i__hero-title {
      font-size: 2.5em;
      color: #FFD700; /* Vàng */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-88i__hero-description {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 30px;
    }

    .page-88i__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      animation: page-88i__pulse 2s infinite;
    }

    .page-88i__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    @keyframes page-88i__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

    .page-88i__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88i__section-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-88i__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #FFD700;
      border-radius: 2px;
    }

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

    .page-88i__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 220px; /* Đảm bảo đủ không gian cho hình ảnh và văn bản */
    }

    .page-88i__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-88i__game-item-link {
      text-decoration: none;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      height: 100%;
    }

    .page-88i__game-image-wrapper {
      width: 100%;
      max-width: 180px; /* Giới hạn kích thước hình ảnh để không quá lớn */
      height: 120px; /* Giữ tỷ lệ */
      overflow: hidden;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-88i__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      border-radius: 5px;
    }

    .page-88i__game-title {
      font-size: 1.1em;
      color: #FFD700;
      font-weight: bold;
      margin-top: 10px;
      flex-grow: 1; /* Đảm bảo tiêu đề chiếm đủ không gian */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-88i__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-88i__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Chiều cao cố định cho logo nhà cung cấp */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88i__provider-item:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-88i__provider-logo {
      max-width: 100%;
      max-height: 60px; /* Giới hạn chiều cao của logo */
      height: auto;
      display: block;
      object-fit: contain;
    }

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

    .page-88i__advantage-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88i__advantage-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-88i__advantage-icon {
      width: 80px;
      height: auto;
      margin-bottom: 15px;
      display: block;
      object-fit: contain;
    }

    .page-88i__advantage-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-88i__advantage-description {
      color: #fff;
      font-size: 1em;
      line-height: 1.6;
    }

    .page-88i__text-content {
      text-align: left;
      margin-top: 20px;
      color: #fff;
      line-height: 1.7;
    }

    .page-88i__text-content h2 {
      color: #FFD700;
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-88i__text-content h3 {
      color: #FFD700;
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 10px;
    }

    .page-88i__text-content p {
      margin-bottom: 15px;
    }

    .page-88i__text-content ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-88i__text-content ol {
      list-style-type: decimal;
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .page-88i__text-content li {
      margin-bottom: 8px;
    }

    /* FAQ Section Styles */
    .page-88i__faq-section {
      background-color: #0a0a0a;
      padding: 50px 15px;
      max-width: 1000px;
      margin: 40px auto;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    }

    .page-88i__faq-section-title {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-88i__faq-section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-88i__faq-item {
      margin-bottom: 15px;
      border: 1px solid #333;
      border-radius: 8px;
      background-color: #1a1a1a;
      overflow: hidden;
    }

    .page-88i__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #222;
      color: #fff;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88i__faq-question:hover {
      background-color: #333;
    }

    .page-88i__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn sự kiện nhấp trên h3 */
    }

    .page-88i__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện nhấp trên biểu tượng toggle */
    }

    .page-88i__faq-item.active .page-88i__faq-toggle {
      transform: rotate(45deg);
    }

    .page-88i__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      font-size: 1em;
      line-height: 1.6;
    }

    .page-88i__faq-item.active .page-88i__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-88i__hero-title {
        font-size: 2em;
      }
      .page-88i__hero-description {
        font-size: 1em;
      }
      .page-88i__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
      .page-88i__section-title {
        font-size: 1.8em;
      }
      .page-88i__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      }
      .page-88i__game-item {
        min-height: 200px;
      }
      .page-88i__game-image-wrapper {
        max-width: 150px;
        height: 100px;
      }
      .page-88i__game-title {
        font-size: 1em;
      }
      .page-88i__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-88i__advantage-item {
        padding: 20px;
      }
      .page-88i__advantage-title {
        font-size: 1.2em;
      }
      .page-88i__advantage-icon {
        width: 70px;
      }
      .page-88i__faq-question {
        padding: 15px 20px;
      }
      .page-88i__faq-question h3 {
        font-size: 1.1em;
      }
      .page-88i__faq-answer {
        padding: 0 20px;
      }
      .page-88i__faq-item.active .page-88i__faq-answer {
        padding: 15px 20px !important;
      }

      /* Responsive image styles for mobile */
      .page-88i__hero-image,
      .page-88i__game-image,
      .page-88i__provider-logo,
      .page-88i__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88i__hero-image-wrapper,
      .page-88i__game-image-wrapper,
      .page-88i__provider-item,
      .page-88i__advantage-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  