
    /* CSS toàn cục cho trang hit.club apk */
    :root {
      --page-hitclubapk-primary-color: #e44d26; /* Màu cam đậm */
      --page-hitclubapk-secondary-color: #f7a01d; /* Màu vàng cam */
      --page-hitclubapk-background-light: #f5f5f5; /* Nền sáng */
      --page-hitclubapk-background-dark: #2c3e50; /* Nền tối */
      --page-hitclubapk-text-dark: #333333; /* Chữ tối */
      --page-hitclubapk-text-light: #ffffff; /* Chữ sáng */
      --page-hitclubapk-border-color: #dddddd; /* Màu viền */
      --page-hitclubapk-gradient-start: #ff7e5f;
      --page-hitclubapk-gradient-end: #feb47b;
    }

    .page-hitclubapk {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-hitclubapk-text-dark);
      background-color: var(--page-hitclubapk-background-light);
      padding-bottom: 80px; /* Đảm bảo không bị nút nổi che khuất nội dung cuối */
    }

    .page-hitclubapk .page-hitclubapk-section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: var(--page-hitclubapk-background-light);
    }

    .page-hitclubapk .page-hitclubapk-section-dark {
      background-color: var(--page-hitclubapk-background-dark);
      color: var(--page-hitclubapk-text-light);
    }

    .page-hitclubapk .page-hitclubapk-section-dark h2,
    .page-hitclubapk .page-hitclubapk-section-dark h3 {
      color: var(--page-hitclubapk-secondary-color);
    }

    .page-hitclubapk h1, .page-hitclubapk h2, .page-hitclubapk h3 {
      color: var(--page-hitclubapk-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-hitclubapk h1 {
      font-size: 2.5em;
      margin-top: 20px;
      line-height: 1.2;
    }

    .page-hitclubapk h2 {
      font-size: 2em;
      margin-top: 30px;
      border-bottom: 2px solid var(--page-hitclubapk-primary-color);
      padding-bottom: 10px;
      display: inline-block;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

    .page-hitclubapk h3 {
      font-size: 1.5em;
      margin-top: 25px;
    }

    .page-hitclubapk p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-hitclubapk .page-hitclubapk-button {
      display: inline-block;
      background: linear-gradient(45deg, var(--page-hitclubapk-gradient-start), var(--page-hitclubapk-gradient-end));
      color: var(--page-hitclubapk-text-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-hitclubapk .page-hitclubapk-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hitclubapk .page-hitclubapk-hero {
      position: relative;
      text-align: center;
      padding-top: 160px; /* Safe area for floating header/menu (140-180px) */
      background-color: var(--page-hitclubapk-background-dark); /* Fallback background */
      padding-bottom: 40px;
    }

    .page-hitclubapk .page-hitclubapk-hero-image-container {
      width: 100%;
      max-width: 800px; /* Limit image width for better display */
      margin: 0 auto;
      display: block;
      overflow: hidden; /* Ensure image doesn't overflow */
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubapk .page-hitclubapk-hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Prevent stretching, maintain aspect ratio */
      border-radius: 15px;
    }

    .page-hitclubapk .page-hitclubapk-hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 20px auto 0;
      padding: 0 20px;
      color: var(--page-hitclubapk-text-light);
    }

    .page-hitclubapk .page-hitclubapk-hero-content h1 {
      color: var(--page-hitclubapk-text-light);
      font-size: 2.8em;
      margin-bottom: 15px;
    }

    .page-hitclubapk .page-hitclubapk-hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-hitclubapk .page-hitclubapk-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-hitclubapk .page-hitclubapk-game-item {
      background-color: var(--page-hitclubapk-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 15px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-hitclubapk .page-hitclubapk-game-item:hover {
      transform: translateY(-5px);
    }

    .page-hitclubapk .page-hitclubapk-game-item img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 8px;
    }

    .page-hitclubapk .page-hitclubapk-game-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: var(--page-hitclubapk-text-dark);
    }

    .page-hitclubapk .page-hitclubapk-download-steps {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-hitclubapk .page-hitclubapk-download-steps li {
      background-color: var(--page-hitclubapk-text-light);
      border-left: 5px solid var(--page-hitclubapk-primary-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
    }

    .page-hitclubapk .page-hitclubapk-download-steps li strong {
      color: var(--page-hitclubapk-primary-color);
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-hitclubapk .page-hitclubapk-download-steps li p {
      margin: 0;
      text-align: left;
    }

    .page-hitclubapk .page-hitclubapk-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      text-align: center;
    }

    .page-hitclubapk .page-hitclubapk-provider-item {
      background-color: var(--page-hitclubapk-text-light);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-hitclubapk .page-hitclubapk-provider-item:hover {
      transform: scale(1.05);
    }

    .page-hitclubapk .page-hitclubapk-provider-item img {
      width: 80px;
      height: 50px;
      object-fit: contain;
    }

    .page-hitclubapk .page-hitclubapk-faq-item {
      background-color: var(--page-hitclubapk-text-light);
      border: 1px solid var(--page-hitclubapk-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-hitclubapk .page-hitclubapk-faq-question {
      padding: 18px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-hitclubapk-primary-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

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

    .page-hitclubapk .page-hitclubapk-faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

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

    .page-hitclubapk .page-hitclubapk-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      background-color: var(--page-hitclubapk-text-light);
      color: var(--page-hitclubapk-text-dark);
    }

    .page-hitclubapk .page-hitclubapk-faq-answer.active {
      max-height: 200px; /* Adjust based on expected content */
      padding: 15px 20px;
    }

    /* Nút nổi đăng nhập */
    .page-hitclubapk-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background: linear-gradient(90deg, #ff416c, #ff4b2b);
      color: var(--page-hitclubapk-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: page-hitclubapk-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-hitclubapk-floating-button:hover {
      animation: none;
      transform: scale(1.05);
    }

    @keyframes page-hitclubapk-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      .page-hitclubapk .page-hitclubapk-hero {
        padding-top: 140px; /* Adjust safe area for smaller screens */
      }
      .page-hitclubapk h1 {
        font-size: 2em;
      }
      .page-hitclubapk h2 {
        font-size: 1.7em;
      }
      .page-hitclubapk .page-hitclubapk-hero-content p {
        font-size: 1em;
      }
      .page-hitclubapk .page-hitclubapk-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-hitclubapk .page-hitclubapk-game-item img {
        width: 80px;
        height: 80px;
      }
      .page-hitclubapk .page-hitclubapk-floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-hitclubapk .page-hitclubapk-hero {
        padding-top: 120px; /* Further adjust safe area */
      }
      .page-hitclubapk h1 {
        font-size: 1.8em;
      }
      .page-hitclubapk h2 {
        font-size: 1.5em;
      }
      .page-hitclubapk .page-hitclubapk-section {
        padding: 30px 15px;
      }
      .page-hitclubapk .page-hitclubapk-download-steps li {
        flex-direction: column;
        text-align: center;
      }
      .page-hitclubapk .page-hitclubapk-download-steps li strong {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-hitclubapk .page-hitclubapk-floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  