
    /* CSS cho trang Hit.clup */
    :root {
      --page-hitclub-primary-color: #ffcc00; /* Vàng */
      --page-hitclub-secondary-color: #333333; /* Xám đậm */
      --page-hitclub-accent-color: #e60000; /* Đỏ */
      --page-hitclub-text-light: #ffffff; /* Trắng */
      --page-hitclub-text-dark: #333333; /* Xám đen */
      --page-hitclub-bg-dark: #1a1a1a; /* Nền rất tối */
      --page-hitclub-bg-light: #f5f5f5; /* Nền sáng */
      --page-hitclub-border-radius: 8px;
      --page-hitclub-spacing: 20px;
    }

    .page-hitclub {
      font-family: 'Arial', sans-serif;
      color: var(--page-hitclub-text-dark);
      background-color: var(--page-hitclub-bg-light);
      line-height: 1.6;
      padding-bottom: 80px; /* Tạo không gian cho nút cố định */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-hitclub-section {
      padding: var(--page-hitclub-spacing);
      margin-bottom: var(--page-hitclub-spacing);
      background-color: var(--page-hitclub-text-light);
      border-radius: var(--page-hitclub-border-radius);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-hitclub-section-dark {
      background-color: var(--page-hitclub-bg-dark);
      color: var(--page-hitclub-text-light);
      box-shadow: none;
    }

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

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

    .page-hitclub-hero {
      text-align: center;
      padding: 40px 15px;
      background: linear-gradient(135deg, var(--page-hitclub-bg-dark) 0%, var(--page-hitclub-secondary-color) 100%);
      color: var(--page-hitclub-text-light);
      position: relative;
      overflow: hidden;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .page-hitclub-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:abstract,geometric,dark]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-hitclub-hero-content {
      position: relative;
      z-index: 1;
    }

    .page-hitclub-hero h1 {
      color: var(--page-hitclub-primary-color);
      font-size: 2.2em;
      margin-bottom: 10px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-hitclub-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-hitclub-banner-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: var(--page-hitclub-border-radius);
      margin: 20px auto 0 auto; /* Căn giữa, không dính đáy */
      display: block;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-hitclub-cta-button {
      display: inline-block;
      background-color: var(--page-hitclub-accent-color);
      color: var(--page-hitclub-text-light);
      padding: 12px 25px;
      border-radius: var(--page-hitclub-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 15px;
      border: none;
      cursor: pointer;
    }

    .page-hitclub-cta-button:hover {
      background-color: #cc0000;
      transform: translateY(-2px);
    }

    .page-hitclub-floating-button {
      position: fixed;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-hitclub-primary-color);
      color: var(--page-hitclub-bg-dark); /* Màu tối trên nền vàng để có độ tương phản tốt */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      animation: page-hitclub-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap; /* Ngăn không cho văn bản xuống dòng */
    }

    .page-hitclub-floating-button:hover {
      background-color: #ffd733;
      transform: translateX(-50%) translateY(-2px);
    }

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

    .page-hitclub-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-hitclub-game-card {
      background-color: var(--page-hitclub-bg-dark);
      border-radius: var(--page-hitclub-border-radius);
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-hitclub-text-light);
    }

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

    .page-hitclub-game-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      display: block;
    }

    .page-hitclub-game-card-title {
      padding: 10px 5px;
      font-size: 0.95em;
      font-weight: bold;
      color: var(--page-hitclub-primary-color); /* Vàng trên nền tối */
    }

    .page-hitclub-promo-card {
      display: flex;
      flex-direction: column;
      background-color: var(--page-hitclub-primary-color);
      color: var(--page-hitclub-bg-dark);
      border-radius: var(--page-hitclub-border-radius);
      padding: var(--page-hitclub-spacing);
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-bottom: var(--page-hitclub-spacing);
    }

    .page-hitclub-promo-card h3 {
      color: var(--page-hitclub-accent-color);
      margin-top: 0;
      font-size: 1.5em;
    }

    .page-hitclub-promo-card p {
      margin-bottom: 15px;
    }

    .page-hitclub-promo-card .page-hitclub-cta-button {
      background-color: var(--page-hitclub-accent-color);
      color: var(--page-hitclub-text-light);
      align-self: center;
    }

    .page-hitclub-features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-hitclub-features-list li {
      background-color: var(--page-hitclub-bg-dark);
      color: var(--page-hitclub-text-light);
      padding: 15px;
      border-radius: var(--page-hitclub-border-radius);
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-hitclub-features-list li::before {
      content: '✔';
      color: var(--page-hitclub-primary-color); /* Vàng */
      font-size: 1.2em;
      font-weight: bold;
    }

    .page-hitclub-testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-hitclub-testimonial-card {
      background-color: var(--page-hitclub-bg-dark);
      color: var(--page-hitclub-text-light);
      padding: 20px;
      border-radius: var(--page-hitclub-border-radius);
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .page-hitclub-testimonial-card p {
      font-style: italic;
      margin-bottom: 10px;
      color: var(--page-hitclub-text-light);
    }

    .page-hitclub-testimonial-card strong {
      display: block;
      text-align: right;
      color: var(--page-hitclub-primary-color); /* Vàng */
    }

    /* Điều chỉnh Responsive */
    @media (min-width: 600px) {
      .page-hitclub-hero h1 {
        font-size: 2.8em;
      }
      .page-hitclub-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-hitclub-features-list {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-hitclub-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 992px) {
      .page-hitclub-hero h1 {
        font-size: 3.5em;
      }
      .page-hitclub-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-hitclub-features-list {
        grid-template-columns: repeat(3, 1fr);
      }
      .page-hitclub-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  