
    /* Page-specific CSS for tải hitclub */
    .page-hitclubdownload {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e; /* Deep blue/purple background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-hitclubdownload a {
      color: #e6b800; /* Gold accent */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hitclubdownload a:hover {
      color: #ffd700; /* Brighter gold on hover */
      text-decoration: underline;
    }

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

    /* Hero Banner */
    .page-hitclubdownload .hero-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #0d0d1e;
      text-align: center;
      padding: 20px 0 40px;
    }

    .page-hitclubdownload .hero-banner img {
      width: 100%;
      max-width: 800px; /* Adjust as needed for banner image */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubdownload .hero-content {
      position: relative;
      z-index: 10;
      padding: 20px 15px;
    }

    .page-hitclubdownload .hero-content h1 {
      font-size: 2.2em;
      color: #ffd700; /* Gold */
      margin-bottom: 15px;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
    }

    .page-hitclubdownload .hero-content p {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 30px;
    }

    .page-hitclubdownload .download-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
      align-items: center;
    }

    .page-hitclubdownload .download-buttons .btn {
      display: inline-block;
      padding: 15px 30px;
      background: linear-gradient(90deg, #ff416c, #ff4b2b); /* Red-orange gradient */
      color: #ffffff;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 50px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
      transition: all 0.3s ease;
      width: 100%;
      max-width: 300px;
    }

    .page-hitclubdownload .download-buttons .btn:hover {
      background: linear-gradient(90deg, #ff4b2b, #ff416c);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 75, 43, 0.6);
    }

    /* Floating Login Button */
    .page-hitclubdownload .floating-login-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, #1cb5e0, #000046); /* Blue gradient */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      text-align: center;
      white-space: nowrap;
      transition: all 0.3s ease;
      cursor: pointer;
      animation: pulse 2s infinite;
    }

    .page-hitclubdownload .floating-login-btn:hover {
      transform: translateX(-50%) translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); }
      50% { transform: translateX(-50%) scale(1.03); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); }
      100% { transform: translateX(-50%) scale(1); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); }
    }

    /* Section Styling */
    .page-hitclubdownload section {
      padding: 40px 0;
      text-align: center;
    }

    .page-hitclubdownload section:nth-of-type(even) {
      background-color: #22223b; /* Slightly lighter dark background */
    }

    .page-hitclubdownload h2 {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-hitclubdownload h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: #e6b800;
      border-radius: 2px;
    }

    .page-hitclubdownload h3 {
      font-size: 1.5em;
      color: #e6b800;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-hitclubdownload p {
      margin-bottom: 15px;
      color: #c0c0c0;
    }

    /* Game Products Grid */
    .page-hitclubdownload .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-hitclubdownload .game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-hitclubdownload .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubdownload .game-card img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-hitclubdownload .game-card h4 {
      color: #ffd700;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-hitclubdownload .game-card p {
      font-size: 0.9em;
      color: #a0a0a0;
    }

    /* Step-by-step list */
    .page-hitclubdownload .step-list {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 700px;
      margin: 30px auto;
    }

    .page-hitclubdownload .step-list li {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-hitclubdownload .step-list li strong {
      color: #ffd700;
      font-size: 1.2em;
      flex-shrink: 0;
    }
    .page-hitclubdownload .step-list li span {
      color: #f0f0f0;
    }

    /* FAQ Section */
    .page-hitclubdownload .faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubdownload .faq-question {
      padding: 15px 20px;
      color: #ffd700;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

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

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

    .page-hitclubdownload .faq-answer {
      padding: 0 20px 15px;
      color: #c0c0c0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

    .page-hitclubdownload .faq-answer.active {
      max-height: 200px; /* Adjust based on content */
      padding-top: 10px;
      padding-bottom: 15px;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-hitclubdownload .hero-content h1 {
        font-size: 3em;
      }

      .page-hitclubdownload .hero-content p {
        font-size: 1.2em;
      }

      .page-hitclubdownload .download-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .page-hitclubdownload .download-buttons .btn {
        max-width: 250px;
      }

      .page-hitclubdownload .game-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .page-hitclubdownload h2 {
        font-size: 2.5em;
      }
    }
  