
    /* Tổng thể */
    .page-hitclubvn {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh nút nổi bị che */
    }

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

    .page-hitclubvn h1, .page-hitclubvn h2, .page-hitclubvn h3 {
      color: #ffcc00; /* Màu vàng cam cho tiêu đề */
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-hitclubvn h1 {
      font-size: 2.5em;
      margin-top: 40px;
    }

    .page-hitclubvn h2 {
      font-size: 2em;
      margin-top: 35px;
    }

    .page-hitclubvn h3 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    .page-hitclubvn p {
      margin-bottom: 15px;
      text-align: justify;
    }
    
    .page-hitclubvn a {
        color: #ffdd55; /* Màu vàng sáng cho liên kết */
        text-decoration: none;
    }

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

    /* Nút nổi Đăng ký/Đăng nhập */
    .page-hitclubvn__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.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-hitclubvn__floating-buttons .page-hitclubvn__button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #1a1a1a; /* Màu chữ tối cho nút */
      white-space: nowrap; /* Ngăn chữ xuống dòng */
    }

    .page-hitclubvn__floating-buttons .page-hitclubvn__button--register {
      background-color: #00ff00; /* Màu xanh lá cho đăng ký */
      box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    }

    .page-hitclubvn__floating-buttons .page-hitclubvn__button--login {
      background-color: #00aaff; /* Màu xanh dương cho đăng nhập */
      box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    }

    .page-hitclubvn__floating-buttons .page-hitclubvn__button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    /* Phần Hero Banner */
    .page-hitclubvn__hero {
      position: relative;
      text-align: center;
      background-color: #0a0a0a;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .page-hitclubvn__hero-image {
      width: 100%;
      max-width: 700px; /* Giới hạn chiều rộng banner trên desktop */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubvn__hero-content {
      padding: 0 15px;
    }

    .page-hitclubvn__hero p {
      font-size: 1.1em;
      max-width: 800px;
      margin: 15px auto 0 auto;
      color: #cccccc;
    }

    /* Các phần nội dung chung */
    .page-hitclubvn__section {
      padding: 40px 0;
      border-bottom: 1px solid #333;
    }
    
    .page-hitclubvn__section:last-of-type {
        border-bottom: none;
    }

    /* Phần giới thiệu */
    .page-hitclubvn__intro p {
      font-size: 1.05em;
      line-height: 1.8;
      color: #e0e0e0;
    }

    /* Phần game */
    .page-hitclubvn__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-hitclubvn__game-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-hitclubvn__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubvn__game-item img {
      width: 100%;
      height: 120px; /* Chiều cao cố định cho ảnh game */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #ffcc00;
    }

    .page-hitclubvn__game-item h3 {
      font-size: 1.1em;
      margin: 15px 10px 10px 10px;
      color: #ffdd55;
      text-align: center;
    }

    .page-hitclubvn__game-item p {
        font-size: 0.9em;
        color: #cccccc;
        padding: 0 10px 15px 10px;
        text-align: center;
    }

    /* Phần khuyến mãi */
    .page-hitclubvn__promotion-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap; /* Cho phép xuống dòng trên mobile */
    }
    
    .page-hitclubvn__promotion-card img {
        max-width: 120px;
        height: auto;
        border-radius: 8px;
        border: 2px solid #ffcc00;
    }

    .page-hitclubvn__promotion-card h3 {
      color: #00ff00; /* Màu xanh lá nổi bật */
      margin-top: 0;
      text-align: left;
      flex-grow: 1;
    }
    
    .page-hitclubvn__promotion-card p {
        flex-basis: 100%; /* Đảm bảo đoạn văn bản chiếm toàn bộ chiều rộng dưới tiêu đề */
        margin-top: 10px;
        color: #e0e0e0;
    }

    /* Phần tại sao chọn chúng tôi */
    .page-hitclubvn__why-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-hitclubvn__why-us-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-hitclubvn__why-us-item h3 {
      color: #00aaff;
      margin-bottom: 10px;
    }

    .page-hitclubvn__why-us-item p {
      color: #cccccc;
      font-size: 0.95em;
    }
    
    .page-hitclubvn__why-us-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    /* Phần CTA */
    .page-hitclubvn__cta {
      text-align: center;
      background-color: #0a0a0a;
      padding: 50px 15px;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-hitclubvn__cta h2 {
      color: #ffcc00;
      margin-bottom: 20px;
    }

    .page-hitclubvn__cta p {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-hitclubvn__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-hitclubvn__cta-buttons .page-hitclubvn__button {
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #1a1a1a;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hitclubvn__cta-buttons .page-hitclubvn__button--download {
      background-color: #00ff00;
    }

    .page-hitclubvn__cta-buttons .page-hitclubvn__button--play {
      background-color: #ffcc00;
    }

    .page-hitclubvn__cta-buttons .page-hitclubvn__button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hitclubvn h1 {
        font-size: 2em;
      }
      .page-hitclubvn h2 {
        font-size: 1.7em;
      }
      .page-hitclubvn h3 {
        font-size: 1.3em;
      }

      .page-hitclubvn__floating-buttons .page-hitclubvn__button {
        font-size: 1em;
        padding: 10px 10px;
      }

      .page-hitclubvn__hero-image {
        margin-left: auto;
        margin-right: auto;
      }
      
      .page-hitclubvn__promotion-card {
        flex-direction: column;
        text-align: center;
      }
      
      .page-hitclubvn__promotion-card img {
        margin-bottom: 15px;
      }
      
      .page-hitclubvn__promotion-card h3 {
        text-align: center;
      }

      .page-hitclubvn__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
        .page-hitclubvn h1 {
            font-size: 1.8em;
        }
        .page-hitclubvn h2 {
            font-size: 1.5em;
        }
        .page-hitclubvn__floating-buttons .page-hitclubvn__button {
            font-size: 0.9em;
            padding: 8px 5px;
        }
        .page-hitclubvn__games-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
        .page-hitclubvn__game-item img {
            height: 100px;
        }
    }
  