
    /* Tổng quan */
    .page-nwe88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Đảm bảo không bị nút nổi che */
    }

    .page-nwe88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-nwe88__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-nwe88__section-title {
      font-size: 2.8em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-nwe88__section-subtitle {
      font-size: 1.2em;
      color: #FFFFFF;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-nwe88__hero-section {
      position: relative;
      padding-top: 160px; /* Đảm bảo không bị header cố định che */
      background-color: #1a1a1a;
      overflow: hidden;
    }

    .page-nwe88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
    }

    .page-nwe88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-nwe88__hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-nwe88__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-nwe88__hero-description {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-nwe88__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.5em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    }

    .page-nwe88__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Nút đăng nhập/đăng ký nổi */
    .page-nwe88__floating-button {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
      z-index: 1000;
      animation: page-nwe88__pulse 1.5s infinite;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-nwe88__floating-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

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

    /* Giới thiệu nwe88 */
    .page-nwe88__about-section {
      background-color: #0a0a0a;
      padding: 80px 0;
    }

    .page-nwe88__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      text-align: left;
    }

    .page-nwe88__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-nwe88__about-text h2 {
      color: #FFD700;
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-nwe88__about-text p {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #CCCCCC;
    }

    .page-nwe88__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-nwe88__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* Danh mục trò chơi */
    .page-nwe88__game-categories {
      background-color: #000000;
    }

    .page-nwe88__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-nwe88__category-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-nwe88__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(255, 215, 0, 0.2);
    }

    .page-nwe88__category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px; /* Giữ chiều cao cố định để hình ảnh có thể căn chỉnh */
    }

    .page-nwe88__category-image {
      max-width: 100%;
      height: auto;
      object-fit: contain; /* Đảm bảo hình ảnh không bị cắt hoặc biến dạng */
      border-radius: 8px;
    }

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

    .page-nwe88__category-description {
      font-size: 1em;
      color: #CCCCCC;
    }

    /* Nhà cung cấp game */
    .page-nwe88__providers-section {
      background-color: #0a0a0a;
    }

    .page-nwe88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-nwe88__provider-logo-wrapper {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nwe88__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(255, 215, 0, 0.15);
    }

    .page-nwe88__provider-logo {
      max-width: 90%;
      max-height: 70px;
      height: auto;
      object-fit: contain;
    }

    /* Khuyến mãi */
    .page-nwe88__promotions-section {
      background-color: #000000;
    }

    .page-nwe88__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-nwe88__promotion-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-nwe88__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(255, 215, 0, 0.2);
    }

    .page-nwe88__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-nwe88__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-nwe88__promotion-content {
      padding: 25px;
    }

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

    .page-nwe88__promotion-description {
      font-size: 1em;
      color: #CCCCCC;
      margin-bottom: 20px;
    }

    .page-nwe88__promotion-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-nwe88__promotion-link:hover {
      background-color: #e6c200;
    }

    /* Câu hỏi thường gặp (FAQ) */
    .page-nwe88__faq-section {
      background-color: #0a0a0a;
      padding: 80px 0;
    }

    .page-nwe88__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

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

    .page-nwe88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-nwe88__faq-question:hover {
      background-color: #333333;
    }

    .page-nwe88__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      color: inherit; /* Đảm bảo màu sắc kế thừa từ parent */
    }

    .page-nwe88__faq-toggle {
      font-size: 1.8em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-nwe88__faq-item.active .page-nwe88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-nwe88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #1a1a1a;
      color: #CCCCCC;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-nwe88__faq-item.active .page-nwe88__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-nwe88__hero-title {
        font-size: 2.8em;
      }

      .page-nwe88__hero-description {
        font-size: 1.3em;
      }

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

      .page-nwe88__about-content {
        flex-direction: column;
        text-align: center;
      }

      .page-nwe88__about-text {
        order: 2;
      }

      .page-nwe88__about-image-wrapper {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .page-nwe88__hero-section {
        padding-top: 120px; /* Điều chỉnh cho mobile */
      }

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

      .page-nwe88__hero-description {
        font-size: 1em;
      }

      .page-nwe88__cta-button {
        font-size: 1.2em;
        padding: 12px 30px;
      }

      .page-nwe88__section {
        padding: 40px 0;
      }

      .page-nwe88__section-title {
        font-size: 1.8em;
      }

      .page-nwe88__section-subtitle {
        font-size: 1em;
      }

      .page-nwe88__floating-button {
        font-size: 1em;
        padding: 10px 20px;
        bottom: 15px;
        right: 15px;
      }

      .page-nwe88__about-text h2 {
        font-size: 2em;
      }

      .page-nwe88__about-text p {
        font-size: 0.95em;
      }

      .page-nwe88__categories-grid,
      .page-nwe88__providers-grid,
      .page-nwe88__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-nwe88__category-card,
      .page-nwe88__promotion-card {
        padding: 20px;
      }

      .page-nwe88__category-title,
      .page-nwe88__promotion-title {
        font-size: 1.5em;
      }

      .page-nwe88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-nwe88__faq-answer {
        font-size: 0.95em;
        padding: 0 20px;
      }

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

      /* Responsive image optimization with !important */
      .page-nwe88__hero-image,
      .page-nwe88__about-image,
      .page-nwe88__category-image,
      .page-nwe88__provider-logo,
      .page-nwe88__promotion-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-nwe88__hero-image-wrapper,
      .page-nwe88__about-image-wrapper,
      .page-nwe88__category-image-wrapper,
      .page-nwe88__provider-logo-wrapper,
      .page-nwe88__promotion-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  