
    /* CSS Styles for page-hitclubgame */
    :root {
      --page-hitclubgame-primary-color: #f7b731; /* Golden/Orange */
      --page-hitclubgame-secondary-color: #333; /* Dark Grey */
      --page-hitclubgame-text-color: #eee; /* Light Grey for text */
      --page-hitclubgame-bg-color: #1a1a1a; /* Dark background */
      --page-hitclubgame-accent-color: #ff4d4d; /* Red accent */
      --page-hitclubgame-border-color: #444;
      --page-hitclubgame-shadow-color: rgba(0, 0, 0, 0.4);
    }

    .page-hitclubgame {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--page-hitclubgame-bg-color);
      color: var(--page-hitclubgame-text-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
    }

    .page-hitclubgame__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-hitclubgame__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      text-align: center;
      background-color: var(--page-hitclubgame-secondary-color);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-hitclubgame-shadow-color);
    }

    .page-hitclubgame__section--alt {
      background-color: #2a2a2a;
    }

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

    .page-hitclubgame__subtitle {
      color: var(--page-hitclubgame-accent-color);
      font-size: 1.8em;
      margin-bottom: 30px;
    }

    .page-hitclubgame__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #ccc;
    }

    .page-hitclubgame__button {
      display: inline-block;
      background-color: var(--page-hitclubgame-primary-color);
      color: var(--page-hitclubgame-secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-hitclubgame__button:hover {
      background-color: #e0a42c;
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-hitclubgame__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:banner:hitclub,game,vortex,banner]') no-repeat center center/cover;
      padding-top: 10px; /* To clear fixed header */
      padding-bottom: 80px;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 5px 20px var(--page-hitclubgame-shadow-color);
    }

    .page-hitclubgame__hero-title {
      font-size: 3.5em;
      color: white;
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    .page-hitclubgame__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-hitclubgame-primary-color);
      margin-bottom: 40px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      max-width: 800px;
    }

    .page-hitclubgame__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-hitclubgame-accent-color);
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-hitclubgame__pulse 2s infinite;
      border: none;
      text-align: center;
    }

    .page-hitclubgame__floating-button:hover {
      background-color: #e63939;
      transform: scale(1.05);
    }

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

    /* Game List */
    .page-hitclubgame__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-hitclubgame__game-item {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-hitclubgame-shadow-color);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure equal height */
    }

    .page-hitclubgame__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px var(--page-hitclubgame-shadow-color);
    }

    .page-hitclubgame__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-hitclubgame-primary-color);
    }

    .page-hitclubgame__game-content {
      padding: 20px;
      flex-grow: 1; /* Allow content to grow */
      display: flex;
      flex-direction: column;
    }

    .page-hitclubgame__game-title {
      font-size: 1.4em;
      color: var(--page-hitclubgame-primary-color);
      margin-bottom: 10px;
    }

    .page-hitclubgame__game-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
      flex-grow: 1; /* Allow description to grow */
    }

    /* Promotion Card */
    .page-hitclubgame__promotion-card {
      background: linear-gradient(135deg, #ff7e5f, #feb47b);
      padding: 40px;
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      color: white;
      text-align: center;
    }

    .page-hitclubgame__promotion-card-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubgame__promotion-card-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hitclubgame__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    /* Why Choose Section */
    .page-hitclubgame__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-hitclubgame__feature-item {
      background-color: #3a3a3a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-hitclubgame-shadow-color);
      text-align: center;
      border-top: 4px solid var(--page-hitclubgame-accent-color);
    }

    .page-hitclubgame__feature-title {
      font-size: 1.5em;
      color: var(--page-hitclubgame-primary-color);
      margin-bottom: 15px;
    }

    .page-hitclubgame__feature-description {
      color: #bbb;
      font-size: 1em;
    }

    /* Guide Section */
    .page-hitclubgame__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-hitclubgame__step-item {
      background-color: #3a3a3a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-hitclubgame-shadow-color);
      text-align: center;
      width: 100%;
      max-width: 350px;
      position: relative;
      border: 1px solid var(--page-hitclubgame-border-color);
    }

    .page-hitclubgame__step-number {
      background-color: var(--page-hitclubgame-primary-color);
      color: var(--page-hitclubgame-secondary-color);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: -55px auto 20px auto; /* Position above the card */
      border: 3px solid var(--page-hitclubgame-bg-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .page-hitclubgame__step-title {
      font-size: 1.4em;
      color: var(--page-hitclubgame-accent-color);
      margin-bottom: 15px;
    }

    .page-hitclubgame__step-description {
      color: #bbb;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-hitclubgame__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-hitclubgame__faq-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-hitclubgame-border-color);
    }

    .page-hitclubgame__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #4a4a4a;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-hitclubgame__faq-question:hover {
      background-color: #5a5a5a;
    }

    .page-hitclubgame__faq-question h3 {
      margin: 0;
      color: var(--page-hitclubgame-primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-hitclubgame__faq-toggle {
      font-size: 1.8em;
      color: var(--page-hitclubgame-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-hitclubgame__faq-item.active .page-hitclubgame__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-hitclubgame__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #ccc;
      font-size: 1em;
    }

    .page-hitclubgame__faq-item.active .page-hitclubgame__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 20px !important;
      opacity: 1;
    }

    /* CTA Section */
    .page-hitclubgame__cta-section {
      background-color: var(--page-hitclubgame-primary-color);
      color: var(--page-hitclubgame-secondary-color);
      padding: 60px 20px;
      border-radius: 15px;
      box-shadow: 0 4px 15px var(--page-hitclubgame-shadow-color);
      margin-top: 40px;
    }

    .page-hitclubgame__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-hitclubgame-secondary-color);
    }

    .page-hitclubgame__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #333;
    }

    /* Image responsive */
    .page-hitclubgame img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-hitclubgame__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-hitclubgame__title {
        font-size: 2.5em;
      }
      .page-hitclubgame__hero-title {
        font-size: 3em;
      }
      .page-hitclubgame__hero-subtitle {
        font-size: 1.3em;
      }
      .page-hitclubgame__section {
        padding: 40px 15px;
      }
      .page-hitclubgame__promotion-card {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-hitclubgame__container {
        padding: 10px;
      }
      .page-hitclubgame__hero-section {
        padding-top: 10px !important; /* Ensure fixed header clearance */
        min-height: 400px;
      }
      .page-hitclubgame__hero-title {
        font-size: 2.5em;
      }
      .page-hitclubgame__hero-subtitle {
        font-size: 1.1em;
      }
      .page-hitclubgame__title {
        font-size: 2em;
      }
      .page-hitclubgame__subtitle {
        font-size: 1.5em;
      }
      .page-hitclubgame__text {
        font-size: 1em;
      }
      .page-hitclubgame__button,
      .page-hitclubgame__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-hitclubgame__game-list,
      .page-hitclubgame__feature-list {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }
      .page-hitclubgame__game-item,
      .page-hitclubgame__feature-item,
      .page-hitclubgame__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      .page-hitclubgame__game-description,
      .page-hitclubgame__feature-description,
      .page-hitclubgame__step-description,
      .page-hitclubgame__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* List container responsive */
      .page-hitclubgame__game-list,
      .page-hitclubgame__feature-list,
      .page-hitclubgame__guide-steps,
      .page-hitclubgame__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-hitclubgame__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-hitclubgame__promotion-card-title {
        font-size: 2em;
      }
      .page-hitclubgame__promotion-card-text {
        font-size: 1em;
      }

      .page-hitclubgame__faq-question {
        padding: 12px 15px;
      }
      .page-hitclubgame__faq-question h3 {
        font-size: 1.1em;
      }
      .page-hitclubgame__faq-answer {
        padding: 0 15px;
      }
      .page-hitclubgame__faq-item.active .page-hitclubgame__faq-answer {
        padding: 15px 15px !important;
      }

      /* Ensure all images are responsive */
      .page-hitclubgame img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-hitclubgame__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-hitclubgame__hero-title {
        font-size: 2em;
      }
      .page-hitclubgame__hero-subtitle {
        font-size: 0.95em;
      }
      .page-hitclubgame__title {
        font-size: 1.8em;
      }
      .page-hitclubgame__subtitle {
        font-size: 1.3em;
      }
      .page-hitclubgame__section {
        padding: 30px 10px;
      }
      .page-hitclubgame__button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  