
    /* Tổng thể */
    .page-game-n-h-hi88 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
      padding-top: 10px; /* Minimal top padding, assuming body already has offset */
    }

    .page-game-n-h-hi88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Tiêu đề */
    .page-game-n-h-hi88__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-game-n-h-hi88__section-subtitle {
      font-size: 1.8em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    /* Phần Hero */
    .page-game-n-h-hi88__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-game-n-h-hi88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-game-n-h-hi88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-game-n-h-hi88__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-game-n-h-hi88__hero-description {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-game-n-h-hi88__hero-cta {
      display: inline-block;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: bold;
    }

    .page-game-n-h-hi88__hero-cta:hover {
      background-color: #c0392b;
    }

    /* Các phần nội dung */
    .page-game-n-h-hi88__content-section {
      padding: 40px 0;
      margin-bottom: 30px;
    }

    .page-game-n-h-hi88__text-block {
      background-color: #2c2c40;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-game-n-h-hi88__text-block p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #cccccc;
    }
    
    .page-game-n-h-hi88__text-block strong {
        color: #ffcc00;
    }

    /* Danh sách game */
    .page-game-n-h-hi88__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-game-n-h-hi88__game-card {
      background-color: #2c2c40;
      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;
      box-sizing: border-box;
      width: 100%;
    }

    .page-game-n-h-hi88__game-card:hover {
      transform: translateY(-10px);
    }

    .page-game-n-h-hi88__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-game-n-h-hi88__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-game-n-h-hi88__game-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-game-n-h-hi88__game-provider {
      font-size: 0.9em;
      color: #999999;
      margin-bottom: 15px;
    }

    .page-game-n-h-hi88__game-cta {
      background-color: #3498db;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-weight: bold;
      display: block; /* Ensure it takes full width */
      width: fit-content;
      margin: 0 auto;
    }

    .page-game-n-h-hi88__game-cta:hover {
      background-color: #2980b9;
    }

    /* Danh sách tính năng/lợi ích */
    .page-game-n-h-hi88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-game-n-h-hi88__feature-item {
      background-color: #2c2c40;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      width: 100%;
    }

    .page-game-n-h-hi88__feature-icon {
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .page-game-n-h-hi88__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        min-width: 200px; /* Enforcing minimum size for images */
        min-height: 200px; /* Enforcing minimum size for images */
        box-sizing: border-box;
    }

    .page-game-n-h-hi88__feature-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-game-n-h-hi88__feature-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-game-n-h-hi88__faq-section {
      padding: 40px 0;
    }

    .page-game-n-h-hi88__faq-item {
      background-color: #2c2c40;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
    }

    .page-game-n-h-hi88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a50;
      border-bottom: 1px solid #4a4a60;
      transition: background-color 0.3s ease;
    }

    .page-game-n-h-hi88__faq-question:hover {
      background-color: #4a4a60;
    }

    .page-game-n-h-hi88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-weight: bold;
    }

    .page-game-n-h-hi88__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      font-weight: bold;
    }

    .page-game-n-h-hi88__faq-item.active .page-game-n-h-hi88__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-game-n-h-hi88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      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-game-n-h-hi88__faq-item.active .page-game-n-h-hi88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-game-n-h-hi88__faq-answer p {
        margin: 0;
        padding: 0;
        font-size: 1.05em;
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-game-n-h-hi88__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 46, 0.95);
      padding: 10px 15px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-game-n-h-hi88__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      border-radius: 8px;
      font-size: 1.1em;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      max-width: 48%; /* Adjust for spacing */
    }

    .page-game-n-h-hi88__floating-button--register {
      background-color: #e74c3c;
      color: #ffffff;
    }

    .page-game-n-h-hi88__floating-button--register:hover {
      background-color: #c0392b;
    }

    .page-game-n-h-hi88__floating-button--login {
      background-color: #3498db;
      color: #ffffff;
    }

    .page-game-n-h-hi88__floating-button--login:hover {
      background-color: #2980b9;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-game-n-h-hi88__section-title {
        font-size: 2em;
      }

      .page-game-n-h-hi88__section-subtitle {
        font-size: 1.5em;
      }

      .page-game-n-h-hi88__hero-title {
        font-size: 2.5em;
      }

      .page-game-n-h-hi88__hero-description {
        font-size: 1.1em;
      }

      .page-game-n-h-hi88__game-list {
        grid-template-columns: 1fr;
      }
      
      .page-game-n-h-hi88__game-card {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-game-n-h-hi88__feature-list {
        grid-template-columns: 1fr;
      }
      
      .page-game-n-h-hi88__feature-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-game-n-h-hi88__feature-icon img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Enforcing minimum size for images */
        min-height: 200px !important; /* Enforcing minimum size for images */
        box-sizing: border-box !important;
      }

      .page-game-n-h-hi88__faq-question h3 {
        font-size: 1.1em;
      }
      
      .page-game-n-h-hi88__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      
      .page-game-n-h-hi88__faq-item.active .page-game-n-h-hi88__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
      
      .page-game-n-h-hi88__floating-buttons {
        padding: 8px 10px;
      }

      .page-game-n-h-hi88__floating-button {
        font-size: 1em;
        padding: 10px 8px;
        margin: 0 3px;
      }
      
      .page-game-n-h-hi88__hero-background,
      .page-game-n-h-hi88__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      /* Ensure text in lists wraps */
      .page-game-n-h-hi88__feature-description,
      .page-game-n-h-hi88__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
        .page-game-n-h-hi88__hero-title {
            font-size: 2em;
        }
        .page-game-n-h-hi88__section-title {
            font-size: 1.8em;
        }
        .page-game-n-h-hi88__floating-button {
            font-size: 0.9em;
            padding: 8px 5px;
        }
    }
  