
    :root {
      --page-hi88nohu-bg-color: #000000;
      --page-hi88nohu-text-color: #ffffff;
      --page-hi88nohu-highlight-color: #FFD700; /* Vàng */
      --page-hi88nohu-accent-color: #FF8C00; /* Cam */
      --page-hi88nohu-border-color: #333333;
      --page-hi88nohu-max-width: 1200px;
      --page-hi88nohu-header-padding-desktop: 120px; /* Vùng an toàn cho header cố định */
      --page-hi88nohu-header-padding-mobile: 100px; /* Vùng an toàn cho header cố định */
    }

    .page-hi88nohu {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-hi88nohu-bg-color);
      color: var(--page-hi88nohu-text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-hi88nohu__container {
      max-width: var(--page-hi88nohu-max-width);
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-hi88nohu__section--dark {
      background-color: #1a1a1a;
    }

    .page-hi88nohu__title {
      color: var(--page-hi88nohu-highlight-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-hi88nohu__subtitle {
      color: var(--page-hi88nohu-accent-color);
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-hi88nohu__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-hi88nohu-text-color);
    }

    .page-hi88nohu__button {
      display: inline-block;
      background-color: var(--page-hi88nohu-highlight-color);
      color: var(--page-hi88nohu-bg-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      min-width: 200px;
    }

    .page-hi88nohu__button:hover {
      background-color: var(--page-hi88nohu-accent-color);
      transform: translateY(-2px);
    }

    /* Nút Đăng Nhập Nổi */
    .page-hi88nohu__floating-button {
      position: fixed;
      top: 15px; /* Điều chỉnh dựa trên chiều cao header */
      right: 15px;
      background-color: var(--page-hi88nohu-accent-color);
      color: var(--page-hi88nohu-text-color);
      padding: 10px 15px;
      border-radius: 50px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
      border: 2px solid var(--page-hi88nohu-highlight-color);
    }

    .page-hi88nohu__floating-button:hover {
      background-color: var(--page-hi88nohu-highlight-color);
      color: var(--page-hi88nohu-bg-color);
      transform: scale(1.05);
    }

    /* Phần Hero */
    .page-hi88nohu__hero-section {
      background-color: var(--page-hi88nohu-bg-color);
      color: var(--page-hi88nohu-text-color);
      padding-top: var(--page-hi88nohu-header-padding-desktop); /* Điều chỉnh cho header cố định */
      padding-bottom: 40px;
      text-align: center;
    }

    .page-hi88nohu__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
    }

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

    .page-hi88nohu__hero-title {
      font-size: 3em;
      color: var(--page-hi88nohu-highlight-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-hi88nohu__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-hi88nohu-text-color);
    }

    /* Lưới Game & Nhà Cung Cấp */
    .page-hi88nohu__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-hi88nohu__grid-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid var(--page-hi88nohu-border-color);
    }

    .page-hi88nohu__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hi88nohu__grid-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      height: 120px; /* Chiều cao cố định để hiển thị ảnh nhất quán */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-hi88nohu__grid-image {
      max-width: 100%;
      height: auto;
      object-fit: contain; /* Đảm bảo logo không bị cắt */
      border-radius: 5px;
    }

    .page-hi88nohu__grid-title {
      font-size: 1.2em;
      color: var(--page-hi88nohu-highlight-color);
      margin-top: 10px;
      text-decoration: none;
      font-weight: bold;
    }
    
    .page-hi88nohu__grid-title a {
        color: var(--page-hi88nohu-highlight-color);
        text-decoration: none;
    }

    .page-hi88nohu__grid-title a:hover {
        text-decoration: underline;
    }

    /* Khuyến Mãi */
    .page-hi88nohu__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-hi88nohu__promo-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border-left: 5px solid var(--page-hi88nohu-accent-color);
    }

    .page-hi88nohu__promo-item-title {
      color: var(--page-hi88nohu-highlight-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-hi88nohu__promo-item-description {
      font-size: 1em;
      color: var(--page-hi88nohu-text-color);
    }

    /* Phần Câu Hỏi Thường Gặp (FAQ) */
    .page-hi88nohu__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-hi88nohu__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-hi88nohu-border-color);
    }

    .page-hi88nohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #222222;
      color: var(--page-hi88nohu-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-hi88nohu__faq-question:hover {
      background-color: #333333;
    }

    .page-hi88nohu__faq-question h3 {
      margin: 0;
      color: var(--page-hi88nohu-highlight-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-hi88nohu__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-hi88nohu-accent-color);
      pointer-events: none; /* Ngăn biểu tượng chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-hi88nohu__faq-item.active .page-hi88nohu__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X */
      color: var(--page-hi88nohu-highlight-color);
    }

    .page-hi88nohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-hi88nohu-text-color);
    }

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

    /* Hướng Dẫn Các Bước */
    .page-hi88nohu__guide-steps {
      margin-top: 30px;
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-hi88nohu__guide-step-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-hi88nohu-border-color);
    }

    .page-hi88nohu__guide-step-number {
      display: inline-block;
      background-color: var(--page-hi88nohu-accent-color);
      color: var(--page-hi88nohu-bg-color);
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-hi88nohu__guide-step-title {
      color: var(--page-hi88nohu-highlight-color);
      font-size: 1.3em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-hi88nohu__guide-step-description {
      font-size: 1em;
      color: var(--page-hi88nohu-text-color);
    }

    /* Thiết Kế Đáp Ứng */
    @media (max-width: 768px) {
      .page-hi88nohu__hero-section {
        padding-top: var(--page-hi88nohu-header-padding-mobile);
      }
      .page-hi88nohu__hero-title {
        font-size: 2.2em;
      }
      .page-hi88nohu__hero-description {
        font-size: 1em;
      }
      .page-hi88nohu__title {
        font-size: 2em;
      }
      .page-hi88nohu__subtitle {
        font-size: 1.5em;
      }
      .page-hi88nohu__text {
        font-size: 0.95em;
      }
      .page-hi88nohu__button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: unset;
      }
      .page-hi88nohu__grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .page-hi88nohu__grid-image-wrapper {
        height: 100px;
      }
      .page-hi88nohu__promo-list,
      .page-hi88nohu__guide-steps {
        grid-template-columns: 1fr;
      }
      .page-hi88nohu__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-hi88nohu__faq-answer {
        padding: 0 15px;
      }
      .page-hi88nohu__faq-item.active .page-hi88nohu__faq-answer {
        padding: 15px !important;
      }
      .page-hi88nohu__floating-button {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8em;
      }
    }

    /* Đảm bảo tất cả hình ảnh đáp ứng và không sử dụng bộ lọc màu */
    .page-hi88nohu img {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trống thừa bên dưới hình ảnh */
      object-fit: cover; /* Mặc định cho hình ảnh chung, có thể ghi đè */
    }

    .page-hi88nohu__hero-image,
    .page-hi88nohu__grid-image {
      object-fit: contain; /* Cụ thể cho hình ảnh hero và lưới */
    }

    @media (max-width: 768px) {
      .page-hi88nohu img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-hi88nohu__hero-image-wrapper,
      .page-hi88nohu__grid-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  