
    /* Tổng quan */
    .page-gamenohu {
      font-family: Arial, sans-serif;
      color: #fff; /* Chữ trắng */
      background-color: #000; /* Nền đen */
      line-height: 1.6;
    }

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

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

    .page-gamenohu__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-gamenohu__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700; /* Vàng */
      border-radius: 2px;
    }

    .page-gamenohu__text-highlight {
      color: #FFD700; /* Vàng */
      font-weight: bold;
    }

    /* Hero Section */
    .page-gamenohu__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 140px; /* An toàn cho header cố định trên desktop */
      padding-bottom: 40px;
      background-color: #0a0a0a; /* Hơi tối hơn nền chính */
    }

    .page-gamenohu__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-gamenohu__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }

    .page-gamenohu__hero-content {
      text-align: center;
      padding: 0 15px;
    }

    .page-gamenohu__hero-title {
      font-size: 3em;
      color: #FFD700; /* Vàng */
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-gamenohu__hero-description {
      font-size: 1.2em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gamenohu__promo-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

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

    /* Game List Section */
    .page-gamenohu__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-gamenohu__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-gamenohu__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-gamenohu__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-gamenohu__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 200px; /* Ensure images fill the height */
      min-width: 100%; /* Ensure images fill the width */
    }

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

    .page-gamenohu__game-card-title {
      font-size: 1.5em;
      color: #FFD700; /* Vàng */
      margin-bottom: 10px;
      text-decoration: none; /* For link inside title */
    }

    .page-gamenohu__game-card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-gamenohu__game-card-title a:hover {
      color: #fff;
    }

    .page-gamenohu__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-gamenohu__game-card-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000;
      padding: 10px 20px;
      font-size: 0.9em;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .page-gamenohu__game-card-button:hover {
      background-color: #e6c200;
    }

    /* Provider Section */
    .page-gamenohu__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-gamenohu__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 120px; /* Fixed height for consistency */
      width: 100%; /* Ensure it takes full column width */
      max-width: 180px; /* Max width for larger screens */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-gamenohu__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-gamenohu__provider-logo {
      max-width: 100px; /* Max width for logos */
      max-height: 80px; /* Max height for logos */
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Why Choose Us Section */
    .page-gamenohu__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-gamenohu__feature-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-gamenohu__feature-card:hover {
      transform: translateY(-5px);
      background-color: #2a2a2a;
    }

    .page-gamenohu__feature-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #FFD700; /* Vàng */
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-gamenohu__feature-icon {
      max-width: 80%;
      max-height: 80%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-gamenohu__feature-title {
      font-size: 1.4em;
      color: #FFD700; /* Vàng */
      margin-bottom: 15px;
    }

    .page-gamenohu__feature-description {
      font-size: 1em;
      color: #ccc;
    }

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

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

    .page-gamenohu__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

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

    .page-gamenohu__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 220px;
      min-width: 100%;
    }

    .page-gamenohu__promo-content {
      padding: 20px;
    }

    .page-gamenohu__promo-title {
      font-size: 1.5em;
      color: #FFD700; /* Vàng */
      margin-bottom: 10px;
    }

    .page-gamenohu__promo-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-gamenohu__promo-link {
      display: inline-block;
      color: #FFD700; /* Vàng */
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-gamenohu__promo-link:hover {
      color: #fff;
      text-decoration: underline;
    }

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

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

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

    .page-gamenohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #222;
      color: #FFD700; /* Vàng */
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-gamenohu__faq-question:hover {
      background-color: #333;
    }

    .page-gamenohu__faq-question h3 {
      margin: 0;
      color: #FFD700; /* Vàng */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-gamenohu__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-gamenohu__faq-item.active .page-gamenohu__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

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

    .page-gamenohu__faq-item.active .page-gamenohu__faq-answer {
      max-height: 2000px !important; /* Large enough to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* CTA Section */
    .page-gamenohu__cta-section {
      background-color: #1a1a1a;
      padding: 60px 0;
      border-radius: 10px;
      margin-top: 60px;
    }

    .page-gamenohu__cta-title {
      font-size: 2.2em;
      color: #FFD700; /* Vàng */
      margin-bottom: 20px;
    }

    .page-gamenohu__cta-description {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login/Register Button */
    .page-gamenohu__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700; /* Vàng */
      color: #000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-gamenohu__pulse 2s infinite;
    }

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

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

    /* Responsive */
    @media (max-width: 992px) {
      .page-gamenohu__section-title {
        font-size: 2em;
      }
      .page-gamenohu__hero-title {
        font-size: 2.5em;
      }
      .page-gamenohu__hero-description {
        font-size: 1.1em;
      }
      .page-gamenohu__game-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-gamenohu__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-gamenohu__hero-section {
        padding-top: 100px !important; /* An toàn cho header cố định trên mobile */
      }
      .page-gamenohu__section {
        padding: 40px 0;
      }
      .page-gamenohu__section-title {
        font-size: 1.8em;
      }
      .page-gamenohu__hero-title {
        font-size: 2em;
      }
      .page-gamenohu__hero-description {
        font-size: 1em;
      }
      .page-gamenohu__promo-button,
      .page-gamenohu__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-gamenohu__game-list {
        grid-template-columns: 1fr;
      }
      .page-gamenohu__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-gamenohu__feature-card {
        padding: 20px;
      }
      .page-gamenohu__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-gamenohu__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-gamenohu__faq-answer {
        padding: 0 20px;
      }
      .page-gamenohu__faq-item.active .page-gamenohu__faq-answer {
        padding: 15px 20px !important;
      }
      .page-gamenohu__cta-title {
        font-size: 1.8em;
      }
      .page-gamenohu__cta-description {
        font-size: 0.95em;
      }

      /* Image responsive optimization for mobile */
      .page-gamenohu__hero-image,
      .page-gamenohu__game-card-image,
      .page-gamenohu__provider-logo,
      .page-gamenohu__feature-icon,
      .page-gamenohu__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-gamenohu__hero-image-wrapper,
      .page-gamenohu__game-card-image-wrapper,
      .page-gamenohu__provider-item,
      .page-gamenohu__feature-icon-wrapper,
      .page-gamenohu__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-gamenohu__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }
      .page-gamenohu__hero-title {
        font-size: 1.8em;
      }
      .page-gamenohu__promo-button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-gamenohu__game-card-title {
        font-size: 1.3em;
      }
    }
  