
    /* Base styles for page-nohu90 */
    .page-nohu90 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 60px; /* Space for fixed footer */
    }

    .page-nohu90__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-nohu90__hero-section {
      position: relative;
      width: 100%;
      background-color: #002b5b; /* Dark blue background */
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      padding-bottom: 40px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nohu90__hero-image-wrapper {
      position: relative;
      width: 100%;
      height: 250px; /* Adjust height for mobile */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .page-nohu90__hero-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      max-width: 100%;
      min-height: 200px; /* Minimum size for banner image */
    }

    .page-nohu90__hero-content {
      position: relative;
      z-index: 10;
      padding: 0 20px;
    }

    .page-nohu90__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffc107; /* Gold accent */
      font-weight: bold;
    }

    .page-nohu90__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #eee;
    }

    .page-nohu90__promo-button {
      display: inline-block;
      background-color: #28a745; /* Green button */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-nohu90__promo-button:hover {
      background-color: #218838;
    }

    /* Floating Login Button */
    .page-nohu90__floating-button {
      position: fixed;
      bottom: 80px; /* Adjust based on footer height */
      right: 20px;
      background-color: #dc3545; /* Red accent */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-nohu90__floating-button:hover {
      background-color: #c82333;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-nohu90__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-nohu90__section-title {
      font-size: 2em;
      color: #002b5b;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-nohu90__game-card {
      background-color: #f1f1f1;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

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

    .page-nohu90__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      min-height: 200px; /* Minimum size */
      box-sizing: border-box;
    }

    .page-nohu90__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-nohu90__game-card-title {
      font-size: 1.4em;
      color: #002b5b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-nohu90__game-card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-nohu90__game-card-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      margin-top: auto; /* Push button to bottom */
    }

    .page-nohu90__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Features Section */
    .page-nohu90__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-nohu90__feature-item {
      background-color: #f1f1f1;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Responsive list item requirement */
    }

    .page-nohu90__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-nohu90__feature-icon {
      width: 80px; /* Ensure minimum size */
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      min-height: 80px; /* Minimum size */
      box-sizing: border-box;
    }

    .page-nohu90__feature-title {
      font-size: 1.3em;
      color: #002b5b;
      margin-bottom: 10px;
    }

    .page-nohu90__feature-description {
      font-size: 0.9em;
      color: #555;
    }

    /* How To Section */
    .page-nohu90__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-nohu90__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #fdfdfd;
      padding: 20px;
      border-left: 5px solid #ffc107;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      box-sizing: border-box; /* Responsive list item requirement */
    }

    .page-nohu90__step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: #002b5b;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2em;
      font-weight: bold;
      margin-right: 15px;
    }

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

    .page-nohu90__step-title {
      font-size: 1.2em;
      color: #002b5b;
      margin-bottom: 5px;
    }

    .page-nohu90__step-description {
      font-size: 0.95em;
      color: #444;
    }

    /* Testimonials/Reviews Section (Optional, but good for SEO) */
    .page-nohu90__review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-nohu90__review-card {
      background-color: #f1f1f1;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      box-sizing: border-box; /* Responsive list item requirement */
    }

    .page-nohu90__review-text {
      font-style: italic;
      color: #555;
      margin-bottom: 15px;
    }

    .page-nohu90__reviewer-name {
      font-weight: bold;
      color: #002b5b;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-nohu90__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-nohu90__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      background-color: #fdfdfd;
      box-sizing: border-box; /* Responsive list item requirement */
    }

    .page-nohu90__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #002b5b; /* Dark blue for question header */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-nohu90__faq-question:hover {
      background-color: #001f42;
    }

    .page-nohu90__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #fff; /* Ensure good contrast */
    }

    .page-nohu90__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-nohu90__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      color: #333; /* Ensure good contrast */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* Call to action section */
    .page-nohu90__cta-section {
      text-align: center;
      background-color: #ffc107; /* Gold accent */
      color: #002b5b;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .page-nohu90__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #002b5b;
    }

    .page-nohu90__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #333;
    }

    .page-nohu90__cta-button {
      display: inline-block;
      background-color: #dc3545; /* Red accent */
      color: #fff;
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-nohu90__cta-button:hover {
      background-color: #c82333;
    }

    /* Responsive adjustments for mobile */
    @media (max-width: 768px) {
      .page-nohu90__container {
        padding: 10px;
      }

      .page-nohu90__hero-section {
        padding-top: 10px; /* Ensure space for fixed header on mobile */
        padding-bottom: 30px;
      }

      .page-nohu90__hero-image-wrapper {
        height: 180px;
      }

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

      .page-nohu90__hero-subtitle {
        font-size: 1em;
      }

      .page-nohu90__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-nohu90__floating-button {
        bottom: 70px; /* Adjust for smaller screens */
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-nohu90__section {
        padding: 25px 15px;
      }

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

      .page-nohu90__game-grid,
      .page-nohu90__features-list,
      .page-nohu90__review-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-nohu90__game-card,
      .page-nohu90__feature-item,
      .page-nohu90__step-item,
      .page-nohu90__review-card,
      .page-nohu90__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-nohu90__game-card-image {
        height: 150px;
        min-height: 150px;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        box-sizing: border-box !important;
      }

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

      .page-nohu90__feature-icon {
        width: 60px;
        height: 60px;
        min-height: 60px;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        box-sizing: border-box !important;
      }

      .page-nohu90__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-nohu90__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-nohu90__faq-question {
        padding: 12px 15px;
      }

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

      .page-nohu90__faq-answer {
        padding: 0 15px;
      }

      .page-nohu90__faq-item.active .page-nohu90__faq-answer {
        padding: 15px !important;
      }

      .page-nohu90__cta-section {
        padding: 30px 15px;
      }

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

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

      .page-nohu90__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      
      /* Ensure all images are responsive */
      .page-nohu90 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block; /* Prevent extra space under image */
      }
      .page-nohu90__hero-image-wrapper,
      .page-nohu90__game-card-image,
      .page-nohu90__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    /* Even smaller screens */
    @media (max-width: 480px) {
      .page-nohu90__hero-title {
        font-size: 1.6em;
      }
      .page-nohu90__hero-subtitle {
        font-size: 0.9em;
      }
      .page-nohu90__floating-button {
        bottom: 60px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.85em;
      }
      .page-nohu90__section-title {
        font-size: 1.4em;
      }
      .page-nohu90__game-card-title {
        font-size: 1.2em;
      }
      .page-nohu90__feature-title {
        font-size: 1.1em;
      }
      .page-nohu90__step-title {
        font-size: 1.1em;
      }
      .page-nohu90__cta-title {
        font-size: 1.6em;
      }
    }
  