
    /* Tổng quan */
    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #CCCCCC; /* Màu chữ sáng trên nền tối */
      background-color: #000000; /* Nền đen */
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-hubet {
      padding-top: 100px; /* Khoảng cách cho navbar cố định */
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Tiêu đề và văn bản */
    .page-hubet h1,
    .page-hubet h2,
    .page-hubet h3 {
      color: #FFD700; /* Vàng kim cho tiêu đề */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-hubet h1 {
      font-size: 2.5em;
      padding: 20px 10px;
    }

    .page-hubet h2 {
      font-size: 2em;
      padding: 15px 10px;
      border-bottom: 2px solid #FFD700;
      display: inline-block;
    }

    .page-hubet h3 {
      font-size: 1.5em;
      padding: 10px 10px;
    }

    .page-hubet p {
      margin-bottom: 15px;
      padding: 0 15px;
    }

    .page-hubet strong {
      color: #FFFFFF;
    }

    /* Liên kết */
    .page-hubet a {
      color: #1E90FF; /* Xanh dương cho liên kết */
      text-decoration: none;
    }

    .page-hubet a:hover {
      text-decoration: underline;
      color: #00BFFF;
    }

    /* Các phần chính */
    .page-hubet__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #1A1A1A; /* Nền tối hơn cho các phần */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    /* Hero Section */
    .page-hubet__hero-section {
      background-color: #000000;
      text-align: center;
      padding: 20px 0 0; /* Đã có padding-top trên .page-hubet */
      margin-bottom: 30px;
    }

    .page-hubet__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-hubet__hero-banner img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-hubet__hero-content {
      padding: 20px 15px 40px;
    }

    .page-hubet__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      margin-top: 20px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-hubet__cta-button:hover {
      background-color: #FFC107;
      transform: translateY(-3px);
    }

    /* Nút đăng nhập nổi */
    .page-hubet__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .page-hubet__floating-login-button {
      background-color: #FF4500; /* Màu cam nổi bật */
      color: #FFFFFF;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-hubet__floating-login-button:hover {
      background-color: #FF6347;
      transform: scale(1.05);
    }
    
    .page-hubet__floating-login-button span {
        display: none; /* Ẩn chữ trên di động */
    }

    /* Game Categories */
    .page-hubet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-hubet__game-card {
      background-color: #2C2C2C;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

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

    .page-hubet__game-card-image {
      width: 100%;
      max-width: 100%;
      height: 150px; /* Chiều cao cố định cho hình ảnh sản phẩm */
      object-fit: cover; /* Đảm bảo hình ảnh không bị biến dạng */
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-hubet__game-card-image img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-hubet__game-card h3 {
      font-size: 1.1em;
      margin: 0;
      color: #FFD700;
      text-align: center;
    }

    .page-hubet__game-card a {
      color: #FFD700;
      text-decoration: none;
      display: block;
    }

    .page-hubet__game-card a:hover {
      text-decoration: underline;
    }

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

    .page-hubet__provider-logo {
      width: 100%;
      max-width: 120px; /* Giới hạn kích thước logo nhà cung cấp */
      height: auto;
      border-radius: 5px;
      background-color: #333333;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-hubet__provider-logo img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-hubet__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-hubet__faq-section {
      padding: 40px 15px;
      background-color: #1A1A1A;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      margin-bottom: 30px;
    }

    .page-hubet__faq-item {
      background-color: #2C2C2C;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-hubet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #3C3C3C;
      border-bottom: 1px solid #4A4A4A;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-hubet__faq-question:hover {
      background-color: #4A4A4A;
    }

    .page-hubet__faq-question h3 {
      margin: 0;
      color: #FFD700;
      text-align: left;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-hubet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên toggle */
    }

    .page-hubet__faq-item.active .page-hubet__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-hubet__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: #CCCCCC;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-hubet {
        padding-top: 80px; /* Điều chỉnh cho mobile navbar */
      }

      .page-hubet h1 {
        font-size: 2em;
        padding: 15px 10px;
      }

      .page-hubet h2 {
        font-size: 1.6em;
        padding: 10px 10px;
      }

      .page-hubet h3 {
        font-size: 1.3em;
      }

      .page-hubet__section {
        padding: 20px 0;
        margin-bottom: 20px;
      }

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

      .page-hubet__game-card-image {
        height: 120px;
      }

      .page-hubet__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }
      
      .page-hubet__floating-login-button {
          padding: 12px 18px;
          font-size: 1em;
      }
      .page-hubet__floating-login-button span {
          display: inline; /* Hiện chữ trên di động */
      }
      .page-hubet__floating-login-button .icon {
          font-size: 1.2em; /* Giữ kích thước icon */
      }
      
      /* Force image responsiveness */
      .page-hubet__hero-banner img,
      .page-hubet__game-card-image img,
      .page-hubet__provider-logo img,
      .page-hubet__image-full-width img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }

      .page-hubet__hero-banner,
      .page-hubet__game-card-image,
      .page-hubet__provider-logo,
      .page-hubet__image-full-width {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  