
    /* Global styles for the page-nohu90 scope */
    .page-nohu90 {
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

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

    .page-nohu90__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: #1a1a1a; /* Màu đen hơi nhạt cho các phần */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-nohu90__section-title {
      color: #FFD700; /* Vàng/Gold cho tiêu đề */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-nohu90__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-nohu90__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-nohu90__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-nohu90__hero-section {
      position: relative;
      text-align: center;
      color: #FFFFFF;
      padding-top: 10px; /* Vùng an toàn cho header cố định trên desktop */
      padding-bottom: 50px;
      background-color: #000000; /* Đảm bảo nền đen */
    }

    .page-nohu90__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nohu90__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

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

    .page-nohu90__hero-title {
      font-size: 3em;
      margin-top: 20px;
      margin-bottom: 15px;
      color: #FFD700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-nohu90__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Game List Section */
    .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: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

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

    .page-nohu90__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

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

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

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

    /* Game Providers Section */
    .page-nohu90__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-nohu90__provider-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%; /* Đảm bảo chiếm toàn bộ chiều rộng cột lưới */
      max-width: 200px; /* Giới hạn chiều rộng tối đa cho màn hình lớn hơn */
    }

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

    .page-nohu90__provider-logo {
      max-width: 100%;
      height: 80px; /* Chiều cao cố định cho logo */
      object-fit: contain;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nohu90__provider-name {
      color: #FFD700;
      font-weight: bold;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-nohu90__faq-list {
      margin-top: 30px;
    }

    .page-nohu90__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-nohu90__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-nohu90__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-nohu90__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên phần tử cha */
    }

    .page-nohu90__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      pointer-events: none; /* Ngăn icon chuyển đổi chặn sự kiện click trên phần tử cha */
      transition: transform 0.3s ease;
    }

    .page-nohu90__faq-item.active .page-nohu90__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành 'x' */
    }

    .page-nohu90__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Padding ban đầu */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
    }

    .page-nohu90__faq-item.active .page-nohu90__faq-answer {
      max-height: 2000px !important; /* Giá trị đủ lớn */
      padding: 20px !important; /* Padding cuối cùng */
      opacity: 1;
    }

    /* Floating Login Button */
    .page-nohu90__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px; /* Hình viên thuốc */
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-nohu90__pulse 2s infinite;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-nohu90__floating-promo-button:hover {
      background-color: #e6c200;
      animation: none;
    }

    @keyframes page-nohu90__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

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

      .page-nohu90__hero-section {
        padding-top: 10px; /* Vùng an toàn di động cho header cố định */
        padding-bottom: 30px;
      }

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

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

      .page-nohu90__section-title {
        font-size: 2em;
      }

      .page-nohu90__game-grid {
        grid-template-columns: 1fr;
      }

      .page-nohu90__game-card-image {
        height: 180px;
      }

      .page-nohu90__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      
      .page-nohu90__provider-logo {
        height: 60px;
      }

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

      .page-nohu90__floating-promo-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      
      /* Image responsiveness for all images */
      .page-nohu90 img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-nohu90__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-nohu90__hero-title {
        font-size: 1.8em;
      }
      .page-nohu90__hero-subtitle {
        font-size: 1em;
      }
      .page-nohu90__section {
        padding: 30px 15px;
      }
      .page-nohu90__section-title {
        font-size: 1.8em;
      }
      .page-nohu90__floating-promo-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 18px;
        font-size: 0.9em;
      }
    }
  