
    /* CSS cho trang hitclubwin */
    :root {
      --page-hitclubwin-primary-color: #dc3545; /* Đỏ - màu chủ đạo */
      --page-hitclubwin-secondary-color: #ffc107; /* Vàng - màu nhấn */
      --page-hitclubwin-dark-text: #212529;
      --page-hitclubwin-light-text: #f8f9fa;
      --page-hitclubwin-bg-light: #f8f9fa;
      --page-hitclubwin-bg-dark: #343a40;
      --page-hitclubwin-border-color: #dee2e6;
    }

    .page-hitclubwin {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-hitclubwin-dark-text);
      background-color: var(--page-hitclubwin-bg-light);
      padding: 20px 0;
    }

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

    .page-hitclubwin h1,
    .page-hitclubwin h2,
    .page-hitclubwin h3 {
      color: var(--page-hitclubwin-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-hitclubwin h1 {
      font-size: 2.8em;
      text-align: center;
      margin-top: 30px;
      color: var(--page-hitclubwin-dark-text);
    }

    .page-hitclubwin h1 span {
      color: var(--page-hitclubwin-primary-color);
    }

    .page-hitclubwin h2 {
      font-size: 2em;
      border-bottom: 2px solid var(--page-hitclubwin-secondary-color);
      padding-bottom: 10px;
      margin-top: 40px;
    }

    .page-hitclubwin h3 {
      font-size: 1.6em;
      color: var(--page-hitclubwin-dark-text);
      margin-top: 30px;
    }

    .page-hitclubwin p {
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-hitclubwin .hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:banner:hitclubwin,hero,background]') no-repeat center center/cover;
      color: var(--page-hitclubwin-light-text);
      padding: 80px 0;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 8px;
    }

    .page-hitclubwin .hero-section h1 {
      color: var(--page-hitclubwin-light-text);
      font-size: 3.5em;
      margin-bottom: 20px;
    }

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

    .page-hitclubwin .btn-primary {
      display: inline-block;
      background-color: var(--page-hitclubwin-secondary-color);
      color: var(--page-hitclubwin-dark-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-hitclubwin .btn-primary:hover {
      background-color: #e0a800;
      color: var(--page-hitclubwin-dark-text);
    }

    .page-hitclubwin .section-highlight {
      background-color: #fff;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .page-hitclubwin .usp-item {
      background-color: var(--page-hitclubwin-bg-dark);
      color: var(--page-hitclubwin-light-text);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-hitclubwin .usp-item h3 {
      color: var(--page-hitclubwin-secondary-color);
      margin-top: 10px;
      font-size: 1.4em;
    }

    .page-hitclubwin .usp-item img {
      max-width: 80px;
      margin-bottom: 15px;
      filter: invert(1) brightness(1.2); /* Làm sáng icon trên nền tối */
    }

    .page-hitclubwin .how-to-guide ol {
      list-style-type: decimal;
      padding-left: 25px;
    }

    .page-hitclubwin .how-to-guide li {
      margin-bottom: 10px;
      font-size: 1.1em;
    }

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

    .page-hitclubwin .game-card {
      background-color: #fff;
      border: 1px solid var(--page-hitclubwin-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

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

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

    .page-hitclubwin .game-card-content {
      padding: 15px;
    }

    .page-hitclubwin .game-card-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-hitclubwin-primary-color);
    }

    .page-hitclubwin .game-card-content p {
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-hitclubwin .game-card-content .btn-secondary {
      display: inline-block;
      background-color: var(--page-hitclubwin-primary-color);
      color: var(--page-hitclubwin-light-text);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-hitclubwin .game-card-content .btn-secondary:hover {
      background-color: #c82333;
      color: var(--page-hitclubwin-light-text);
    }

    .page-hitclubwin .promo-banner {
      background-color: var(--page-hitclubwin-primary-color);
      color: var(--page-hitclubwin-light-text);
      padding: 25px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .page-hitclubwin .promo-banner h2 {
      color: var(--page-hitclubwin-light-text);
      border-bottom: none;
      margin-bottom: 15px;
      font-size: 2.2em;
    }

    .page-hitclubwin .promo-banner p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-hitclubwin .faq-section .faq-item {
      background-color: #fff;
      border: 1px solid var(--page-hitclubwin-border-color);
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-hitclubwin .faq-item-question {
      padding: 15px 20px;
      background-color: var(--page-hitclubwin-bg-light);
      cursor: pointer;
      font-weight: bold;
      color: var(--page-hitclubwin-dark-text);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .page-hitclubwin .faq-item-question:hover {
      background-color: #e9ecef;
    }

    .page-hitclubwin .faq-item-answer {
      padding: 15px 20px;
      background-color: #fff;
      border-top: 1px solid var(--page-hitclubwin-border-color);
      display: none;
    }

    .page-hitclubwin .faq-item.active .faq-item-answer {
      display: block;
    }

    .page-hitclubwin .faq-item-question .icon {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

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

    .page-hitclubwin .floating-ad {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-hitclubwin-primary-color);
      color: var(--page-hitclubwin-light-text);
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      text-align: center;
      max-width: 250px;
      transition: transform 0.3s ease;
    }

    .page-hitclubwin .floating-ad:hover {
      transform: translateY(-5px);
    }

    .page-hitclubwin .floating-ad p {
      margin: 0 0 10px 0;
      font-weight: bold;
      font-size: 1.1em;
      line-height: 1.3;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hitclubwin h1 {
        font-size: 2.5em;
      }
      .page-hitclubwin .hero-section {
        padding: 60px 0;
      }
      .page-hitclubwin .hero-section h1 {
        font-size: 2.8em;
      }
      .page-hitclubwin .hero-section p {
        font-size: 1.1em;
      }
      .page-hitclubwin h2 {
        font-size: 1.8em;
      }
      .page-hitclubwin .usp-grid {
        grid-template-columns: 1fr;
      }
      .page-hitclubwin .game-grid {
        grid-template-columns: 1fr;
      }
      .page-hitclubwin .floating-ad {
        bottom: 10px;
        right: 10px;
        max-width: 90%;
        left: 5%;
        transform: translateX(0); /* Reset transform for smaller screens if needed */
      }
    }
  