
    /* Reset và các cài đặt cơ bản cho trang bi-88 */
    .page-bi-88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding-top: 10px; /* Khoảng đệm nhỏ phía trên, dựa vào padding-top của body cho offset header */
    }

    /* Tiêu đề chung */
    .page-bi-88 h1,
    .page-bi-88 h2,
    .page-bi-88 h3 {
      color: #0056b3; /* Màu xanh đậm hơn cho tiêu đề */
      margin-bottom: 1rem;
      text-align: center;
    }

    .page-bi-88 h1 {
      font-size: 2.5rem;
      padding: 1.5rem 1rem;
      background: linear-gradient(to right, #e0f2f7, #c9e6f2);
      border-bottom: 3px solid #007bff;
      margin-top: 0;
      margin-bottom: 2rem;
      color: #004085;
    }

    .page-bi-88 h2 {
      font-size: 2rem;
      color: #007bff; /* Màu xanh chính */
      padding-top: 2rem;
      border-top: 1px solid #e0e0e0;
      margin-top: 3rem;
    }

    .page-bi-88 h3 {
      font-size: 1.5rem;
      color: #0056b3;
    }

    /* Các phần chính của trang */
    .page-bi-88__section {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
    }
    
    .page-bi-88__section:first-of-type {
      padding-top: 2rem; /* Điều chỉnh cho phần hero */
    }

    .page-bi-88__hero-section {
      text-align: center;
      padding: 4rem 1rem;
      background-color: #e0f7fa;
      background-image: url('[GALLERY:abstract:1920x1080:abstract,background,gradient,bi88]');
      background-size: cover;
      background-position: center;
      color: #004d40;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-bi-88__hero-section p {
      font-size: 1.15rem;
      max-width: 800px;
      margin: 1.5rem auto 2.5rem auto;
      color: #004d40;
    }

    /* Nút Đăng ký/Đăng nhập nổi */
    .page-bi-88__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-bi-88__button {
      background-color: #007bff; /* Màu xanh chính */
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-bi-88__button:hover {
      background-color: #0056b3; /* Màu xanh đậm hơn khi hover */
      transform: translateY(-2px);
    }

    /* Phần sản phẩm/game */
    .page-bi-88__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .page-bi-88__product-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-bi-88__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-bi-88__product-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      max-width: 100%; /* Hình ảnh responsive */
      height: auto;
      box-sizing: border-box; /* Đảm bảo padding/border được tính vào */
    }

    .page-bi-88__product-card-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bi-88__product-card-content h3 {
      margin-top: 0;
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
      color: #007bff;
      pointer-events: none; /* Quan trọng để không tạo liên kết */
    }

    .page-bi-88__product-card-content p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }

    /* Phần khuyến mãi */
    .page-bi-88__promotion-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .page-bi-88__promotion-item {
      background-color: #e6f7ff;
      border-left: 5px solid #007bff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Quan trọng cho các mục danh sách */
      word-wrap: break-word; /* Đảm bảo văn bản tự động xuống dòng */
      overflow-wrap: break-word;
    }

    .page-bi-88__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-bi-88__promotion-item h3 {
      color: #0056b3;
      margin-top: 0;
      font-size: 1.25rem;
      text-align: left;
    }

    .page-bi-88__promotion-item p {
      color: #444;
      font-size: 0.95rem;
    }

    .page-bi-88__promotion-image-container {
      text-align: center;
      margin-top: 2rem;
    }

    .page-bi-88__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      min-width: 200px; /* Kích thước tối thiểu */
      min-height: 200px; /* Kích thước tối thiểu */
      box-sizing: border-box;
    }

    /* Đối tác và thanh toán */
    .page-bi-88__partner-grid,
    .page-bi-88__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
      text-align: center;
    }

    .page-bi-88__partner-item,
    .page-bi-88__payment-item {
      background-color: #f0f8ff;
      padding: 1rem;
      border-radius: 5px;
      border: 1px solid #cceeff;
      font-weight: bold;
      color: #0056b3;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-bi-88__payment-image-container {
      text-align: center;
      margin-top: 2rem;
    }

    .page-bi-88__payment-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      min-width: 200px; /* Kích thước tối thiểu */
      min-height: 200px; /* Kích thước tối thiểu */
      box-sizing: border-box;
    }

    /* Phần FAQ */
    .page-bi-88__faq-section {
      padding: 2rem 1rem;
      max-width: 900px;
      margin: 0 auto 2rem auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-bi-88__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-bi-88__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-bi-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bi-88__faq-question:hover {
      background-color: #f0f0f0;
      border-radius: 5px;
    }

    .page-bi-88__faq-question h3 {
      margin: 0;
      font-size: 1.15rem;
      color: #333;
      text-align: left;
      flex-grow: 1;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên phần tử cha */
    }

    .page-bi-88__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click trên phần tử cha */
    }

    .page-bi-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1rem;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bi-88 h1 {
        font-size: 2rem;
        padding: 1rem 0.5rem;
      }

      .page-bi-88 h2 {
        font-size: 1.7rem;
      }

      .page-bi-88__section {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1.5rem;
        border-radius: 0; /* Chiều rộng đầy đủ trên di động */
        box-shadow: none;
      }
      
      .page-bi-88__hero-section {
        padding: 3rem 1rem;
      }

      .page-bi-88__hero-section p {
        font-size: 1rem;
      }

      .page-bi-88__floating-buttons {
        gap: 10px;
        bottom: 15px;
      }

      .page-bi-88__button {
        padding: 10px 20px;
        font-size: 1rem;
      }

      .page-bi-88__product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .page-bi-88__product-card-image {
        height: 180px;
      }

      .page-bi-88__product-card-content h3 {
        font-size: 1.1rem;
      }

      .page-bi-88__promotion-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
      }

      .page-bi-88__promotion-item {
        padding: 1rem;
        width: 100% !important; /* Buộc chiều rộng đầy đủ cho các mục danh sách */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Điều chỉnh padding cho di động */
        padding-right: 10px !important;
      }
      
      .page-bi-88__promotion-item p {
        font-size: 0.9rem;
      }

      .page-bi-88__partner-grid,
      .page-bi-88__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
      }

      .page-bi-88__partner-item,
      .page-bi-88__payment-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        width: 100% !important; /* Buộc chiều rộng đầy đủ cho các mục danh sách */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bi-88__faq-section {
        padding: 1.5rem 0.5rem;
        border-radius: 0;
        box-shadow: none;
      }

      .page-bi-88__faq-question {
        padding: 12px 0;
      }

      .page-bi-88__faq-question h3 {
        font-size: 1rem;
      }

      .page-bi-88__faq-answer {
        padding: 15px 10px !important;
        font-size: 0.9rem;
      }

      /* Hình ảnh responsive trên di động */
      .page-bi-88 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bi-88__promotion-image-container,
      .page-bi-88__payment-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
    
    @media (max-width: 480px) {
        .page-bi-88__floating-buttons {
            flex-direction: column;
            width: calc(100% - 30px); /* Điều chỉnh chiều rộng cho màn hình nhỏ hơn */
            max-width: 300px;
            bottom: 10px;
            gap: 10px;
        }
        .page-bi-88__button {
            width: 100%;
        }
    }

  