
    /* Global styles for page-nohu52 */
    .page-nohu52 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
    }

    /* Hero Section */
    .page-nohu52__hero-section {
      position: relative;
      width: 100%;
      min-height: 350px; /* Adjusted min-height for content */
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 20px 60px; /* padding-top 10px to clear fixed header */
      box-sizing: border-box;
      overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-nohu52__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: 1;
    }

    .page-nohu52__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-nohu52__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-nohu52__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    /* Floating Button */
    .page-nohu52__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e44d26; /* Vibrant orange */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 250px;
      max-width: 90%;
    }

    .page-nohu52__floating-button:hover {
      background-color: #f76c48;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Sections */
    .page-nohu52__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nohu52__section-title {
      font-size: 2em;
      color: #007bff; /* Blue for primary headings */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-nohu52__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
    }

    .page-nohu52__content-text {
      font-size: 1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-nohu52__content-list {
      list-style: disc inside;
      margin-bottom: 20px;
      padding-left: 20px;
      color: #555;
    }

    .page-nohu52__content-list-item {
      margin-bottom: 8px;
      font-size: 1em;
    }

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

    .page-nohu52__game-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-nohu52__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-nohu52__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-nohu52__game-card-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block; /* Remove extra space below image */
      max-width: 100%;
    }

    .page-nohu52__game-card-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-nohu52__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* How-To Steps */
    .page-nohu52__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-nohu52__step-card {
      background-color: #f0f8ff; /* Light blue background */
      border-left: 5px solid #007bff;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .page-nohu52__step-card:hover {
      transform: translateY(-3px);
    }

    .page-nohu52__step-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-nohu52__step-description {
      color: #555;
      font-size: 1em;
    }

    /* Promotions */
    .page-nohu52__promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      background-color: #fdfae6; /* Light yellow background */
      border-left: 5px solid #ffcc00;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-nohu52__promo-icon {
      margin-right: 20px;
      min-width: 60px; /* Ensure icon has space */
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5em;
      color: #ffcc00;
    }

    .page-nohu52__promo-content {
      flex-grow: 1;
    }

    .page-nohu52__promo-title {
      font-size: 1.3em;
      color: #e44d26;
      margin-bottom: 8px;
    }

    .page-nohu52__promo-description {
      color: #555;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-nohu52__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border: 1px solid #ddd;
    }

    .page-nohu52__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e9e9e9;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-nohu52__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-nohu52__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-nohu52__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-nohu52__faq-item.active .page-nohu52__faq-toggle {
      transform: rotate(45deg); /* Plus to X for active */
    }

    .page-nohu52__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fefefe;
    }

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

    /* General Image Styles for responsiveness */
    .page-nohu52 img {
      max-width: 100%;
      height: auto;
      display: block; /* Prevents extra space below images */
    }
    
    .page-nohu52__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center images within their containers */
        margin: 20px 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-nohu52__hero-section {
        min-height: 300px;
        padding: 10px 15px 50px; /* Adjust padding for mobile */
      }

      .page-nohu52__hero-title {
        font-size: 1.8em;
      }

      .page-nohu52__hero-description {
        font-size: 1em;
      }

      .page-nohu52__floating-button {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: unset;
        max-width: calc(100% - 40px);
      }

      .page-nohu52__section {
        padding: 30px 15px;
      }

      .page-nohu52__section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
      }

      .page-nohu52__game-grid {
        grid-template-columns: 1fr;
      }
      
      .page-nohu52__game-card-image-wrapper {
        height: 180px;
      }

      .page-nohu52__steps-grid {
        grid-template-columns: 1fr;
      }

      .page-nohu52__promo-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 15px;
      }

      .page-nohu52__promo-icon {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: flex-start;
        font-size: 2em;
      }

      .page-nohu52__promo-title {
        font-size: 1.2em;
      }

      .page-nohu52__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-nohu52__faq-question h3 {
        font-size: 1em;
      }

      .page-nohu52__faq-answer {
        padding: 15px !important; /* Ensure padding is correct on mobile */
      }
      
      /* Force responsive image styles for mobile */
      .page-nohu52 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-nohu52__image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  