
    /* CSS cho trang tai hit club */
    .page-taihitclub {
      background-color: #000000;
      color: #FFFFFF;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding-bottom: 80px; /* Đệm cho nút nổi */
    }

    .page-taihitclub__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Tiêu đề */
    .page-taihitclub h1,
    .page-taihitclub h2,
    .page-taihitclub h3 {
      color: #FFD700; /* Màu vàng */
      text-align: center;
      margin-bottom: 25px;
      margin-top: 35px;
      font-weight: bold;
    }

    .page-taihitclub h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
    }

    .page-taihitclub h2 {
      font-size: 2.2em;
      margin-top: 40px;
    }

    .page-taihitclub h3 {
      font-size: 1.8em;
      margin-top: 30px;
      color: #FFFFFF;
    }

    .page-taihitclub p {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Nút */
    .page-taihitclub__button {
      display: inline-block;
      background-color: #FFD700; /* Màu vàng */
      color: #000000;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      text-align: center;
    }

    .page-taihitclub__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-taihitclub__hero-section {
      padding-top: 150px; /* Khoảng đệm cho thanh điều hướng cố định */
      background-color: #000000;
      text-align: center;
      padding-bottom: 40px;
    }
    
    .page-taihitclub__hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-taihitclub__hero-image {
      width: 100%;
      max-width: 800px; /* Kích thước tối đa của ảnh hero */
      height: auto;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      display: block; /* Đảm bảo ảnh là block để căn giữa */
      margin-left: auto;
      margin-right: auto;
    }

    .page-taihitclub__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    /* Phần giới thiệu chung */
    .page-taihitclub__intro-section {
      padding: 50px 0;
      text-align: center;
    }
    .page-taihitclub__intro-text {
        max-width: 900px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }

    /* Phần trò chơi */
    .page-taihitclub__games-section {
      padding: 50px 0;
      text-align: center;
    }

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

    .page-taihitclub__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-taihitclub__game-card:hover {
      transform: translateY(-5px);
    }

    .page-taihitclub__game-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh trò chơi */
      object-fit: cover;
      display: block;
    }

    .page-taihitclub__game-title {
      font-size: 1.4em;
      margin: 20px 10px 10px;
      color: #FFD700;
    }
    .page-taihitclub__game-description {
        font-size: 0.9em;
        color: #E0E0E0;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    /* Phần nhà cung cấp */
    .page-taihitclub__providers-section {
      padding: 50px 0;
      text-align: center;
      background-color: #0d0d0d;
    }

    .page-taihitclub__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      padding: 0 15px;
    }

    .page-taihitclub__provider-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: grayscale(100%); /* Làm mờ logo nhà cung cấp */
      transition: filter 0.3s ease;
    }

    .page-taihitclub__provider-logo:hover {
      filter: grayscale(0%); /* Hiển thị màu khi di chuột */
    }

    /* Phần khuyến mãi */
    .page-taihitclub__promotions-section {
      padding: 50px 0;
      text-align: center;
    }

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

    .page-taihitclub__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-taihitclub__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-taihitclub__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-taihitclub__promo-content {
      padding: 20px;
    }

    .page-taihitclub__promo-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #FFD700;
      text-align: left;
    }

    .page-taihitclub__promo-description {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
      text-align: left;
    }
    
    .page-taihitclub__promo-button {
        display: block;
        width: fit-content;
        margin: 0;
        padding: 10px 20px;
        font-size: 1em;
    }

    /* FAQ Section */
    .page-taihitclub__faq-section {
      padding: 50px 0;
      background-color: #0d0d0d;
    }

    .page-taihitclub__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-taihitclub__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-taihitclub__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      color: #FFFFFF;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-taihitclub__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-taihitclub__faq-question h3 {
      margin: 0;
      text-align: left;
      color: #FFFFFF; /* Đảm bảo màu trắng cho tiêu đề câu hỏi */
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
      flex-grow: 1;
    }

    .page-taihitclub__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
      width: 25px; /* Giữ kích thước cố định */
      text-align: center;
    }

    .page-taihitclub__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #E0E0E0;
      text-align: justify;
    }

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

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

    .page-taihitclub__floating-button {
      flex: 1;
      padding: 15px 10px;
      font-size: 1.1em;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-taihitclub__floating-button--login {
      background-color: #FFD700; /* Vàng */
      color: #000000;
    }

    .page-taihitclub__floating-button--login:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-taihitclub__floating-button--register {
      background-color: #333333; /* Xám đậm */
      color: #FFFFFF;
      border: 1px solid #FFD700;
    }

    .page-taihitclub__floating-button--register:hover {
      background-color: #444444;
      transform: translateY(-2px);
    }

    /* Hình ảnh chung */
    .page-taihitclub img {
        max-width: 100%;
        height: auto;
        display: block; /* Đảm bảo hình ảnh không có khoảng trắng dưới cùng */
    }

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-taihitclub__hero-section {
        padding-top: 100px; /* Điều chỉnh khoảng đệm cho di động */
      }

      .page-taihitclub h1 {
        font-size: 2em;
      }

      .page-taihitclub h2 {
        font-size: 1.8em;
      }

      .page-taihitclub h3 {
        font-size: 1.5em;
      }

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

      .page-taihitclub__game-grid,
      .page-taihitclub__promo-grid {
        grid-template-columns: 1fr;
      }

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

      .page-taihitclub__floating-buttons {
        gap: 10px;
        width: 95%;
      }

      .page-taihitclub__floating-button {
        padding: 12px 8px;
        font-size: 1em;
      }

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

      .page-taihitclub__faq-answer {
        padding: 15px 20px;
      }

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

      /* Đảm bảo hình ảnh responsive trên di động */
      .page-taihitclub img {
          max-width: 100% !important;
          height: auto !important;
      }
    }
  