
    /* General styles for the page */
    .page-nh-n-58k-tr-i-nghi-m {
      font-family: 'Arial', sans-serif;
      color: #333; /* Dark text for contrast */
      line-height: 1.6;
      background-color: #f8f9fa; /* Light background */
      padding-bottom: 40px; /* Space above footer */
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-section {
      background-color: #007bff; /* Vibrant blue for hero */
      color: #fff;
      padding: 80px 20px; /* Adjusted padding for content */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-image-wrapper {
      margin-top: 40px;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nh-n-58k-tr-i-nghi-m__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-nh-n-58k-tr-i-nghi-m__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-nh-n-58k-tr-i-nghi-m__button--primary {
      background-color: #ffc107; /* Yellow for primary CTA */
      color: #333;
    }

    .page-nh-n-58k-tr-i-nghi-m__button--primary:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-nh-n-58k-tr-i-nghi-m__button--secondary {
      background-color: #28a745; /* Green for secondary CTA */
      color: #fff;
    }

    .page-nh-n-58k-tr-i-nghi-m__button--secondary:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-nh-n-58k-tr-i-nghi-m__section-title {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #007bff;
      padding: 0 15px;
    }

    .page-nh-n-58k-tr-i-nghi-m__benefits-section,
    .page-nh-n-58k-tr-i-nghi-m__how-to-claim-section,
    .page-nh-n-58k-tr-i-nghi-m__featured-games-section,
    .page-nh-n-58k-tr-i-nghi-m__faq-section,
    .page-nh-n-58k-tr-i-nghi-m__cta-bottom-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-nh-n-58k-tr-i-nghi-m__benefits-grid,
    .page-nh-n-58k-tr-i-nghi-m__steps-grid,
    .page-nh-n-58k-tr-i-nghi-m__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-nh-n-58k-tr-i-nghi-m__benefit-item,
    .page-nh-n-58k-tr-i-nghi-m__step-item,
    .page-nh-n-58k-tr-i-nghi-m__game-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-nh-n-58k-tr-i-nghi-m__benefit-item:hover,
    .page-nh-n-58k-tr-i-nghi-m__game-card:hover {
      transform: translateY(-5px);
    }

    .page-nh-n-58k-tr-i-nghi-m__benefit-icon {
      width: 100%; /* Ensure images are responsive */
      max-width: 250px; /* A reasonable max size for these images */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nh-n-58k-tr-i-nghi-m__benefit-title,
    .page-nh-n-58k-tr-i-nghi-m__step-title,
    .page-nh-n-58k-tr-i-nghi-m__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-nh-n-58k-tr-i-nghi-m__benefit-description,
    .page-nh-n-58k-tr-i-nghi-m__step-description,
    .page-nh-n-58k-tr-i-nghi-m__game-description {
      font-size: 1em;
      color: #555;
    }

    .page-nh-n-58k-tr-i-nghi-m__step-item {
      position: relative;
      padding-top: 50px; /* Space for number */
    }

    .page-nh-n-58k-tr-i-nghi-m__step-number {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffc107;
      color: #333;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-nh-n-58k-tr-i-nghi-m__how-to-claim-cta {
      text-align: center;
      margin-top: 50px;
    }

    .page-nh-n-58k-tr-i-nghi-m__game-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-nh-n-58k-tr-i-nghi-m__cta-bottom-section {
      text-align: center;
      background-color: #e9ecef;
      padding: 80px 20px;
      margin-top: 60px;
      border-radius: 10px;
    }

    .page-nh-n-58k-tr-i-nghi-m__cta-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #555;
    }

    .page-nh-n-58k-tr-i-nghi-m__cta-button-wrapper {
      margin-top: 30px;
    }

    /* FAQ Section Styles */
    .page-nh-n-58k-tr-i-nghi-m__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* For mobile responsiveness */
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #f1f1f1;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-title {
      margin: 0;
      font-size: 1.1em;
      color: #007bff;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Crucial for click event to work on parent */
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #007bff;
      pointer-events: none; /* Crucial for click event to work on parent */
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-answer p {
      margin: 0;
      padding-bottom: 15px; /* Add some padding to the bottom of the paragraph */
    }

    .page-nh-n-58k-tr-i-nghi-m__faq-item.active .page-nh-n-58k-tr-i-nghi-m__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Ensure padding is applied */
      opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-nh-n-58k-tr-i-nghi-m__hero-section {
        padding: 60px 15px;
        padding-top: 10px; /* Keep small decorative top padding */
      }

      .page-nh-n-58k-tr-i-nghi-m__hero-title {
        font-size: 2em;
      }

      .page-nh-n-58k-tr-i-nghi-m__hero-description {
        font-size: 1em;
      }

      .page-nh-n-58k-tr-i-nghi-m__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-nh-n-58k-tr-i-nghi-m__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-nh-n-58k-tr-i-nghi-m__benefits-section,
      .page-nh-n-58k-tr-i-nghi-m__how-to-claim-section,
      .page-nh-n-58k-tr-i-nghi-m__featured-games-section,
      .page-nh-n-58k-tr-i-nghi-m__faq-section,
      .page-nh-n-58k-tr-i-nghi-m__cta-bottom-section {
        padding: 40px 15px;
      }

      /* List items mobile responsiveness */
      .page-nh-n-58k-tr-i-nghi-m__benefits-grid,
      .page-nh-n-58k-tr-i-nghi-m__steps-grid,
      .page-nh-n-58k-tr-i-nghi-m__games-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-nh-n-58k-tr-i-nghi-m__benefit-item,
      .page-nh-n-58k-tr-i-nghi-m__step-item,
      .page-nh-n-58k-tr-i-nghi-m__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-nh-n-58k-tr-i-nghi-m__faq-question {
        padding: 15px 20px;
      }

      .page-nh-n-58k-tr-i-nghi-m__faq-title {
        font-size: 1em;
      }

      .page-nh-n-58k-tr-i-nghi-m__faq-toggle {
        font-size: 1.5em;
      }

      .page-nh-n-58k-tr-i-nghi-m__faq-answer {
        padding: 0 20px;
      }

      .page-nh-n-58k-tr-i-nghi-m__faq-item.active .page-nh-n-58k-tr-i-nghi-m__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-nh-n-58k-tr-i-nghi-m__hero-image,
      .page-nh-n-58k-tr-i-nghi-m__benefit-icon,
      .page-nh-n-58k-tr-i-nghi-m__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nh-n-58k-tr-i-nghi-m__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  