
    /* Tổng thể */
    .page-hitclubapk {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Cho nút nổi */
    }

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

    .page-hitclubapk-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-hitclubapk-section:nth-of-type(even) {
      background-color: #16213e;
    }

    .page-hitclubapk-title {
      color: #e94560;
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-hitclubapk-subtitle {
      color: #0f3460;
      font-size: 1.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-hitclubapk-text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-hitclubapk-button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-hitclubapk-button:hover {
      background-color: #b82d45;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-hitclubapk-hero {
      background-color: #0f3460;
      padding: 20px 0 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-hitclubapk-hero-image {
      width: 100%;
      max-width: 500px; /* Giới hạn kích thước ảnh banner */
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-hitclubapk-hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      text-align: center;
      padding: 0 15px;
    }

    .page-hitclubapk-hero .page-hitclubapk-title {
      color: #ffcc00; /* Màu vàng cho tiêu đề nổi bật */
      font-size: 2.8em;
      line-height: 1.2;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubapk-hero .page-hitclubapk-text {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    /* Giới thiệu */
    .page-hitclubapk-about .page-hitclubapk-text {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Trò chơi nổi bật */
    .page-hitclubapk-games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-hitclubapk-game-card {
      background-color: #0f3460;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-hitclubapk-game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

    .page-hitclubapk-game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-hitclubapk-game-card h3 {
      color: #e94560;
      font-size: 1.5em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-hitclubapk-game-card p {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Hướng dẫn tải & đăng nhập */
    .page-hitclubapk-guide-list {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 800px;
      margin: 30px auto 0;
    }

    .page-hitclubapk-guide-list li {
      background-color: #0f3460;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: flex-start;
    }

    .page-hitclubapk-guide-list li strong {
      color: #e94560;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      background-color: #e94560;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-hitclubapk-guide-list li p {
      margin: 0;
      flex-grow: 1;
      font-size: 1em;
      color: #e0e0e0;
    }

    /* Khuyến mãi */
    .page-hitclubapk-promo-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-hitclubapk-promo-list li {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .page-hitclubapk-promo-list li::before {
      content: '🎁';
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 2em;
      opacity: 0.2;
    }

    .page-hitclubapk-promo-list h3 {
      color: #ffcc00;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-hitclubapk-promo-list p {
      color: #cccccc;
      font-size: 1em;
    }

    /* Nhà cung cấp */
    .page-hitclubapk-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubapk-provider-logo {
      background-color: #0f3460;
      border-radius: 10px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .page-hitclubapk-provider-logo:hover {
      transform: translateY(-5px);
    }

    .page-hitclubapk-provider-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(20%);
      transition: filter 0.2s ease;
    }

    .page-hitclubapk-provider-logo:hover img {
      filter: grayscale(0%);
    }

    /* FAQ */
    .page-hitclubapk-faq-item {
      background-color: #0f3460;
      margin-bottom: 10px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubapk-faq-question {
      display: block;
      width: 100%;
      padding: 18px 25px;
      background-color: #16213e;
      color: #e94560;
      text-align: left;
      border: none;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      position: relative;
      transition: background-color 0.3s ease;
    }

    .page-hitclubapk-faq-question:hover {
      background-color: #0f3460;
    }

    .page-hitclubapk-faq-question::after {
      content: '+';
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-hitclubapk-faq-question.active::after {
      content: '-';
      transform: translateY(-50%) rotate(180deg);
    }

    .page-hitclubapk-faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: #cccccc;
    }

    .page-hitclubapk-faq-answer p {
      padding-bottom: 18px;
      margin: 0;
    }

    /* Nút đăng nhập nổi */
    .page-hitclubapk-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Ngăn chặn ngắt dòng */
    }

    .page-hitclubapk-floating-button:hover {
      background-color: #b82d45;
      transform: translateX(-50%) translateY(-5px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-hitclubapk-title {
        font-size: 2em;
      }
      .page-hitclubapk-subtitle {
        font-size: 1.5em;
      }
      .page-hitclubapk-hero .page-hitclubapk-title {
        font-size: 2.2em;
      }
      .page-hitclubapk-hero .page-hitclubapk-text {
        font-size: 1em;
      }
      .page-hitclubapk-game-card img {
        height: 150px;
      }
      .page-hitclubapk-game-card h3 {
        font-size: 1.3em;
      }
      .page-hitclubapk-guide-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-hitclubapk-guide-list li strong {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-hitclubapk-promo-list {
        grid-template-columns: 1fr;
      }
      .page-hitclubapk-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-hitclubapk-floating-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }

    @media (max-width: 480px) {
      .page-hitclubapk-title {
        font-size: 1.8em;
      }
      .page-hitclubapk-hero .page-hitclubapk-title {
        font-size: 1.8em;
      }
      .page-hitclubapk-game-card {
        padding-bottom: 15px;
      }
      .page-hitclubapk-game-card img {
        height: 120px;
      }
      .page-hitclubapk-game-card h3 {
        font-size: 1.2em;
      }
      .page-hitclubapk-section {
        padding: 30px 0;
      }
    }
  