
    :root {
      --page-hitclubweb-primary-color: #f7b32b; /* Vàng cam */
      --page-hitclubweb-secondary-color: #3a506b; /* Xanh đậm */
      --page-hitclubweb-accent-color: #e06d00; /* Cam đậm */
      --page-hitclubweb-text-light: #f4f4f4;
      --page-hitclubweb-text-dark: #2c3e50;
      --page-hitclubweb-bg-dark: #1a2a3a; /* Nền tối */
      --page-hitclubweb-bg-light: #2c4054; /* Nền hơi sáng hơn */
      --page-hitclubweb-border-color: #5a708a;
    }

    .page-hitclubweb {
      font-family: 'Arial', sans-serif;
      color: var(--page-hitclubweb-text-light);
      background-color: var(--page-hitclubweb-bg-dark);
      line-height: 1.6;
      padding: 20px 0;
    }

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

    .page-hitclubweb-section {
      background-color: var(--page-hitclubweb-bg-light);
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hitclubweb-section-hero {
      background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:background:hero,hitclubweb,banner]');
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 80px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-hitclubweb-section-hero h1 {
      color: var(--page-hitclubweb-primary-color);
      font-size: 2.8em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-hitclubweb-section-hero p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubweb-btn {
      display: inline-block;
      background-color: var(--page-hitclubweb-primary-color);
      color: var(--page-hitclubweb-text-dark);
      padding: 15px 30px;
      border-radius: 5px;
      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-hitclubweb-btn:hover {
      background-color: var(--page-hitclubweb-accent-color);
      transform: translateY(-2px);
    }

    .page-hitclubweb-heading {
      color: var(--page-hitclubweb-primary-color);
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid var(--page-hitclubweb-border-color);
      padding-bottom: 10px;
    }

    .page-hitclubweb-sub-heading {
      color: var(--page-hitclubweb-primary-color);
      font-size: 1.5em;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-hitclubweb-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-hitclubweb-card {
      background-color: var(--page-hitclubweb-bg-dark);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-hitclubweb-card:hover {
      transform: translateY(-5px);
    }

    .page-hitclubweb-card img {
      max-width: 100%;
      height: 150px;
      object-fit: contain;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .page-hitclubweb-card h3 {
      color: var(--page-hitclubweb-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-hitclubweb-card p {
      color: var(--page-hitclubweb-text-light);
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-hitclubweb-list {
      list-style: none;
      padding: 0;
    }

    .page-hitclubweb-list li {
      background-color: var(--page-hitclubweb-bg-dark);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      border-left: 5px solid var(--page-hitclubweb-primary-color);
      display: flex;
      align-items: center;
    }

    .page-hitclubweb-list li::before {
      content: '✓';
      color: var(--page-hitclubweb-primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-hitclubweb-faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--page-hitclubweb-border-color);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-hitclubweb-faq-question {
      background-color: var(--page-hitclubweb-secondary-color);
      color: var(--page-hitclubweb-text-light);
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-hitclubweb-faq-question:hover {
      background-color: #4a6380;
    }

    .page-hitclubweb-faq-question .icon {
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

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

    .page-hitclubweb-faq-answer p {
      padding: 15px 0;
      margin: 0;
    }

    .page-hitclubweb-faq-item.active .page-hitclubweb-faq-answer {
      max-height: 200px; /* Adjust as needed */
      padding: 15px 20px;
    }

    .page-hitclubweb-faq-item.active .page-hitclubweb-faq-question .icon {
      transform: rotate(180deg);
    }

    .page-hitclubweb-promo-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-hitclubweb-accent-color);
      color: var(--page-hitclubweb-text-light);
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 15px;
      animation: page-hitclubweb-pulse 2s infinite;
    }

    .page-hitclubweb-promo-float a {
      color: var(--page-hitclubweb-text-dark);
      background-color: var(--page-hitclubweb-text-light);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-hitclubweb-promo-float a:hover {
      background-color: var(--page-hitclubweb-primary-color);
    }

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

    @media (max-width: 768px) {
      .page-hitclubweb-section-hero h1 {
        font-size: 2em;
      }
      .page-hitclubweb-section-hero p {
        font-size: 1em;
      }
      .page-hitclubweb-heading {
        font-size: 1.8em;
      }
      .page-hitclubweb-sub-heading {
        font-size: 1.3em;
      }
      .page-hitclubweb-promo-float {
        flex-direction: column;
        text-align: center;
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
      }
    }
  