
    /* Tổng quan */
    .page-hi88fcom {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Đệm cho nút nổi */
      direction: ltr; /* Đảm bảo hướng văn bản là từ trái sang phải */
    }

    /* Đảm bảo an toàn cho banner */
    .page-hi88fcom-hero {
      padding-top: 160px; /* Vùng an toàn cho menu nổi */
      position: relative;
      overflow: hidden;
      background-color: #0d1a2f; /* Màu nền cho phần hero */
    }

    /* Banner chính */
    .page-hi88fcom-hero__image {
      width: 100%;
      max-width: 100%; /* Đảm bảo hình ảnh không vượt quá chiều rộng */
      height: auto; /* Giữ tỷ lệ khung hình */
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Hiển thị toàn bộ hình ảnh, không cắt xén */
    }

    .page-hi88fcom-hero__content {
      position: relative;
      text-align: center;
      padding: 20px;
      color: #fff;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
      margin-top: -80px; /* Đẩy nội dung lên trên hình ảnh một chút */
      padding-top: 100px;
    }

    .page-hi88fcom-hero__title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffcc00; /* Màu vàng nổi bật */
      font-weight: bold;
    }

    .page-hi88fcom-hero__description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #eee;
    }
    
    .page-hi88fcom-hero__link, .page-hi88fcom-heading__link, .page-hi88fcom-text-content__link, .page-hi88fcom-promo-content__link {
        color: inherit; /* Giữ màu chữ của thẻ cha */
        text-decoration: none; /* Bỏ gạch chân */
    }
    .page-hi88fcom-hero__link:hover, .page-hi88fcom-heading__link:hover, .page-hi88fcom-text-content__link:hover, .page-hi88fcom-promo-content__link:hover {
        text-decoration: underline; /* Gạch chân khi hover */
    }

    .page-hi88fcom-btn {
      display: inline-block;
      background-color: #ffcc00; /* Nút màu vàng */
      color: #0d1a2f; /* Chữ màu xanh đậm */
      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;
      border: none;
      cursor: pointer;
    }

    .page-hi88fcom-btn:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Nút đăng nhập nổi */
    .page-hi88fcom-floating-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: page-hi88fcom-pulse 2s infinite;
    }

    @keyframes page-hi88fcom-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Các phần nội dung chung */
    .page-hi88fcom-section {
      padding: 40px 20px;
      margin: 20px auto;
      max-width: 1200px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-hi88fcom-section-dark {
      background-color: #0d1a2f;
      color: #fff;
    }
    .page-hi88fcom-section-dark h2, .page-hi88fcom-section-dark h3 {
        color: #ffcc00;
    }

    .page-hi88fcom-heading {
      text-align: center;
      font-size: 2em;
      color: #0d1a2f;
      margin-bottom: 30px;
      position: relative;
    }
    .page-hi88fcom-heading::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #ffcc00;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    /* Lưới trò chơi */
    .page-hi88fcom-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-hi88fcom-game-card {
      text-align: center;
      background-color: #f0f0f0;
      padding: 15px;
      border-radius: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
    }

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

    .page-hi88fcom-game-card__image {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-hi88fcom-game-card__title {
      font-weight: bold;
      font-size: 1em;
      color: #0d1a2f;
    }

    /* Danh sách khuyến mãi */
    .page-hi88fcom-promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-hi88fcom-promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      background-color: #f0f8ff; /* Màu nền nhẹ cho item khuyến mãi */
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    }
    .page-hi88fcom-promo-item:last-child {
        margin-bottom: 0;
    }

    .page-hi88fcom-promo-icon {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-hi88fcom-promo-content h3 {
      margin-top: 0;
      color: #0d1a2f;
      font-size: 1.2em;
    }

    .page-hi88fcom-promo-content p {
      margin-bottom: 0;
      color: #555;
    }

    /* Nhà cung cấp game */
    .page-hi88fcom-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      justify-items: center;
      align-items: center;
    }

    .page-hi88fcom-provider-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      object-fit: contain;
      padding: 5px;
      background-color: #fcfcfc;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    /* Về chúng tôi / FAQ */
    .page-hi88fcom-text-content {
      text-align: left;
      color: #333;
    }
    .page-hi88fcom-text-content h3 {
        color: #0d1a2f;
        margin-top: 25px;
        font-size: 1.4em;
    }
    .page-hi88fcom-text-content p {
        margin-bottom: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hi88fcom-hero__title {
        font-size: 1.8em;
      }
      .page-hi88fcom-hero__description {
        font-size: 1em;
      }
      .page-hi88fcom-heading {
        font-size: 1.8em;
      }
      .page-hi88fcom-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-hi88fcom-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-hi88fcom-section {
        padding: 30px 15px;
      }
      .page-hi88fcom-floating-btn {
        width: 95%;
      }
      .page-hi88fcom-hero {
          padding-top: 140px; /* Nhỏ hơn một chút cho di động */
      }
    }

    @media (max-width: 480px) {
      .page-hi88fcom-hero__title {
        font-size: 1.5em;
      }
      .page-hi88fcom-hero__description {
        font-size: 0.9em;
      }
      .page-hi88fcom-heading {
        font-size: 1.5em;
      }
      .page-hi88fcom-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-hi88fcom-game-card__image {
        width: 60px;
        height: 60px;
      }
      .page-hi88fcom-game-card__title {
        font-size: 0.9em;
      }
      .page-hi88fcom-promo-item {
        flex-direction: column;
        text-align: center;
      }
      .page-hi88fcom-promo-icon {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-hi88fcom-btn {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  