
    /* Tổng quan */
    .page-pg66nohu {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      background-color: #f4f7f6;
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    /* Hero Section */
    .page-pg66nohu__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      background-color: #0d47a1;
      color: #fff;
      padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      padding-bottom: 20px;
    }

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

    .page-pg66nohu__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-pg66nohu__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffeb3b;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-pg66nohu__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

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

    .page-pg66nohu__hero-button:hover {
      background-color: #e64a19;
      transform: translateY(-2px);
    }

    /* Floating CTA Button */
    .page-pg66nohu__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #e91e63;
      padding: 15px 10px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transform: translateY(0);
      transition: transform 0.3s ease-in-out;
    }

    .page-pg66nohu__floating-cta:hover {
      transform: translateY(-5px);
    }

    .page-pg66nohu__floating-cta-link {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      display: block;
      animation: pulse 1.5s infinite;
    }

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

    /* Content Sections */
    .page-pg66nohu__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-pg66nohu__section-title {
      font-size: 2em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-pg66nohu__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ff5722;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-pg66nohu__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: justify;
      margin-bottom: 20px;
    }

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

    .page-pg66nohu__game-card {
      background-color: #fcfcfc;
      border-radius: 10px;
      box-shadow: 0 4px 15px 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;
      height: 100%;
    }

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

    .page-pg66nohu__game-card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .page-pg66nohu__game-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-pg66nohu__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-pg66nohu__game-title {
      font-size: 1.3em;
      color: #0d47a1;
      padding: 15px 10px;
      margin-top: auto;
      font-weight: bold;
    }

    .page-pg66nohu__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    /* Provider Section */
    .page-pg66nohu__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-pg66nohu__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.2s ease;
    }

    .page-pg66nohu__provider-logo-container:hover {
      transform: translateY(-3px);
    }

    .page-pg66nohu__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      max-height: 80px; /* Giới hạn chiều cao cho logo nhà cung cấp */
      object-fit: contain;
    }

    /* FAQ Section */
    .page-pg66nohu__faq-list {
      margin-top: 30px;
    }

    .page-pg66nohu__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .page-pg66nohu__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #e0e7f1;
      color: #0d47a1;
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid #d0d7e1;
      transition: background-color 0.3s ease;
    }

    .page-pg66nohu__faq-question:hover {
      background-color: #c9d6e7;
    }

    .page-pg66nohu__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      color: #0d47a1;
    }

    .page-pg66nohu__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }

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

    .page-pg66nohu__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #fefefe;
      color: #444;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-pg66nohu__hero-title {
        font-size: 1.8em;
      }

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

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

      .page-pg66nohu__section {
        padding: 25px 10px;
      }

      .page-pg66nohu__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

      .page-pg66nohu__text-content {
        font-size: 1em;
      }

      .page-pg66nohu__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-pg66nohu__provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .page-pg66nohu__floating-cta-link {
        font-size: 1.1em;
      }

      .page-pg66nohu__faq-question {
        font-size: 1em;
        padding: 15px 15px;
      }

      .page-pg66nohu__faq-answer {
        font-size: 0.9em;
      }
      /* Ensure images are responsive on mobile */
      .page-pg66nohu img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-pg66nohu__hero-image-container,
      .page-pg66nohu__game-image-container,
      .page-pg66nohu__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  