
    /* Định nghĩa biến màu sắc theo yêu cầu */
    :root {
      --page-hitclubweb__black: #000000;
      --page-hitclubweb__white: #FFFFFF;
      --page-hitclubweb__yellow: #FFD700; /* Màu vàng kim */
      --page-hitclubweb__dark-gray: #1a1a1a;
      --page-hitclubweb__light-gray: #cccccc;
      --page-hitclubweb__border-color: #333333;
    }

    /* Phong cách cơ bản cho toàn bộ trang */
    .page-hitclubweb {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-hitclubweb__black);
      color: var(--page-hitclubweb__white);
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

    /* Phong cách chung cho các phần */
    .page-hitclubweb__section {
      padding: 40px 15px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-hitclubweb__section--dark {
      background-color: var(--page-hitclubweb__dark-gray);
    }

    /* Tiêu đề chính */
    .page-hitclubweb__heading-primary {
      color: var(--page-hitclubweb__yellow);
      font-size: 2.8em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    /* Tiêu đề phụ */
    .page-hitclubweb__heading-secondary {
      color: var(--page-hitclubweb__white);
      font-size: 2em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    /* Tiêu đề cấp 3 */
    .page-hitclubweb__heading-tertiary {
      color: var(--page-hitclubweb__yellow);
      font-size: 1.5em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    /* Văn bản đoạn văn */
    .page-hitclubweb__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-hitclubweb__light-gray);
    }

    /* Liên kết */
    .page-hitclubweb__link {
      color: var(--page-hitclubweb__yellow);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hitclubweb__link:hover {
      color: var(--page-hitclubweb__white);
    }

    /* Nút chung */
    .page-hitclubweb__button {
      display: inline-block;
      background-color: var(--page-hitclubweb__yellow);
      color: var(--page-hitclubweb__black);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-hitclubweb__button:hover {
      background-color: var(--page-hitclubweb__white);
      color: var(--page-hitclubweb__black);
    }

    /* Phần Hero (Banner chính) */
    .page-hitclubweb__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 140px; /* Vùng an toàn cho header cố định trên desktop */
      background-color: var(--page-hitclubweb__black); /* Đảm bảo nền đen */
    }

    .page-hitclubweb__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và văn bản */
    }

    .page-hitclubweb__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px; /* Bo góc nhẹ cho thẩm mỹ */
    }

    .page-hitclubweb__hero-content {
      padding: 0 15px 40px; /* Đệm cho văn bản dưới ảnh */
      max-width: 900px;
      margin: 0 auto;
    }

    .page-hitclubweb__hero-title {
      font-size: 2.5em;
      color: var(--page-hitclubweb__yellow);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-hitclubweb__hero-description {
      font-size: 1.2em;
      color: var(--page-hitclubweb__white);
      margin-bottom: 30px;
    }

    /* Nút Đăng nhập/Đăng ký nổi */
    .page-hitclubweb__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-hitclubweb__floating-button {
      background-color: var(--page-hitclubweb__yellow);
      color: var(--page-hitclubweb__black);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Ngăn văn bản xuống dòng */
      font-size: 1em;
    }

    .page-hitclubweb__floating-button:hover {
      background-color: var(--page-hitclubweb__white);
      transform: translateY(-2px);
    }

    /* Phần Danh mục Trò chơi */
    .page-hitclubweb__game-categories {
      background-color: var(--page-hitclubweb__dark-gray);
      border-top: 1px solid var(--page-hitclubweb__border-color);
      border-bottom: 1px solid var(--page-hitclubweb__border-color);
    }

    .page-hitclubweb__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-hitclubweb__category-item {
      background-color: var(--page-hitclubweb__black);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-hitclubweb__border-color);
    }

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

    .page-hitclubweb__category-link {
      display: block;
      text-decoration: none;
      color: var(--page-hitclubweb__white);
      padding: 15px;
    }

    .page-hitclubweb__category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 120px; /* Chiều cao cố định cho ảnh danh mục */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-hitclubweb__dark-gray); /* Nền cho ảnh */
    }

    .page-hitclubweb__category-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Đảm bảo ảnh vừa vặn mà không bị cắt */
    }

    .page-hitclubweb__category-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-hitclubweb__yellow);
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .page-hitclubweb__category-description {
      font-size: 0.9em;
      color: var(--page-hitclubweb__light-gray);
    }

    /* Phần Nhà cung cấp Trò chơi */
    .page-hitclubweb__providers {
      background-color: var(--page-hitclubweb__black);
    }

    .page-hitclubweb__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-hitclubweb__provider-item {
      background-color: var(--page-hitclubweb__dark-gray);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Chiều cao cố định cho logo nhà cung cấp */
      transition: transform 0.2s ease;
      border: 1px solid var(--page-hitclubweb__border-color);
    }

    .page-hitclubweb__provider-item:hover {
      transform: scale(1.05);
    }

    .page-hitclubweb__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      object-fit: contain;
    }

    /* Phần Tại sao chọn chúng tôi */
    .page-hitclubweb__why-choose-us {
      background-color: var(--page-hitclubweb__dark-gray);
      border-top: 1px solid var(--page-hitclubweb__border-color);
    }

    .page-hitclubweb__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-hitclubweb__feature-item {
      background-color: var(--page-hitclubweb__black);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: left;
      border: 1px solid var(--page-hitclubweb__border-color);
    }

    .page-hitclubweb__feature-icon-wrapper {
      width: 60px; /* Đảm bảo kích thước tối thiểu cho biểu tượng */
      height: 60px;
      margin-bottom: 15px;
      background-color: var(--page-hitclubweb__yellow);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px auto; /* Căn giữa */
    }

    .page-hitclubweb__feature-icon {
      max-width: 80%;
      max-height: 80%;
      height: auto;
      display: block;
      /* filter: invert(1); */ /* Đã loại bỏ filter để tuân thủ yêu cầu */
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-hitclubweb__faq-section {
      background-color: var(--page-hitclubweb__black);
      border-top: 1px solid var(--page-hitclubweb__border-color);
    }

    .page-hitclubweb__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-hitclubweb__faq-item {
      background-color: var(--page-hitclubweb__dark-gray);
      border: 1px solid var(--page-hitclubweb__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-hitclubweb__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-hitclubweb__dark-gray);
      color: var(--page-hitclubweb__white);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-hitclubweb__faq-question h3 {
      margin: 0;
      color: var(--page-hitclubweb__white);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
      font-size: 1.1em;
      flex-grow: 1;
    }

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

    .page-hitclubweb__faq-item.active .page-hitclubweb__faq-toggle {
      transform: rotate(45deg); /* Biểu tượng '+' xoay thành 'x' hoặc '-' */
    }

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

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

    .page-hitclubweb__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-hitclubweb__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Điều chỉnh Responsive cho thiết bị di động */
    @media (max-width: 768px) {
      .page-hitclubweb__hero-section {
        padding-top: 100px; /* Điều chỉnh vùng an toàn cho header cố định trên di động */
      }

      .page-hitclubweb__hero-title {
        font-size: 2em;
      }

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

      .page-hitclubweb__heading-primary {
        font-size: 2em;
      }

      .page-hitclubweb__heading-secondary {
        font-size: 1.6em;
      }

      .page-hitclubweb__section {
        padding: 30px 10px;
      }

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

      .page-hitclubweb__category-image-wrapper {
        height: 100px;
      }

      .page-hitclubweb__category-title {
        font-size: 1em;
      }

      .page-hitclubweb__category-description {
        font-size: 0.85em;
      }

      .page-hitclubweb__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }

      .page-hitclubweb__provider-item {
        height: 70px;
      }

      .page-hitclubweb__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-hitclubweb__faq-question {
        padding: 15px;
        font-size: 1em;
      }

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

      .page-hitclubweb__faq-answer {
        padding: 0 15px;
      }

      .page-hitclubweb__faq-item.active .page-hitclubweb__faq-answer {
        padding: 15px !important;
      }

      .page-hitclubweb__floating-login {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-hitclubweb__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      /* Tối ưu hóa hình ảnh responsive cho tất cả hình ảnh */
      .page-hitclubweb img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-hitclubweb__hero-image-wrapper,
      .page-hitclubweb__category-image-wrapper,
      .page-hitclubweb__provider-item,
      .page-hitclubweb__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  