
    /* Tổng quan */
    .page-nbet {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Màu chữ sáng */
      background-color: #1a1a2e; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh nút nổi bị che */
    }

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

    /* Tiêu đề */
    .page-nbet h1, .page-nbet h2, .page-nbet h3 {
      color: #f7b32b; /* Màu vàng cam cho tiêu đề */
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }
    .page-nbet h1 {
      font-size: 2.5em;
      padding-top: 20px;
    }
    .page-nbet h2 {
      font-size: 2em;
      border-bottom: 2px solid #f7b32b;
      padding-bottom: 10px;
      margin-top: 40px;
    }
    .page-nbet h3 {
      font-size: 1.5em;
      margin-top: 30px;
      color: #4CAF50; /* Màu xanh lá cho tiêu đề phụ */
    }

    /* Đoạn văn */
    .page-nbet p {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Liên kết */
    .page-nbet a {
      color: #4CAF50; /* Màu xanh lá cho liên kết */
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-nbet a:hover {
      color: #f7b32b;
      text-decoration: underline;
    }

    /* Nút */
    .page-nbet-button {
      display: inline-block;
      background-color: #f7b32b;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 8px;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      margin-top: 20px;
    }
    .page-nbet-button:hover {
      background-color: #e0a025;
      transform: translateY(-2px);
      color: #1a1a2e;
      text-decoration: none;
    }

    /* Phần Hero Banner */
    .page-nbet-hero {
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
      background-color: #0d0d1a;
      padding: 20px 0;
    }
    .page-nbet-hero-image {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .page-nbet-hero-content {
      text-align: center;
      padding: 20px 15px;
      position: relative;
      z-index: 2;
    }
    .page-nbet-hero-content h1 {
      color: #ffffff;
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .page-nbet-hero-content p {
      color: #e0e0e0;
      font-size: 1.2em;
      margin-bottom: 25px;
    }

    /* Phần Sản phẩm/Trò chơi */
    .page-nbet-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .page-nbet-game-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 15px;
    }
    .page-nbet-game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    }
    .page-nbet-game-item img {
      max-width: 100%;
      height: 100px; /* Fixed height for consistency */
      object-fit: contain; /* Ensure full image is visible */
      border-radius: 5px;
      margin-bottom: 10px;
    }
    .page-nbet-game-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: #f7b32b;
      text-align: center; /* Center align title */
    }

    /* Danh sách */
    .page-nbet ul {
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px;
    }
    .page-nbet ul li {
      background-color: #2a2a4a;
      padding: 12px 15px;
      margin-bottom: 10px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    .page-nbet ul li::before {
      content: '✔';
      color: #4CAF50;
      font-weight: bold;
      margin-right: 10px;
    }

    /* Nhà cung cấp game */
    .page-nbet-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
    }
    .page-nbet-provider-logo {
      background-color: #2a2a4a;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 70px; /* Fixed height for logos */
    }
    .page-nbet-provider-logo:hover {
      transform: scale(1.05);
    }
    .page-nbet-provider-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-nbet-faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    .page-nbet-faq-question {
      padding: 15px 20px;
      background-color: #3a3a5a;
      color: #f7b32b;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }
    .page-nbet-faq-question:hover {
      background-color: #4a4a6a;
    }
    .page-nbet-faq-question span {
      font-size: 1.2em;
    }
    .page-nbet-faq-answer {
      padding: 15px 20px;
      color: #e0e0e0;
      background-color: #2a2a4a;
      display: none; /* Hidden by default */
    }
    .page-nbet-faq-answer p {
      margin-bottom: 0;
    }

    /* Nút Đăng nhập/Đăng ký nổi */
    .page-nbet-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }
    .page-nbet-floating-buttons a {
      flex: 1;
      padding: 15px 10px;
      font-size: 1.1em;
      border-radius: 10px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .page-nbet-floating-buttons a:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
    .page-nbet-btn-register {
      background-color: #4CAF50; /* Màu xanh lá */
      color: #ffffff;
    }
    .page-nbet-btn-login {
      background-color: #f7b32b; /* Màu vàng cam */
      color: #1a1a2e;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-nbet h1 {
        font-size: 2em;
      }
      .page-nbet h2 {
        font-size: 1.7em;
      }
      .page-nbet-hero-content h1 {
        font-size: 2.2em;
      }
      .page-nbet-hero-content p {
        font-size: 1em;
      }
      .page-nbet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-nbet-game-item img {
        height: 80px;
      }
      .page-nbet-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
      }
      .page-nbet-provider-logo {
        height: 60px;
      }
      .page-nbet-floating-buttons {
        width: 95%;
        bottom: 15px;
        gap: 10px;
      }
      .page-nbet-floating-buttons a {
        font-size: 1em;
        padding: 12px 8px;
      }
    }

    @media (max-width: 480px) {
      .page-nbet h1 {
        font-size: 1.8em;
      }
      .page-nbet h2 {
        font-size: 1.5em;
      }
      .page-nbet-hero-content h1 {
        font-size: 1.8em;
      }
      .page-nbet-hero-content p {
        font-size: 0.9em;
      }
      .page-nbet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-nbet-game-item img {
        height: 70px;
      }
      .page-nbet-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
      }
      .page-nbet-provider-logo {
        height: 50px;
      }
    }
  