
    /* 页面专用CSS样式 */
    .page-88aa1 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Đen */
      color: #FFFFFF; /* Trắng */
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    .page-88aa1__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Vùng an toàn cho thanh điều hướng cố định */
    .page-88aa1__hero-section {
      padding-top: 150px; /* Vùng an toàn cho desktop */
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-88aa1__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Căn giữa */
      object-fit: cover; /* Đảm bảo hình ảnh bao phủ khu vực mà không bị biến dạng */
      border-radius: 8px;
    }

    .page-88aa1__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: -80px; /* Điều chỉnh nếu nội dung chồng lên hình ảnh */
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
      padding-bottom: 40px;
    }

    .page-88aa1__main-heading {
      color: #FFD700; /* Vàng */
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-88aa1__sub-heading {
      color: #FFFFFF; /* Trắng */
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-88aa1__button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-88aa1__button:hover {
      background-color: #e6c200; /* Vàng đậm hơn */
    }

    .page-88aa1__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-88aa1__section-title {
      color: #FFD700; /* Vàng */
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-88aa1__text-content {
      color: #FFFFFF; /* Trắng */
      margin-bottom: 20px;
    }

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

    .page-88aa1__game-card,
    .page-88aa1__provider-card {
      background-color: #1a1a1a; /* Xám đậm */
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px; /* Đảm bảo thẻ có chiều cao tối thiểu */
    }

    .page-88aa1__game-card:hover,
    .page-88aa1__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-88aa1__game-image,
    .page-88aa1__provider-image {
      width: 100%;
      max-width: 120px; /* Chiều rộng tối đa cho logo */
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      object-fit: contain; /* Đối với logo, đảm bảo chúng vừa vặn mà không bị cắt */
    }
    
    .page-88aa1__game-image {
        max-width: 180px; /* Lớn hơn cho các loại trò chơi */
        border-radius: 8px;
    }

    .page-88aa1__game-title,
    .page-88aa1__provider-name {
      color: #FFD700; /* Vàng */
      font-weight: bold;
      font-size: 1.1em;
      margin-top: 5px;
    }

    .page-88aa1__game-title a,
    .page-88aa1__provider-name a {
        color: #FFD700;
        text-decoration: none;
    }

    .page-88aa1__game-title a:hover,
    .page-88aa1__provider-name a:hover {
        text-decoration: underline;
    }

    .page-88aa1__promo-banner {
      background-color: #222222; /* Xám đậm */
      padding: 30px;
      border-radius: 8px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-88aa1__promo-title {
      color: #FFD700; /* Vàng */
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-88aa1__promo-description {
      color: #FFFFFF; /* Trắng */
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-88aa1__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-88aa1__payment-item {
      background-color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      color: #FFFFFF;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-88aa1__payment-logo {
        width: 60px; /* Logo thanh toán lớn hơn */
        height: auto;
        object-fit: contain;
    }

    /* FAQ Section Styles */
    .page-88aa1__faq-section {
      text-align: left;
      padding-bottom: 60px;
    }

    .page-88aa1__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-88aa1__faq-item {
      background-color: #1a1a1a; /* Xám đậm */
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-88aa1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #222222; /* Xám đen */
      color: #FFD700; /* Vàng */
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-bottom: 1px solid #333333;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88aa1__faq-question:hover {
      background-color: #333333; /* Xám đen nhạt hơn khi hover */
    }

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

    .page-88aa1__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: #FFFFFF; /* Trắng */
      pointer-events: none; /* Ngăn nút chuyển đổi chặn sự kiện nhấp */
    }

    .page-88aa1__faq-item.active .page-88aa1__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành 'x' hoặc tương tự, hoặc chỉ thay đổi văn bản */
      content: '−'; /* Thay đổi thông qua JS */
    }

    .page-88aa1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #FFFFFF; /* Trắng */
      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-88aa1__faq-item.active .page-88aa1__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px !important;
      opacity: 1;
    }

    /* Floating Buttons */
    .page-88aa1__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-88aa1__floating-button {
      display: flex;
      align-items: center;
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
    }

    .page-88aa1__floating-button:hover {
      background-color: #e6c200; /* Vàng đậm hơn */
      transform: translateY(-2px);
    }

    /* Tất cả hình ảnh phản hồi */
    .page-88aa1 img {
        max-width: 100%;
        height: auto;
        display: block; /* Xóa khoảng trống thừa bên dưới hình ảnh */
    }

    /* Container cho hình ảnh phản hồi */
    .page-88aa1__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Khả năng phản hồi di động */
    @media (max-width: 768px) {
      .page-88aa1__hero-section {
        padding-top: 100px; /* Vùng an toàn cho di động */
      }

      .page-88aa1__main-heading {
        font-size: 2em;
      }

      .page-88aa1__sub-heading {
        font-size: 1.2em;
      }

      .page-88aa1__section-title {
        font-size: 1.8em;
      }

      .page-88aa1__game-grid,
      .page-88aa1__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-88aa1__game-card,
      .page-88aa1__provider-card {
        padding: 10px;
        min-height: 150px;
      }

      .page-88aa1__game-image {
        max-width: 100px;
      }

      .page-88aa1__provider-image {
        max-width: 80px;
      }

      .page-88aa1__game-title,
      .page-88aa1__provider-name {
        font-size: 1em;
      }

      .page-88aa1__promo-title {
        font-size: 1.8em;
      }

      .page-88aa1__promo-description {
        font-size: 1em;
      }

      .page-88aa1__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

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

      .page-88aa1__faq-answer {
        padding: 15px !important;
      }

      .page-88aa1__floating-buttons {
        gap: 10px;
        padding: 8px 15px;
        bottom: 15px;
      }

      .page-88aa1__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
      
      /* Buộc kiểu hình ảnh phản hồi cho di động */
      .page-88aa1 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-88aa1__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  