
    /* CSS cho trang hubet.com */
    :root {
      --page-hubet-primary: #FFD700; /* Vàng sáng */
      --page-hubet-secondary: #007BFF; /* Xanh dương */
      --page-hubet-background: #1a1a2e; /* Nền tối */
      --page-hubet-text-light: #f0f2f5; /* Chữ sáng */
      --page-hubet-text-dark: #333333; /* Chữ tối */
      --page-hubet-accent: #FF4500; /* Cam đỏ */
      --page-hubet-card-bg: #2e2e4a; /* Nền thẻ tối hơn */
      --page-hubet-button-bg: #FF4500; /* Nền nút */
      --page-hubet-button-hover: #e03c00; /* Nút hover */
    }

    .page-hubet {
      font-family: 'Arial', sans-serif;
      color: var(--page-hubet-text-light);
      background-color: var(--page-hubet-background);
      line-height: 1.6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    .page-hubet a {
      color: var(--page-hubet-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hubet a:hover {
      color: var(--page-hubet-accent);
    }

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

    /* Banner Section */
    .page-hubet .banner-section {
      text-align: center;
      padding: 0;
      margin-bottom: 20px;
      position: relative;
    }

    .page-hubet .banner-section img {
      width: 100%;
      height: auto;
      max-height: 400px; /* Giới hạn chiều cao banner trên di động */
      object-fit: cover;
      display: block;
      margin: 0 auto; /* Đảm bảo hình ảnh được căn giữa */
    }

    .page-hubet .banner-content {
      position: relative;
      background-color: var(--page-hubet-background);
      padding: 20px 15px;
      margin-top: -5px; /* Kéo lên một chút để tạo sự liền mạch */
    }

    .page-hubet .banner-content h1 {
      font-size: 2.2em;
      color: var(--page-hubet-primary);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    
    .page-hubet .banner-content h1 a {
      color: var(--page-hubet-primary);
    }

    .page-hubet .banner-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Floating Buttons */
    .page-hubet .floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-hubet .floating-buttons .btn {
      display: block;
      width: 45%;
      padding: 12px 15px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      color: var(--page-hubet-text-light);
      background-color: var(--page-hubet-button-bg);
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-hubet .floating-buttons .btn:hover {
      background-color: var(--page-hubet-button-hover);
      transform: translateY(-2px);
    }
    
    .page-hubet .floating-buttons .btn.register {
        background-color: var(--page-hubet-accent);
    }

    .page-hubet .floating-buttons .btn.register:hover {
        background-color: #e03c00;
    }

    /* Section Styling */
    .page-hubet .section {
      padding: 30px 0;
      text-align: center;
    }

    .page-hubet .section h2 {
      font-size: 2em;
      color: var(--page-hubet-primary);
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-hubet .section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-hubet-accent);
    }
    
    .page-hubet .section h2 a {
        color: var(--page-hubet-primary);
    }

    .page-hubet .section p {
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 10px;
    }

    /* Product Grid */
    .page-hubet .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      padding: 0 15px;
    }

    .page-hubet .product-card {
      background-color: var(--page-hubet-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-hubet .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-hubet .product-card img {
      width: 100%;
      height: 120px;
      object-fit: contain; /* Đảm bảo hình ảnh game không bị cắt xén */
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .page-hubet .product-card h3 {
      font-size: 1.1em;
      color: var(--page-hubet-primary);
      margin-bottom: 10px;
      flex-grow: 1; /* Đảm bảo tiêu đề chiếm đủ không gian */
    }

    .page-hubet .product-card h3 a {
        color: var(--page-hubet-primary);
    }

    .page-hubet .product-card .play-btn {
      display: inline-block;
      padding: 8px 15px;
      background-color: var(--page-hubet-accent);
      color: var(--page-hubet-text-light);
      border-radius: 5px;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .page-hubet .product-card .play-btn:hover {
      background-color: var(--page-hubet-button-hover);
    }

    /* Info Lists */
    .page-hubet .info-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 700px;
      text-align: left;
    }

    .page-hubet .info-list li {
      background-color: var(--page-hubet-card-bg);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
    }

    .page-hubet .info-list li::before {
      content: '✔';
      color: var(--page-hubet-accent);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    /* Call to Action */
    .page-hubet .cta-section {
      background-color: var(--page-hubet-card-bg);
      padding: 40px 15px;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hubet .cta-section h3 {
      font-size: 1.8em;
      color: var(--page-hubet-primary);
      margin-bottom: 20px;
    }

    .page-hubet .cta-section .cta-btn {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-hubet-accent);
      color: var(--page-hubet-text-light);
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-hubet .cta-section .cta-btn:hover {
      background-color: var(--page-hubet-button-hover);
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-hubet .banner-content h1 {
        font-size: 3em;
      }

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

      .page-hubet .floating-buttons {
        justify-content: center;
        gap: 20px;
      }

      .page-hubet .floating-buttons .btn {
        width: 200px;
      }
    }
  