
    /* Tổng quan */
    .page-new88bet {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị footer che */
    }

    /* Các phần chung */
    .page-new88bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

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

    .page-new88bet__section--dark {
      background-color: #0f0f1a;
    }

    .page-new88bet__section-title {
      font-size: 2.8em;
      color: #f7b731;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      display: inline-block;
    }

    .page-new88bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f7b731;
      border-radius: 2px;
    }

    .page-new88bet__text-center {
      text-align: center;
    }

    .page-new88bet__button {
      display: inline-block;
      background-color: #f7b731;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Hero Section */
    .page-new88bet__hero-section {
      position: relative;
      width: 100%;
      padding-top: 120px; /* Cho desktop, để tránh header cố định */
      background-color: #1a1a2e; /* Fallback */
      overflow: hidden;
    }

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

    .page-new88bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-new88bet__hero-content {
      position: relative; /* Đảm bảo nội dung không bị che bởi ảnh nếu ảnh quá lớn */
      padding: 40px 20px;
      text-align: center;
      color: #ffffff;
      background: linear-gradient(180deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 1) 100%);
    }

    .page-new88bet__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #f7b731;
      line-height: 1.2;
    }

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

    /* Nút nổi đăng ký/đăng nhập */
    .page-new88bet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e74c3c; /* Màu đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

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

    .page-new88bet__floating-button-icon {
      font-size: 1.5em;
    }

    /* Giới thiệu */
    .page-new88bet__intro-text {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #c0c0c0;
    }

    /* Danh mục trò chơi */
    .page-new88bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-new88bet__game-card {
      background-color: #2e2e4e;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-new88bet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-new88bet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Đảm bảo hình ảnh có kích thước đủ lớn */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-new88bet__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Đảm bảo ảnh lấp đầy chiều rộng */
      height: 100%; /* Đảm bảo ảnh lấp đầy chiều cao của wrapper */
    }

    .page-new88bet__game-card-title {
      font-size: 1.6em;
      color: #f7b731;
      padding: 20px 15px;
      background-color: #2e2e4e;
      flex-grow: 1; /* Đảm bảo tiêu đề chiếm hết không gian còn lại */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ưu đãi & Khuyến mãi */
    .page-new88bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-new88bet__promo-card {
      background-color: #2e2e4e;
      border-radius: 12px;
      overflow: hidden;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-new88bet__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-new88bet__promo-card-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-new88bet__promo-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-new88bet__promo-card-content {
      padding: 25px;
    }

    .page-new88bet__promo-card-title {
      font-size: 1.8em;
      color: #f7b731;
      margin-bottom: 10px;
    }

    .page-new88bet__promo-card-description {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    /* Nhà cung cấp trò chơi */
    .page-new88bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Có thể nhỏ hơn vì là logo */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-new88bet__provider-item {
      background-color: #2e2e4e;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Kích thước cố định cho logo */
      width: 100%;
      max-width: 180px; /* Giới hạn chiều rộng */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-new88bet__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-new88bet__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Tại sao chọn new88bet */
    .page-new88bet__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-new88bet__feature-card {
      background-color: #2e2e4e;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
    }

    .page-new88bet__feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-new88bet__feature-icon-wrapper {
      width: 100px; /* Đảm bảo icon có kích thước đủ lớn */
      height: 100px;
      margin: 0 auto 20px auto;
      background-color: #f7b731;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0; /* Ngăn icon bị co lại */
    }

    .page-new88bet__feature-icon {
      max-width: 80%;
      max-height: 80%;
      height: auto;
      display: block;
    }

    .page-new88bet__feature-title {
      font-size: 1.8em;
      color: #f7b731;
      margin-bottom: 15px;
      flex-grow: 0; /* Ngăn tiêu đề co giãn */
    }

    .page-new88bet__feature-description {
      font-size: 1em;
      color: #c0c0c0;
      flex-grow: 1; /* Cho phép mô tả chiếm không gian còn lại */
    }

    /* FAQ Section */
    .page-new88bet__faq-section {
      text-align: left;
    }

    .page-new88bet__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

    .page-new88bet__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-new88bet__faq-question h3 {
      font-size: 1.4em;
      color: #ffffff;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click của div cha */
    }

    .page-new88bet__faq-toggle {
      font-size: 2em;
      color: #f7b731;
      margin-left: 20px;
      width: 30px;
      text-align: center;
      flex-shrink: 0;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click của div cha */
    }

    .page-new88bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Giữ padding ngang */
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.05em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-new88bet__container {
        padding: 15px;
      }

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

      .page-new88bet__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-new88bet__hero-section {
        padding-top: 100px; /* Cho mobile, để tránh header cố định */
      }

      .page-new88bet__hero-title {
        font-size: 2.5em;
      }

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

      .page-new88bet__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-new88bet__floating-button-icon {
        font-size: 1.2em;
      }

      .page-new88bet__game-grid,
      .page-new88bet__promo-grid,
      .page-new88bet__provider-grid,
      .page-new88bet__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-new88bet__game-card-image-wrapper,
      .page-new88bet__promo-card-image-wrapper {
        height: 180px;
      }

      .page-new88bet__game-card-title {
        font-size: 1.4em;
      }

      .page-new88bet__promo-card-title {
        font-size: 1.5em;
      }

      .page-new88bet__feature-icon-wrapper {
        width: 80px;
        height: 80px;
      }

      .page-new88bet__feature-title {
        font-size: 1.5em;
      }

      .page-new88bet__faq-question {
        padding: 15px 20px;
      }

      .page-new88bet__faq-question h3 {
        font-size: 1.2em;
      }

      .page-new88bet__faq-toggle {
        font-size: 1.8em;
      }

      .page-new88bet__faq-answer {
        padding: 0 20px;
      }

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

      /* Responsive images - important */
      .page-new88bet img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-new88bet__hero-image-wrapper,
      .page-new88bet__game-card-image-wrapper,
      .page-new88bet__promo-card-image-wrapper,
      .page-new88bet__provider-item,
      .page-new88bet__feature-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-new88bet__provider-item {
          height: 80px !important; /* Adjust height for mobile logos */
      }
    }
  