
    /* Tổng thể - Đảm bảo độ tương phản */
    .page-hitclubwins {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 120px; /* Đủ chỗ cho nút nổi */
    }

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

    /* Tiêu đề */
    .page-hitclubwins-hero h1 {
      font-size: 2.5em;
      text-align: center;
      color: #ffcc00; /* Màu vàng nổi bật */
      margin-bottom: 20px;
      padding-top: 20px;
    }
    .page-hitclubwins-hero p {
        text-align: center;
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .page-hitclubwins-section-title {
      font-size: 2em;
      color: #ffcc00;
      text-align: center;
      margin: 40px 0 25px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-hitclubwins-section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 80px;
        height: 3px;
        background-color: #ffcc00;
        border-radius: 2px;
    }

    /* Banner */
    .page-hitclubwins-banner {
      width: 100%;
      height: 250px; /* Chiều cao cố định cho banner trên di động */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
      position: relative;
    }
    .page-hitclubwins-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Đảm bảo ảnh phủ kín và căn giữa */
      display: block;
    }
    .page-hitclubwins-banner-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0));
        padding: 20px 15px 10px;
        box-sizing: border-box;
        text-align: center;
    }
    .page-hitclubwins-banner-overlay h2 {
        color: #ffcc00;
        font-size: 1.8em;
        margin: 0;
    }
    .page-hitclubwins-banner-overlay p {
        color: #f0f0f0;
        font-size: 1em;
        margin-top: 5px;
    }

    /* Nút nổi */
    .page-hitclubwins-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      display: flex;
      justify-content: space-around;
      gap: 15px;
      z-index: 1000;
      padding: 10px;
      background-color: rgba(26, 26, 26, 0.8); /* Nền mờ cho nút nổi */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    .page-hitclubwins-btn {
      display: block;
      flex: 1;
      padding: 15px 10px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }
    .page-hitclubwins-btn-register {
      background-color: #ffcc00; /* Màu vàng */
      color: #1a1a1a; /* Chữ đen */
      border: 2px solid #ffcc00;
    }
    .page-hitclubwins-btn-register:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }
    .page-hitclubwins-btn-login {
      background-color: #333; /* Màu xám đậm */
      color: #ffcc00; /* Chữ vàng */
      border: 2px solid #ffcc00;
    }
    .page-hitclubwins-btn-login:hover {
      background-color: #444;
      transform: translateY(-2px);
    }

    /* Phần giới thiệu */
    .page-hitclubwins-intro p {
      text-align: justify;
      margin-bottom: 20px;
      font-size: 1em;
    }
    .page-hitclubwins-intro ul {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 20px;
    }
    .page-hitclubwins-intro li {
      margin-bottom: 8px;
    }

    /* Sản phẩm/Trò chơi */
    .page-hitclubwins-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .page-hitclubwins-game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.2s ease;
      position: relative;
    }
    .page-hitclubwins-game-card:hover {
      transform: translateY(-5px);
    }
    .page-hitclubwins-game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #3a3a3a;
    }
    .page-hitclubwins-game-card-content {
      padding: 15px 10px;
    }
    .page-hitclubwins-game-card h3 {
      font-size: 1.1em;
      margin: 0 0 10px;
      color: #ffcc00;
    }
    .page-hitclubwins-game-card a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
      display: block; /* Đảm bảo toàn bộ thẻ H3 là liên kết */
    }
    .page-hitclubwins-game-card a:hover {
        text-decoration: underline;
    }
    .page-hitclubwins-game-card p {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 15px;
    }
    .page-hitclubwins-game-card .page-hitclubwins-play-btn {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }
    .page-hitclubwins-game-card .page-hitclubwins-play-btn:hover {
      background-color: #e6b800;
    }

    /* Phần Hướng dẫn */
    .page-hitclubwins-guide-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-bottom: 40px;
    }
    .page-hitclubwins-guide-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-hitclubwins-guide-item h3 {
      color: #ffcc00;
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 15px;
    }
    .page-hitclubwins-guide-item p {
      color: #f0f0f0;
      font-size: 0.95em;
      margin-bottom: 10px;
    }
    .page-hitclubwins-guide-item ul {
      list-style: decimal inside;
      margin-left: 15px;
      padding-left: 0;
    }
    .page-hitclubwins-guide-item li {
      margin-bottom: 5px;
      color: #f0f0f0;
    }
    .page-hitclubwins-guide-item a {
        color: #ffcc00;
        text-decoration: none;
    }
    .page-hitclubwins-guide-item a:hover {
        text-decoration: underline;
    }

    /* Câu hỏi thường gặp */
    .page-hitclubwins-faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .page-hitclubwins-faq-question {
      padding: 15px 20px;
      background-color: #333;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: #ffcc00;
      font-size: 1.1em;
    }
    .page-hitclubwins-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }
    .page-hitclubwins-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }
    .page-hitclubwins-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: #f0f0f0;
      font-size: 0.95em;
    }
    .page-hitclubwins-faq-answer.active {
      max-height: 200px; /* Điều chỉnh nếu nội dung dài hơn */
      padding-bottom: 15px;
    }
    .page-hitclubwins-faq-answer p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .page-hitclubwins-faq-answer a {
        color: #ffcc00;
        text-decoration: none;
    }
    .page-hitclubwins-faq-answer a:hover {
        text-decoration: underline;
    }

    /* Media Queries cho Desktop */
    @media (min-width: 768px) {
      .page-hitclubwins-hero h1 {
        font-size: 3.5em;
        padding-top: 40px;
      }
      .page-hitclubwins-hero p {
          font-size: 1.2em;
      }
      .page-hitclubwins-section-title {
        font-size: 2.5em;
        margin: 60px 0 35px;
      }
      .page-hitclubwins-banner {
        height: 400px; /* Chiều cao lớn hơn cho desktop */
        margin-bottom: 50px;
      }
      .page-hitclubwins-banner-overlay h2 {
          font-size: 2.5em;
      }
      .page-hitclubwins-banner-overlay p {
          font-size: 1.1em;
      }
      .page-hitclubwins-floating-buttons {
        bottom: 30px;
        width: auto;
        max-width: none;
        gap: 25px;
        padding: 15px 30px;
      }
      .page-hitclubwins-btn {
        padding: 18px 30px;
        font-size: 1.2em;
      }
      .page-hitclubwins-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
      }
      .page-hitclubwins-game-card img {
        height: 150px;
      }
      .page-hitclubwins-guide-list {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-hitclubwins-guide-item h3 {
        font-size: 1.6em;
      }
      .page-hitclubwins-faq-question {
        font-size: 1.2em;
      }
    }
  