
    /* CSS cho trang Nổ Hũ */
    .page-nohu {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 120px; /* Cho desktop */
      overflow-x: hidden;
    }

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

    .page-nohu__hero-section {
      text-align: center;
      padding: 40px 0;
      background: linear-gradient(135deg, #2a0a5e, #1a1a2e);
      position: relative;
      overflow: hidden;
    }

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

    .page-nohu__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 0;
    }

    .page-nohu__hero-title {
      font-size: 3.2em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-nohu__button {
      display: inline-block;
      background: linear-gradient(45deg, #ff6b6b, #ee4c77);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-nohu__button:hover {
      background: linear-gradient(45deg, #ee4c77, #ff6b6b);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-nohu__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: pulse 2s infinite;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

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

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

    .page-nohu__section--dark {
      background-color: #2b2b4a;
    }

    .page-nohu__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-nohu__text-content {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: #e0e0e0;
      text-align: left;
    }

    .page-nohu__text-content p {
      margin-bottom: 1em;
    }

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

    .page-nohu__game-card {
      background-color: #2b2b4a;
      border-radius: 15px;
      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: left;
      border: 1px solid #4a4a75;
    }

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

    .page-nohu__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-nohu__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-nohu__game-card-content {
      padding: 20px;
    }

    .page-nohu__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

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

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

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

    .page-nohu__game-card-button {
      display: inline-block;
      background-color: #ff6b6b;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-nohu__game-card-button:hover {
      background-color: #ee4c77;
    }

    .page-nohu__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-nohu__provider-logo {
      background-color: #ffffff;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
    }

    .page-nohu__provider-logo:hover {
      transform: translateY(-5px);
    }

    .page-nohu__provider-logo-image {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-nohu__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-nohu__faq-item {
      background-color: #2b2b4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid #4a4a75;
    }

    .page-nohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5e;
      border-radius: 10px;
      transition: background-color 0.3s ease;
    }

    .page-nohu__faq-question:hover {
      background-color: #4a4a75;
    }

    .page-nohu__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-nohu__faq-toggle {
      font-size: 1.5em;
      color: #ffcc00;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-nohu__faq-item.active .page-nohu__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or similar */
    }

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

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

    .page-nohu__promotion-card {
      background-color: #3a3a5e;
      border-radius: 15px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      border: 1px solid #4a4a75;
    }

    .page-nohu__promotion-card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-nohu__promotion-card-text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-nohu__hero-title {
        font-size: 2.8em;
      }
      .page-nohu__hero-subtitle {
        font-size: 1.2em;
      }
      .page-nohu__section-title {
        font-size: 2em;
      }
      .page-nohu__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-nohu {
        padding-top: 100px !important; /* Cho mobile */
      }
      .page-nohu__hero-title {
        font-size: 2.2em;
      }
      .page-nohu__hero-subtitle {
        font-size: 1em;
      }
      .page-nohu__section {
        padding: 40px 0;
      }
      .page-nohu__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-nohu__text-content {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-nohu__game-grid {
        grid-template-columns: 1fr;
      }
      .page-nohu__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-nohu__game-card-image-wrapper,
      .page-nohu__provider-logo {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-nohu__game-card-image,
      .page-nohu__provider-logo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-nohu__faq-question h3 {
        font-size: 1.1em;
      }
      .page-nohu__faq-answer {
        padding: 0 15px;
      }
      .page-nohu__faq-item.active .page-nohu__faq-answer {
        padding: 15px !important;
      }
    }
  