
    .page-nohu-88 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 100px; /* Space for floating buttons */
    }

    .page-nohu-88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-nohu-88__section-title {
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-nohu-88__text-content {
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.1em;
      color: #cccccc;
    }

    /* Hero Section */
    .page-nohu-88__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small padding as body handles header offset */
      margin-bottom: 50px;
    }

    .page-nohu-88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken image for text readability, not changing color */
    }

    .page-nohu-88__hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      max-width: 800px;
    }

    .page-nohu-88__brand-title {
      font-size: 4em;
      margin-bottom: 15px;
      text-transform: uppercase;
      color: #f0f0f0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-nohu-88__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #cccccc;
    }

    .page-nohu-88__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-nohu-88__hero-btn,
    .page-nohu-88__main-cta-btn {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1.1em;
      text-align: center;
    }

    .page-nohu-88__hero-btn--register,
    .page-nohu-88__main-cta-btn {
      background-color: #e94560; /* Accent color */
      color: #fff;
    }

    .page-nohu-88__hero-btn--register:hover,
    .page-nohu-88__main-cta-btn:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    .page-nohu-88__hero-btn--login {
      background-color: #0f3460; /* Darker blue */
      color: #fff;
      border: 2px solid #e94560;
    }

    .page-nohu-88__hero-btn--login:hover {
      background-color: #1a4a82;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-nohu-88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-nohu-88__floating-btn {
      display: block;
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      color: #fff;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-nohu-88__floating-btn--register {
      background-color: #e94560;
    }

    .page-nohu-88__floating-btn--register:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    .page-nohu-88__floating-btn--login {
      background-color: #0f3460;
    }

    .page-nohu-88__floating-btn--login:hover {
      background-color: #1a4a82;
      transform: translateY(-3px);
    }

    /* General Sections */
    .page-nohu-88__introduction-section,
    .page-nohu-88__game-categories-section,
    .page-nohu-88__promotions-section,
    .page-nohu-88__features-section,
    .page-nohu-88__providers-payments-section,
    .page-nohu-88__faq-section,
    .page-nohu-88__cta-section {
      padding: 60px 0;
      margin-bottom: 30px;
      background-color: #1a1a2e; /* Ensure consistent background */
    }

    /* Game Grid */
    .page-nohu-88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-nohu-88__game-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-nohu-88__game-card:hover {
      transform: translateY(-5px);
    }

    .page-nohu-88__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-nohu-88__game-card-title {
      color: #e94560;
      font-size: 1.5em;
      margin: 20px 15px 10px;
    }

    .page-nohu-88__game-card-description {
      color: #cccccc;
      padding: 0 15px 20px;
      font-size: 0.95em;
      flex-grow: 1;
    }

    /* Promotions */
    .page-nohu-88__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-nohu-88__promotion-item {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-nohu-88__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-nohu-88__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-nohu-88__promotion-title {
      color: #e94560;
      font-size: 1.4em;
      margin: 20px 15px 10px;
    }

    .page-nohu-88__promotion-description {
      color: #cccccc;
      padding: 0 15px 20px;
      font-size: 0.95em;
      flex-grow: 1;
    }

    .page-nohu-88__centered-button {
      text-align: center;
      margin-top: 40px;
    }

    /* Features */
    .page-nohu-88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: center;
    }

    .page-nohu-88__feature-item {
      background-color: #0f3460;
      border-radius: 10px;
      padding: 30px 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-nohu-88__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-nohu-88__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-nohu-88__feature-title {
      color: #e94560;
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-nohu-88__feature-description {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* Providers and Payments */
    .page-nohu-88__providers-payments-section .page-nohu-88__container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 40px;
    }

    .page-nohu-88__section-half {
      flex: 1;
      min-width: 300px;
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-nohu-88__section-half .page-nohu-88__section-title {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: #e94560;
    }

    .page-nohu-88__list-items {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-nohu-88__list-item {
      background-color: #1a1a2e;
      color: #f0f0f0;
      padding: 12px 20px;
      border-radius: 5px;
      font-size: 1.1em;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* For long keywords */
    }

    /* FAQ Section */
    .page-nohu-88__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nohu-88__faq-item {
      background-color: #0f3460;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-nohu-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 20px 25px;
      background-color: #e94560; /* Accent color for question background */
      color: #fff;
      font-weight: bold;
      font-size: 1.2em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-nohu-88__faq-question:hover {
      background-color: #ff6a80;
    }

    .page-nohu-88__faq-q-text {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      pointer-events: none; /* Crucial for click event on parent */
      color: #fff; /* Ensure text color is white for contrast */
    }

    .page-nohu-88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-nohu-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #1a1a2e; /* Darker background for answer */
      color: #cccccc; /* Light gray text */
    }

    .page-nohu-88__faq-item.active .page-nohu-88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    .page-nohu-88__faq-a-text {
      margin: 0;
      color: #cccccc; /* Ensure text color is light gray for contrast */
    }

    /* Call to Action */
    .page-nohu-88__cta-section {
      text-align: center;
      padding: 80px 0;
      background-color: #0f3460;
      border-radius: 10px;
      margin-top: 50px;
    }

    .page-nohu-88__cta-section .page-nohu-88__section-title {
      color: #e94560;
      margin-bottom: 20px;
    }

    .page-nohu-88__cta-section .page-nohu-88__text-content {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px;
    }

    .page-nohu-88__main-cta-btn--large {
      padding: 18px 40px;
      font-size: 1.3em;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-nohu-88__brand-title {
        font-size: 3.5em;
      }
      .page-nohu-88__hero-slogan {
        font-size: 1.3em;
      }
      .page-nohu-88__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-nohu-88__brand-title {
        font-size: 2.5em;
      }
      .page-nohu-88__hero-slogan {
        font-size: 1.1em;
      }
      .page-nohu-88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-nohu-88__hero-btn {
        width: 80%;
        margin: 0 auto;
      }

      .page-nohu-88__section-title {
        font-size: 1.8em;
      }

      .page-nohu-88__game-grid,
      .page-nohu-88__promotion-grid,
      .page-nohu-88__features-grid {
        grid-template-columns: 1fr; /* Stack columns */
      }

      .page-nohu-88__providers-payments-section .page-nohu-88__container {
        flex-direction: column;
      }

      .page-nohu-88__section-half {
        min-width: unset;
        width: 100%;
        box-sizing: border-box;
      }

      .page-nohu-88__list-items {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-nohu-88__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px !important; /* Adjusted padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-nohu-88__game-card-image,
      .page-nohu-88__promotion-image,
      .page-nohu-88__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-nohu-88__faq-question,
      .page-nohu-88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-nohu-88__faq-item.active .page-nohu-88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-nohu-88__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: center;
        gap: 10px;
      }

      .page-nohu-88__floating-btn {
        flex: 1;
        padding: 10px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-nohu-88__brand-title {
        font-size: 2em;
      }
      .page-nohu-88__hero-slogan {
        font-size: 1em;
      }
      .page-nohu-88__hero-btn {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-nohu-88__section-title {
        font-size: 1.5em;
      }
      .page-nohu-88__text-content {
        font-size: 1em;
      }
      .page-nohu-88__faq-question {
        font-size: 1.1em;
      }
      .page-nohu-88__floating-buttons {
        flex-wrap: wrap;
      }
      .page-nohu-88__floating-btn {
        width: calc(50% - 5px);
        flex: unset;
      }
    }
  