
    /* Tổng thể */
    .page-nohu {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #0d0d0d;
      line-height: 1.6;
      padding-bottom: 80px; /* Cho nút nổi đăng nhập */
    }

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

    /* Tiêu đề */
    .page-nohu__heading {
      color: #ffd700; /* Vàng kim */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-nohu__subheading {
      color: #a0a0a0;
      text-align: center;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-nohu__hero-section {
      padding-top: 120px; /* Đảm bảo không bị che bởi header cố định */
      text-align: center;
      background-color: #1a1a1a;
      padding-bottom: 40px;
      position: relative;
    }

    .page-nohu__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-nohu__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Đảm bảo hình ảnh được căn giữa */
        border-radius: 8px;
    }

    .page-nohu__hero-title {
      font-size: 2.8em;
      margin-top: 20px;
      margin-bottom: 15px;
      color: #ffd700;
      line-height: 1.2;
    }

    .page-nohu__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nohu__cta-button {
      display: inline-block;
      background-color: #e60000; /* Đỏ rực */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    }

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

    /* Game List Section */
    .page-nohu__game-list-section {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

    .page-nohu__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

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

    .page-nohu__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-nohu__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-nohu__game-image {
      width: 100%;
      height: 200px; /* Cố định chiều cao cho ảnh game */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffd700;
    }

    .page-nohu__game-title {
      font-size: 1.5em;
      margin: 15px 0 10px;
      color: #ffd700;
      padding: 0 15px;
    }

    .page-nohu__game-title a {
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-nohu__game-title a:hover {
      color: #ffeb3b;
    }

    .page-nohu__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-nohu__game-button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-nohu__game-button:hover {
      background-color: #0056b3;
    }

    /* Provider Section */
    .page-nohu__provider-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-nohu__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }

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

    .page-nohu__provider-logo {
      max-width: 100%;
      height: 100px; /* Cố định chiều cao cho logo nhà cung cấp */
      object-fit: contain;
      filter: grayscale(80%) brightness(120%);
      transition: filter 0.3s ease;
    }

    .page-nohu__provider-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }

    /* Features Section */
    .page-nohu__features-section {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

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

    .page-nohu__feature-item {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-nohu__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-nohu__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-nohu__feature-title {
      font-size: 1.8em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-nohu__feature-description {
      color: #c0c0c0;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-nohu__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-nohu__faq-list {
      margin-top: 30px;
    }

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

    .page-nohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-nohu__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-nohu__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffd700;
      pointer-events: none; /* Ngăn chặn sự kiện click trên h3 */
    }

    .page-nohu__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn sự kiện click trên span */
    }

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

    .page-nohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Floating Login Button */
    .page-nohu__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e60000;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(230, 0, 0, 0.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-nohu__floating-login-button:hover {
      background-color: #cc0000;
      transform: translateY(-5px);
    }

    .page-nohu__floating-login-button::before {
        content: '🎁'; /* Biểu tượng quà tặng */
        font-size: 1.2em;
    }

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

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

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

      .page-nohu__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-nohu__game-grid,
      .page-nohu__provider-grid,
      .page-nohu__feature-list {
        grid-template-columns: 1fr;
      }

      .page-nohu__game-card,
      .page-nohu__feature-item {
        margin: 0 10px;
      }

      .page-nohu__provider-logo {
        height: 80px;
      }

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

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

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

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

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

      .page-nohu__hero-image-wrapper,
      .page-nohu__game-image-wrapper,
      .page-nohu__provider-logo-wrapper,
      .page-nohu__feature-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-nohu__hero-image,
      .page-nohu__game-image,
      .page-nohu__provider-logo,
      .page-nohu__feature-icon {
          max-width: 100% !important;
          height: auto !important;
      }
    }
  