
    .page-nh-c-i-typhu88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-nh-c-i-typhu88__hero-section {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Small decorative padding, relies on body padding-top */
    }

    .page-nh-c-i-typhu88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-nh-c-i-typhu88__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-nh-c-i-typhu88__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 0 20px;
    }

    .page-nh-c-i-typhu88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700;
      line-height: 1.2;
    }

    .page-nh-c-i-typhu88__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-nh-c-i-typhu88__button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-nh-c-i-typhu88__button:hover {
      background-color: #e03a00;
    }

    .page-nh-c-i-typhu88__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-bottom: 30px;
    }

    .page-nh-c-i-typhu88__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-nh-c-i-typhu88__text-content {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
      color: #555;
    }

    .page-nh-c-i-typhu88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-nh-c-i-typhu88__game-card {
      background-color: #f0f0f0;
      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;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-nh-c-i-typhu88__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-nh-c-i-typhu88__game-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-nh-c-i-typhu88__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-nh-c-i-typhu88__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-nh-c-i-typhu88__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      background-color: #ff4500;
      color: #fff;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 5px;
      margin: 0 5px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-nh-c-i-typhu88__floating-button:hover {
      background-color: #e03a00;
    }

    .page-nh-c-i-typhu88__promotion-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-nh-c-i-typhu88__promotion-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-left: 5px solid #ff4500;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 20px;
      box-sizing: border-box;
      width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-nh-c-i-typhu88__promotion-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 5px;
    }

    .page-nh-c-i-typhu88__promotion-content h3 {
      margin-top: 0;
      color: #ff4500;
      font-size: 1.3em;
      margin-bottom: 5px;
    }

    .page-nh-c-i-typhu88__promotion-content p {
      margin-bottom: 0;
      color: #555;
    }

    .page-nh-c-i-typhu88__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-nh-c-i-typhu88__provider-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: bold;
      color: #2c3e50;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: auto;
      max-width: 100%;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-nh-c-i-typhu88__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-nh-c-i-typhu88__payment-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-nh-c-i-typhu88__payment-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: bold;
      color: #2c3e50;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: auto;
      max-width: 100%;
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-nh-c-i-typhu88__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-nh-c-i-typhu88__faq-list {
      margin-top: 30px;
    }

    .page-nh-c-i-typhu88__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-nh-c-i-typhu88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      font-weight: bold;
      color: #2c3e50;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-nh-c-i-typhu88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-nh-c-i-typhu88__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-nh-c-i-typhu88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-nh-c-i-typhu88__faq-item.active .page-nh-c-i-typhu88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-nh-c-i-typhu88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      font-size: 1em;
    }

    .page-nh-c-i-typhu88__faq-item.active .page-nh-c-i-typhu88__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-nh-c-i-typhu88__hero-section {
        height: 300px;
      }

      .page-nh-c-i-typhu88__hero-title {
        font-size: 2em;
      }

      .page-nh-c-i-typhu88__hero-description {
        font-size: 1em;
      }

      .page-nh-c-i-typhu88__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-nh-c-i-typhu88__section-title {
        font-size: 1.7em;
      }

      .page-nh-c-i-typhu88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-nh-c-i-typhu88__game-image {
        height: 180px;
      }

      .page-nh-c-i-typhu88__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
      }

      .page-nh-c-i-typhu88__promotion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        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-nh-c-i-typhu88__promotion-content {
        padding-top: 10px;
      }

      .page-nh-c-i-typhu88__promotion-icon {
        width: 60px;
        height: 60px;
      }

      .page-nh-c-i-typhu88__provider-item,
      .page-nh-c-i-typhu88__payment-item {
        padding: 10px 15px;
        font-size: 0.9em;
        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-nh-c-i-typhu88__provider-list,
      .page-nh-c-i-typhu88__payment-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-nh-c-i-typhu88__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-nh-c-i-typhu88__faq-question h3 {
        font-size: 1em;
      }

      .page-nh-c-i-typhu88__faq-answer {
        padding: 0 10px;
      }

      .page-nh-c-i-typhu88__faq-item.active .page-nh-c-i-typhu88__faq-answer {
        padding: 15px 10px !important;
      }
    }
  