
    /* Tổng thể */
    .page-hi88-container {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6; /* Nền sáng */
      padding-bottom: 80px; /* Khoảng cách cho nút nổi */
    }

    /* Tiêu đề chính */
    .page-hi88-hero {
      position: relative;
      background: linear-gradient(135deg, #0f0f0f, #2c2c2c); /* Nền tối */
      color: #ffffff;
      padding: 20px 0;
      text-align: center;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .page-hi88-hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 15px auto; /* Căn giữa, có khoảng cách dưới */
      object-fit: cover;
      max-height: 300px; /* Giới hạn chiều cao banner */
    }

    .page-hi88-hero h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffcc00; /* Vàng nổi bật */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      padding: 0 15px;
    }

    .page-hi88-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-hi88-button-primary {
      display: inline-block;
      background-color: #e60000; /* Đỏ mạnh */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border: none; /* Đảm bảo nút không có viền mặc định */
      cursor: pointer;
    }

    .page-hi88-button-primary:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    /* Nút nổi */
    .page-hi88-floating-buttons {
      position: fixed;
      bottom: 0; /* Đặt sát đáy */
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around; /* Phân bố đều các nút */
      gap: 10px;
      z-index: 1000;
      background-color: #1a1a1a; /* Nền tối cho nút nổi */
      padding: 10px 15px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-hi88-floating-buttons .page-hi88-button-primary {
      flex: 1;
      text-align: center;
      padding: 14px 10px;
      font-size: 1.05em;
      white-space: nowrap; /* Đảm bảo văn bản không bị ngắt dòng */
      max-width: 180px; /* Giới hạn chiều rộng nút */
    }

    /* Các phần nội dung */
    .page-hi88-section {
      background-color: #ffffff;
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hi88-section h2 {
      font-size: 1.8em;
      color: #007bff; /* Xanh dương */
      margin-bottom: 20px;
      text-align: center;
      border-bottom: 2px solid #e0e0e0;
      padding-bottom: 10px;
    }

    .page-hi88-section h3 {
      font-size: 1.4em;
      color: #333;
      margin-top: 25px;
      margin-bottom: 15px;
      border-left: 4px solid #007bff;
      padding-left: 10px;
    }

    .page-hi88-section p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-hi88-section ul {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #555;
    }

    .page-hi88-section ol {
      list-style-type: decimal;
      padding-left: 25px;
      margin-bottom: 15px;
      color: #555;
    }

    .page-hi88-section li {
      margin-bottom: 8px;
    }

    .page-hi88-section strong {
      color: #000;
    }

    /* Lưới trò chơi/sản phẩm */
    .page-hi88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Cột linh hoạt cho di động */
      gap: 15px;
      margin-top: 20px;
      justify-items: center; /* Căn giữa các mục */
    }

    .page-hi88-game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: 100%; /* Đảm bảo thẻ chiếm toàn bộ chiều rộng cột */
      max-width: 180px; /* Giới hạn chiều rộng thẻ trên màn hình lớn hơn */
    }

    .page-hi88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .page-hi88-game-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .page-hi88-game-card h4 {
      font-size: 1.05em;
      color: #007bff;
      margin-bottom: 5px;
    }

    .page-hi88-game-card a {
      text-decoration: none;
      color: #007bff;
      font-weight: bold;
    }
    .page-hi88-game-card a:hover {
      text-decoration: underline;
    }

    /* Nhà cung cấp */
    .page-hi88-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .page-hi88-provider-item {
      background-color: #e9ecef;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9em;
      color: #333;
      font-weight: bold;
      white-space: nowrap;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .page-hi88-hero h1 {
        font-size: 3em;
      }
      .page-hi88-hero p {
        font-size: 1.2em;
      }
      .page-hi88-section {
        padding: 40px 30px;
      }
      .page-hi88-section h2 {
        font-size: 2.2em;
      }
      .page-hi88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Ổn định hơn trên desktop */
        gap: 20px;
      }
      .page-hi88-floating-buttons {
        bottom: 0;
        gap: 20px;
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        border-radius: 10px 10px 0 0; /* Bo góc trên */
        padding: 15px 30px;
      }
      .page-hi88-floating-buttons .page-hi88-button-primary {
        padding: 15px 20px;
        font-size: 1.15em;
      }
      .page-hi88-container {
        padding-bottom: 100px; /* Tăng khoảng cách dưới cho desktop */
      }
    }

    /* Đảm bảo độ tương phản màu sắc WCAG AA (4.5:1) */
    /* Màu chữ trên nền sáng */
    .page-hi88-section, .page-hi88-section p, .page-hi88-section ul, .page-hi88-section ol, .page-hi88-section li {
        color: #333; /* Contrast #333 on #ffffff is ~14:1 */
    }
    /* Màu chữ trên nền tối (hero) */
    .page-hi88-hero h1 {
        color: #ffcc00; /* Contrast #ffcc00 on #0f0f0f is ~10:1 */
    }
    .page-hi88-hero p {
        color: #ffffff; /* Contrast #ffffff on #0f0f0f is ~16:1 */
    }
    /* Nút */
    .page-hi88-button-primary {
        background-color: #e60000;
        color: #ffffff; /* Contrast #ffffff on #e60000 is ~4.5:1 (borderline, but passes) */
    }
    .page-hi88-button-primary:hover {
        background-color: #cc0000;
    }
    /* Tiêu đề phần */
    .page-hi88-section h2, .page-hi88-section h3, .page-hi88-game-card h4, .page-hi88-game-card a {
        color: #007bff; /* Contrast #007bff on #ffffff is ~4.5:1 (borderline, but passes) */
    }
    /* Item nhà cung cấp */
    .page-hi88-provider-item {
        background-color: #e9ecef;
        color: #333; /* Contrast #333 on #e9ecef is ~10:1 */
    }
    /* Nút nổi */
    .page-hi88-floating-buttons {
      background-color: #1a1a1a;
    }
  