
    /* Tổng thể */
    .page-downloadhitclub {
      font-family: 'Arial', sans-serif;
      background-color: #121212; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    /* Tiêu đề */
    .page-downloadhitclub h1,
    .page-downloadhitclub h2,
    .page-downloadhitclub h3 {
      color: #ffcc00; /* Vàng nổi bật */
      text-align: center;
      margin-bottom: 20px;
    }
    .page-downloadhitclub h1 {
      font-size: 2.5em;
      padding: 20px 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .page-downloadhitclub h2 {
      font-size: 2em;
      margin-top: 40px;
      padding: 10px;
      border-bottom: 2px solid #ffcc00;
      display: inline-block;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }
    .page-downloadhitclub h3 {
      font-size: 1.5em;
      margin-top: 30px;
      color: #00bfff; /* Xanh dương nổi bật */
    }

    /* Các phần chính */
    .page-downloadhitclub .section {
      padding: 30px 15px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .page-downloadhitclub .section:nth-of-type(even) {
      background-color: #1a1a1a;
    }

    /* Banner */
    .page-downloadhitclub .banner-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      background-color: #000;
    }
    .page-downloadhitclub .banner-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 400px; /* Giới hạn chiều cao banner */
      margin: 0 auto; /* Đảm bảo hình ảnh banner được căn giữa */
    }

    /* Nút đăng nhập nổi */
    .page-downloadhitclub .floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-image: linear-gradient(45deg, #ff416c, #ff4b2b); /* Gradient màu nóng */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
      z-index: 1000;
      white-space: nowrap; /* Đảm bảo nút không bị ngắt dòng */
    }
    .page-downloadhitclub .floating-login-button:hover {
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
    }

    /* Nút chung */
    .page-downloadhitclub .btn {
      display: inline-block;
      background-color: #00bfff;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin: 10px;
    }
    .page-downloadhitclub .btn-primary {
      background-color: #ffcc00;
      color: #121212;
    }
    .page-downloadhitclub .btn-primary:hover {
      background-color: #e6b800;
    }
    .page-downloadhitclub .btn-secondary {
      background-color: #00bfff;
      color: #ffffff;
    }
    .page-downloadhitclub .btn-secondary:hover {
      background-color: #0099cc;
    }

    /* Văn bản */
    .page-downloadhitclub p {
      margin-bottom: 15px;
      text-align: left;
      padding: 0 10px;
    }
    .page-downloadhitclub strong {
      color: #ffcc00;
    }

    /* Danh sách */
    .page-downloadhitclub ul {
      list-style-type: none;
      padding: 0;
      margin: 20px auto;
      max-width: 800px;
    }
    .page-downloadhitclub ul li {
      background-color: #1a1a1a;
      border-left: 5px solid #ffcc00;
      margin-bottom: 10px;
      padding: 15px;
      text-align: left;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    .page-downloadhitclub ul li strong {
      color: #00bfff;
    }

    /* Lưới sản phẩm/game */
    .page-downloadhitclub .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-downloadhitclub .game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    .page-downloadhitclub .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.7);
    }
    .page-downloadhitclub .game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-bottom: 1px solid #333;
    }
    .page-downloadhitclub .game-card h3 {
      font-size: 1.1em;
      margin: 15px 10px 10px;
      color: #ffcc00;
      flex-grow: 1;
    }
    .page-downloadhitclub .game-card p {
      font-size: 0.9em;
      color: #b0b0b0;
      padding: 0 10px 15px;
      text-align: center;
    }
    .page-downloadhitclub .game-card .btn {
      width: calc(100% - 20px);
      margin: 0 10px 10px;
      background-color: #00bfff;
      color: #ffffff;
      padding: 10px 0;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }
    .page-downloadhitclub .game-card .btn:hover {
      background-color: #0099cc;
    }
    .page-downloadhitclub .game-card .game-link {
        color: inherit;
        text-decoration: none;
    }
    .page-downloadhitclub .game-card .game-link:hover {
        text-decoration: underline;
    }


    /* Hướng dẫn tải */
    .page-downloadhitclub .download-instructions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .page-downloadhitclub .download-step {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      max-width: 350px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
      text-align: center;
      flex: 1 1 300px; /* Cho phép co giãn */
    }
    .page-downloadhitclub .download-step h3 {
      color: #ffcc00;
      margin-top: 0;
    }
    .page-downloadhitclub .download-step img {
      max-width: 100px;
      margin-bottom: 15px;
    }
    .page-downloadhitclub .download-step .btn {
      margin-top: 15px;
      width: 100%;
    }

    /* FAQ */
    .page-downloadhitclub .faq-container {
        max-width: 800px;
        margin: 20px auto;
    }
    .page-downloadhitclub .faq-item {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
    .page-downloadhitclub .faq-question {
      padding: 15px 20px;
      background-color: #222;
      color: #ffcc00;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-downloadhitclub .faq-question:hover {
      background-color: #333;
    }
    .page-downloadhitclub .faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }
    .page-downloadhitclub .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }
    .page-downloadhitclub .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: #e0e0e0;
      text-align: left;
    }
    .page-downloadhitclub .faq-answer p {
      padding-bottom: 15px;
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-downloadhitclub h1 {
        font-size: 2em;
      }
      .page-downloadhitclub h2 {
        font-size: 1.7em;
      }
      .page-downloadhitclub h3 {
        font-size: 1.3em;
      }
      .page-downloadhitclub .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      }
      .page-downloadhitclub .floating-login-button {
        padding: 12px 20px;
        font-size: 1em;
        width: calc(100% - 40px);
        max-width: 300px;
      }
      .page-downloadhitclub p, .page-downloadhitclub ul li {
        padding: 0 15px;
      }
    }

    @media (max-width: 480px) {
      .page-downloadhitclub h1 {
        font-size: 1.8em;
      }
      .page-downloadhitclub h2 {
        font-size: 1.5em;
      }
      .page-downloadhitclub .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-downloadhitclub .download-step {
        flex: 1 1 100%;
        max-width: 100%;
      }
      .page-downloadhitclub p, .page-downloadhitclub ul li {
        padding: 0 10px;
      }
    }
  