
    /* CSS for page-nohu90 */
    .page-nohu90 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for floating button */
    }

    /* Hero Section */
    .page-nohu90__hero-section {
      position: relative;
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 350px;
    }
    .page-nohu90__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
      z-index: 0;
    }
    .page-nohu90__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }
    .page-nohu90__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #f39c12; /* Golden/Orange for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .page-nohu90__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    /* Floating Login Button */
    .page-nohu90__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .page-nohu90__floating-button {
      display: block;
      padding: 15px 25px;
      background-color: #e74c3c; /* Red for urgency */
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
    }
    .page-nohu90__floating-button:hover {
      background-color: #c0392b;
      transform: scale(1.02);
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* General Sections */
    .page-nohu90__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 25px;
    }
    .page-nohu90__section:first-of-type {
      margin-top: 25px; /* Ensure spacing below hero if no padding-top on hero */
    }
    .page-nohu90__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-nohu90__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #f39c12;
    }
    .page-nohu90__text-content {
      font-size: 1.05em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }
    .page-nohu90__text-content strong {
      color: #e74c3c;
    }

    /* Game List/Product Display */
    .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: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }
    .page-nohu90__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .page-nohu90__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
    }
    .page-nohu90__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .page-nohu90__game-card:hover .page-nohu90__game-card-image {
      transform: scale(1.05);
    }
    .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: #2c3e50;
      margin-bottom: 10px;
    }
    .page-nohu90__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-nohu90__game-card-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #3498db;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }
    .page-nohu90__game-card-button:hover {
      background-color: #2980b9;
    }

    /* Features List */
    .page-nohu90__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }
    .page-nohu90__feature-item {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }
    .page-nohu90__feature-item:hover {
      transform: translateY(-5px);
    }
    .page-nohu90__feature-icon {
      width: 200px; /* Min size 200x200px */
      height: 200px;
      object-fit: contain;
      margin: 0 auto 10px;
      display: block;
    }
    .page-nohu90__feature-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-top: 15px;
      margin-bottom: 10px;
    }
    .page-nohu90__feature-description {
      font-size: 0.95em;
      color: #555;
    }


    /* Call to Action */
    .page-nohu90__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #34495e;
      color: #fff;
      border-radius: 8px;
      margin-top: 25px;
    }
    .page-nohu90__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #f39c12;
    }
    .page-nohu90__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-nohu90__cta-button {
      display: inline-block;
      padding: 15px 35px;
      background-color: #e74c3c;
      color: #fff;
      text-decoration: none;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }
    .page-nohu90__cta-button:hover {
      background-color: #c0392b;
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-nohu90__faq-section {
      margin-top: 25px;
      padding: 40px 20px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .page-nohu90__faq-list {
      list-style: none;
      padding: 0;
    }
    .page-nohu90__faq-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }
    .page-nohu90__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #eee;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: #2c3e50;
      transition: background-color 0.3s ease;
    }
    .page-nohu90__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2c3e50;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }
    .page-nohu90__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-nohu90__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }
    .page-nohu90__faq-item.active .page-nohu90__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or similar */
    }
    .page-nohu90__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fcfcfc;
      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-nohu90__faq-item.active .page-nohu90__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }
    .page-nohu90__faq-answer p {
      margin: 0;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-nohu90__hero-title {
        font-size: 2em;
      }
      .page-nohu90__hero-subtitle {
        font-size: 1em;
      }
      .page-nohu90__section {
        padding: 30px 15px;
        margin-top: 15px;
      }
      .page-nohu90__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-nohu90__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-nohu90__game-card-image-wrapper {
        height: 180px;
      }
      .page-nohu90__game-card-title {
        font-size: 1.2em;
      }
      .page-nohu90__features-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .page-nohu90__feature-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-nohu90__features-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-nohu90__cta-title {
        font-size: 1.8em;
      }
      .page-nohu90__cta-description {
        font-size: 1em;
      }
      .page-nohu90__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-nohu90__faq-section {
        padding: 30px 15px;
        margin-top: 15px;
      }
      .page-nohu90__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-nohu90__faq-question h3 {
        font-size: 1em;
      }
      .page-nohu90__faq-answer {
        padding: 0 20px;
      }
      .page-nohu90__faq-item.active .page-nohu90__faq-answer {
        padding: 15px 20px !important;
      }

      /* Ensure images are responsive on mobile */
      .page-nohu90 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-nohu90__game-card-image-wrapper,
      .page-nohu90__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-nohu90__feature-icon { /* Override for specific icon size within its container */
        width: 200px !important;
        height: 200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-nohu90__hero-title {
        font-size: 1.8em;
      }
      .page-nohu90__floating-button {
        font-size: 1em;
        padding: 12px 20px;
      }
    }

  