
    /* CSS Styles for page-hitclubwin */
    :root {
      --page-hitclubwin-primary-color: #E74C3C; /* Đỏ rực rỡ */
      --page-hitclubwin-secondary-color: #F1C40F; /* Vàng nổi bật */
      --page-hitclubwin-text-dark: #2C3E50; /* Xám đậm */
      --page-hitclubwin-text-light: #ECF0F1; /* Trắng xám */
      --page-hitclubwin-background-light: #FFFFFF; /* Nền trắng */
      --page-hitclubwin-background-dark: #34495E; /* Nền xanh đậm */
    }

    .page-hitclubwin {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-hitclubwin-text-dark);
      background-color: var(--page-hitclubwin-background-light);
      padding-bottom: 80px; /* Khoảng trống cho các nút nổi */
    }

    .page-hitclubwin__section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-hitclubwin-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      text-align: center;
    }

    .page-hitclubwin__section--dark {
      background-color: var(--page-hitclubwin-background-dark);
      color: var(--page-hitclubwin-text-light);
    }

    .page-hitclubwin__section--dark h2,
    .page-hitclubwin__section--dark h3 {
      color: var(--page-hitclubwin-secondary-color);
    }
    
    .page-hitclubwin__section--dark p,
    .page-hitclubwin__section--dark li {
        color: var(--page-hitclubwin-text-light);
    }

    .page-hitclubwin__h1,
    .page-hitclubwin__h2,
    .page-hitclubwin__h3 {
      color: var(--page-hitclubwin-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-hitclubwin__h1 {
      font-size: 2.2em;
      text-align: center;
      margin-top: 20px;
    }

    .page-hitclubwin__h2 {
      font-size: 1.8em;
      text-align: center;
      border-bottom: 2px solid var(--page-hitclubwin-primary-color);
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .page-hitclubwin__h3 {
      font-size: 1.4em;
      text-align: center;
      margin-top: 20px;
    }

    .page-hitclubwin__highlight {
      color: var(--page-hitclubwin-primary-color);
    }
    .page-hitclubwin__section--dark .page-hitclubwin__highlight {
      color: var(--page-hitclubwin-secondary-color);
    }

    .page-hitclubwin__highlight-link {
        color: var(--page-hitclubwin-primary-color);
        text-decoration: none;
        font-weight: bold;
    }
    .page-hitclubwin__highlight-link:hover {
        text-decoration: underline;
    }
    .page-hitclubwin__highlight-link--dark {
        color: var(--page-hitclubwin-secondary-color);
    }
    .page-hitclubwin__highlight-link--dark:hover {
        text-decoration: underline;
    }

    .page-hitclubwin__banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .page-hitclubwin__button-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .page-hitclubwin__button {
      background-color: var(--page-hitclubwin-primary-color);
      color: var(--page-hitclubwin-text-light);
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      display: inline-block;
      white-space: nowrap; /* Ngăn văn bản xuống dòng trên nút */
    }

    .page-hitclubwin__button:hover {
      background-color: #C0392B; /* Đỏ sẫm hơn */
      transform: translateY(-2px);
    }

    .page-hitclubwin__button--secondary {
      background-color: var(--page-hitclubwin-secondary-color);
      color: var(--page-hitclubwin-text-dark);
    }

    .page-hitclubwin__button--secondary:hover {
      background-color: #F39C12; /* Vàng sẫm hơn */
      transform: translateY(-2px);
    }

    .page-hitclubwin__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(var(--page-hitclubwin-background-dark), 0.95);
      box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      gap: 10px;
    }

    .page-hitclubwin__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 0;
      font-size: 1em;
      text-align: center;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-hitclubwin__floating-button--register {
      background-color: var(--page-hitclubwin-primary-color);
      color: var(--page-hitclubwin-text-light);
    }

    .page-hitclubwin__floating-button--register:hover {
      background-color: #C0392B;
    }

    .page-hitclubwin__floating-button--login {
      background-color: var(--page-hitclubwin-secondary-color);
      color: var(--page-hitclubwin-text-dark);
    }

    .page-hitclubwin__floating-button--login:hover {
      background-color: #F39C12;
    }

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

    .page-hitclubwin__card {
      background-color: var(--page-hitclubwin-background-light);
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease;
      color: var(--page-hitclubwin-text-dark);
      text-decoration: none; /* Đối với các liên kết thẻ */
    }

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

    .page-hitclubwin__card-image {
      width: 100%;
      height: 100px; /* Chiều cao cố định để nhất quán */
      object-fit: contain; /* Đảm bảo hình ảnh vừa vặn mà không bị cắt */
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .page-hitclubwin__card-title {
      font-weight: bold;
      color: var(--page-hitclubwin-primary-color);
      font-size: 1.1em;
      margin-top: 5px;
    }

    .page-hitclubwin__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubwin__list-item {
      background-color: #F8F9FA;
      margin-bottom: 10px;
      padding: 10px 15px;
      border-left: 5px solid var(--page-hitclubwin-primary-color);
      border-radius: 4px;
      display: flex;
      align-items: center;
    }
    
    .page-hitclubwin__section--dark .page-hitclubwin__list-item {
        background-color: #4A657F; /* Nền tối hơn cho các mục danh sách trong phần tối */
        border-left-color: var(--page-hitclubwin-secondary-color);
        color: var(--page-hitclubwin-text-light);
    }

    .page-hitclubwin__list-item::before {
      content: '✔';
      color: var(--page-hitclubwin-primary-color);
      font-weight: bold;
      margin-right: 10px;
    }
    
    .page-hitclubwin__section--dark .page-hitclubwin__list-item::before {
        color: var(--page-hitclubwin-secondary-color);
    }

    .page-hitclubwin__text-center {
      text-align: center;
    }

    .page-hitclubwin__qr-code {
      width: 150px;
      height: 150px;
      margin: 20px auto 10px auto;
      display: block;
      border: 1px solid #ddd;
      border-radius: 8px;
    }

    .page-hitclubwin__provider-logo {
      width: 80px;
      height: 50px;
      object-fit: contain;
      margin: 5px;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }
    
    .page-hitclubwin__provider-logo:hover {
        filter: grayscale(0%);
    }

    /* Điều chỉnh phản hồi */
    @media (min-width: 768px) {
      .page-hitclubwin__section {
        padding: 30px 40px;
      }

      .page-hitclubwin__h1 {
        font-size: 3em;
      }

      .page-hitclubwin__h2 {
        font-size: 2.2em;
      }

      .page-hitclubwin__floating-buttons {
        justify-content: flex-end; /* Căn phải trên máy tính để bàn */
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 10px;
        background-color: rgba(var(--page-hitclubwin-background-dark), 0.9);
      }

      .page-hitclubwin__floating-button {
        flex: none;
        width: 200px;
        margin: 0;
      }
      
      .page-hitclubwin__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
  