
      /* style/8nohu.css */
      :root {
          --primary-color: #2563eb;
          --secondary-color: #64748b;
          --text-dark: #111111;
          --text-light: #ffffff;
          --bg-light: #f8f9fa;
          --bg-dark-card: rgba(37, 99, 235, 0.8);
          --btn-hover-darken: #1d4ed8;
          --border-light: #e0e0e0;
      }

      /* General page styles */
      .page-8nohu {
          font-family: 'Arial', sans-serif;
          color: var(--text-dark);
          line-height: 1.6;
          background-color: var(--bg-light);
      }

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

      .page-8nohu__section--dark {
          background-color: var(--primary-color);
          color: var(--text-light);
      }

      .page-8nohu__section-title {
          font-size: 2.5em;
          color: var(--primary-color);
          text-align: center;
          margin-bottom: 40px;
          font-weight: 700;
          line-height: 1.2;
      }

      .page-8nohu__section--dark .page-8nohu__section-title {
          color: var(--text-light);
      }

      .page-8nohu__text-content p {
          margin-bottom: 1em;
          text-align: justify;
      }

      /* Hero Section */
      .page-8nohu__hero-section {
          position: relative;
          width: 100%;
          padding: 10px 0 60px 0;
          background-color: var(--primary-color);
          color: var(--text-light);
          text-align: center;
          overflow: hidden;
      }

      .page-8nohu__hero-image-wrapper {
          width: 100%;
          max-width: 1920px;
          margin: 0 auto;
          display: flex;
          justify-content: center;
          align-items: flex-start; /* Align image to top */
          overflow: hidden;
      }

      .page-8nohu__hero-image {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
          object-position: top;
      }

      .page-8nohu__hero-content {
          position: relative;
          z-index: 10;
          max-width: 900px;
          margin: 20px auto 0 auto;
          padding: 0 20px;
      }

      .page-8nohu__hero-title {
          font-weight: 900;
          color: var(--text-light);
          margin-bottom: 15px;
          line-height: 1.2;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
          font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
      }

      .page-8nohu__hero-description {
          font-size: 1.1em;
          margin-bottom: 30px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
      }

      .page-8nohu__cta-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
      }

      .page-8nohu__btn {
          display: inline-block;
          padding: 12px 30px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: 700;
          font-size: 1em;
          transition: background-color 0.3s ease, transform 0.2s ease;
          cursor: pointer;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-8nohu__btn--primary {
          background-color: #ffcc00; /* Vàng nổi bật */
          color: var(--text-dark);
          border: 2px solid #ffcc00;
      }

      .page-8nohu__btn--primary:hover {
          background-color: #e6b800;
          border-color: #e6b800;
          transform: translateY(-2px);
      }

      .page-8nohu__btn--secondary {
          background-color: transparent;
          color: var(--text-light);
          border: 2px solid var(--text-light);
      }

      .page-8nohu__btn--secondary:hover {
          background-color: rgba(255, 255, 255, 0.2);
          transform: translateY(-2px);
      }

      /* Floating Buttons */
      .page-8nohu__floating-buttons {
          position: fixed;
          bottom: 20px;
          right: 20px;
          z-index: 1000;
          display: flex;
          flex-direction: column;
          gap: 10px;
      }

      .page-8nohu__floating-btn {
          background-color: var(--primary-color);
          color: var(--text-light);
          padding: 10px 20px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: 600;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          transition: background-color 0.3s ease, transform 0.2s ease;
          text-align: center;
          white-space: nowrap; /* Prevent text wrapping */
      }

      .page-8nohu__floating-btn:hover {
          background-color: var(--btn-hover-darken);
          transform: translateY(-2px);
      }

      /* Game Categories */
      .page-8nohu__game-categories {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-8nohu__game-card {
          background-color: var(--text-light);
          border-radius: 12px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          text-align: center;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          height: 100%;
      }

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

      .page-8nohu__game-card-image-wrapper {
          width: 100%;
          padding-top: 56.25%; /* 16:9 Aspect Ratio */
          position: relative;
          overflow: hidden;
          background-color: var(--bg-light);
      }

      .page-8nohu__game-card-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
      }

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

      .page-8nohu__game-card-title {
          font-size: 1.5em;
          color: var(--primary-color);
          margin-bottom: 15px;
          font-weight: 700;
      }

      .page-8nohu__game-card-description {
          font-size: 0.95em;
          color: var(--secondary-color);
          margin-bottom: 20px;
          flex-grow: 1;
      }

      /* Promotions Section */
      .page-8nohu__promotions-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
          margin-top: 40px;
      }

      .page-8nohu__promo-card {
          background-color: var(--text-light);
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          overflow: hidden;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
      }

      .page-8nohu__promo-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      }

      .page-8nohu__promo-image-wrapper {
          width: 100%;
          padding-top: 50%; /* 2:1 Aspect Ratio */
          position: relative;
          overflow: hidden;
      }

      .page-8nohu__promo-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
      }

      .page-8nohu__promo-content {
          padding: 25px;
          flex-grow: 1;
      }

      .page-8nohu__promo-title {
          font-size: 1.4em;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 700;
      }

      .page-8nohu__promo-description {
          font-size: 0.9em;
          color: var(--secondary-color);
          margin-bottom: 15px;
      }

      .page-8nohu__promo-date {
          font-size: 0.8em;
          color: #999;
      }

      /* Payment & Providers */
      .page-8nohu__logos-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
          gap: 20px;
          align-items: center;
          justify-items: center;
          margin-top: 30px;
      }

      .page-8nohu__logo-item {
          width: 100%;
          height: auto;
          max-width: 150px;
          opacity: 0.7;
          transition: opacity 0.3s ease;
      }

      .page-8nohu__logo-item:hover {
          opacity: 1;
      }

      /* FAQ Section */
      .page-8nohu__faq-list {
          margin-top: 40px;
      }

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

      .page-8nohu__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 20px 25px;
          font-size: 1.15em;
          font-weight: 600;
          color: var(--primary-color);
          cursor: pointer;
          user-select: none;
          transition: background-color 0.3s ease;
      }

      .page-8nohu__faq-question:hover {
          background-color: var(--bg-light);
      }

      .page-8nohu__faq-question h3 {
          margin: 0;
          font-size: 1em; /* Inherit from parent */
          pointer-events: none; /* Prevent h3 from blocking click event */
          flex-grow: 1;
      }

      .page-8nohu__faq-toggle {
          font-size: 1.5em;
          line-height: 1;
          margin-left: 15px;
          transition: transform 0.3s ease;
          pointer-events: none; /* Prevent toggle from blocking click event */
      }

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

      .page-8nohu__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 25px;
          opacity: 0;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
          color: var(--text-dark);
          font-size: 0.95em;
      }

      .page-8nohu__faq-item.active .page-8nohu__faq-answer {
          max-height: 2000px !important;
          padding: 20px 25px !important;
          opacity: 1;
      }

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

          .page-8nohu__section-title {
              font-size: 2em;
              margin-bottom: 30px;
          }

          .page-8nohu__hero-section {
              padding: 10px 0 40px 0;
          }

          .page-8nohu__hero-title {
              font-size: clamp(2em, 8vw, 2.8em);
          }

          .page-8nohu__hero-description {
              font-size: 1em;
              margin-bottom: 20px;
          }

          .page-8nohu__cta-buttons {
              flex-direction: column;
              gap: 15px;
              padding: 0 15px;
          }

          .page-8nohu__btn {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding: 15px 20px;
          }

          .page-8nohu__floating-buttons {
              bottom: 15px;
              right: 15px;
              flex-direction: row; /* Horizontal for mobile */
              width: calc(100% - 30px); /* Full width with padding */
              justify-content: space-around;
          }

          .page-8nohu__floating-btn {
              flex: 1;
              max-width: 48%; /* Adjust for two buttons */
              padding: 10px 15px;
              font-size: 0.9em;
          }

          .page-8nohu__game-categories,
          .page-8nohu__promotions-grid,
          .page-8nohu__logos-grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }

          .page-8nohu__game-card-title {
              font-size: 1.3em;
          }

          .page-8nohu__game-card-description {
              font-size: 0.9em;
          }

          .page-8nohu__promo-title {
              font-size: 1.2em;
          }

          .page-8nohu__faq-question {
              padding: 15px 20px;
              font-size: 1em;
          }

          .page-8nohu__faq-answer {
              padding: 15px 20px;
              font-size: 0.9em;
          }

          /* Ensure all images are responsive on mobile */
          .page-8nohu img {
              max-width: 100% !important;
              height: auto !important;
              display: block !important;
          }

          .page-8nohu__game-card-image-wrapper,
          .page-8nohu__promo-image-wrapper {
              width: 100% !important;
              box-sizing: border-box !important;
              overflow: hidden !important;
          }

          .page-8nohu__text-block,
          .page-8nohu__about-content,
          .page-8nohu__mobile-description,
          .page-8nohu__list-item {
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
              padding-left: 15px;
              padding-right: 15px;
          }

          .page-8nohu ul,
          .page-8nohu ol {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding: 0 15px !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
          }

          .page-8nohu li {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
              word-wrap: break-word !important;
              overflow-wrap: break-word !important;
              word-break: break-word !important;
          }
      }

      @media (max-width: 480px) {
          .page-8nohu__floating-buttons {
              flex-direction: column;
              gap: 8px;
          }

          .page-8nohu__floating-btn {
              max-width: 100%;
          }
      }

      /* Additional contrast fixes if needed */
      .page-8nohu__contrast-fix {
          background: #ffffff !important;
          color: #333333 !important;
          border: 1px solid #e0e0e0 !important;
      }

      .page-8nohu__text-contrast-fix {
          color: #333333 !important;
          text-shadow: none !important;
      }
    