
    /* Tổng thể */
    .page-gamenohu {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding: 0;
      margin: 0;
    }

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

    .page-gamenohu__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-gamenohu__heading-primary {
      color: #0056b3;
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: 700;
      padding-top: 20px; /* Adjust for fixed header */
    }

    .page-gamenohu__heading-secondary {
      color: #0056b3;
      font-size: 1.8em;
      margin-bottom: 15px;
      border-bottom: 2px solid #e0e0e0;
      padding-bottom: 10px;
    }

    .page-gamenohu__heading-tertiary {
      color: #007bff;
      font-size: 1.4em;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-gamenohu__paragraph {
      margin-bottom: 15px;
      color: #555;
    }

    .page-gamenohu__list {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }

    .page-gamenohu__list-item {
      margin-bottom: 8px;
      color: #555;
    }

    /* Hero Section */
    .page-gamenohu__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 0 50px 0; /* padding-top for fixed header */
      box-sizing: border-box;
      background: linear-gradient(135deg, #007bff, #0056b3);
      border-radius: 0 0 20px 20px;
      margin-bottom: 30px;
    }

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

    .page-gamenohu__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-gamenohu__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 800px;
    }

    .page-gamenohu__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 800;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-gamenohu__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 25px;
      font-weight: 300;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-gamenohu__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-gamenohu__game-card {
      background-color: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

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

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

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

    .page-gamenohu__game-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 600;
    }

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

    /* Floating Login Button */
    .page-gamenohu__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

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

    /* FAQ Section */
    .page-gamenohu__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fdfdfd;
    }

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

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

    .page-gamenohu__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-gamenohu__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from interfering with click event */
    }

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

    .page-gamenohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #555;
    }

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

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

      .page-gamenohu__hero-section {
        padding: 10px 0 30px 0; /* padding-top for fixed header */
        border-radius: 0 0 10px 10px;
      }

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

      .page-gamenohu__hero-subtitle {
        font-size: 1em;
      }

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

      .page-gamenohu__heading-primary {
        font-size: 2em;
        padding-top: 15px;
      }

      .page-gamenohu__heading-secondary {
        font-size: 1.5em;
      }

      .page-gamenohu__game-grid {
        grid-template-columns: 1fr;
      }

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

      .page-gamenohu__game-image-wrapper,
      .page-gamenohu__game-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-gamenohu__hero-image-wrapper,
      .page-gamenohu__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-gamenohu__hero-title {
        font-size: 1.8em;
      }
      .page-gamenohu__hero-subtitle {
        font-size: 0.9em;
      }
      .page-gamenohu__heading-primary {
        font-size: 1.8em;
      }
      .page-gamenohu__heading-secondary {
        font-size: 1.3em;
      }
    }
  