
    /* Tổng quan */
    .page-qq8827 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi nút nổi */
    }

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

    /* Tiêu đề chung */
    .page-qq8827 h1,
    .page-qq8827 h2,
    .page-qq8827 h3 {
      color: #0056b3;
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-qq8827 h1 {
      font-size: 2.5em;
      margin-top: 20px;
    }

    .page-qq8827 h2 {
      font-size: 2em;
      border-bottom: 2px solid #007bff;
      padding-bottom: 10px;
      margin-top: 40px;
    }

    .page-qq8827 h3 {
      font-size: 1.5em;
      margin-top: 30px;
    }

    /* Hero Section */
    .page-qq8827__hero-section {
      position: relative;
      text-align: center;
      background-color: #e0f2f7;
      padding: 10px 0 40px; /* padding-top để tránh header cố định */
      overflow: hidden; /* Đảm bảo banner không tràn */
    }

    .page-qq8827__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-qq8827__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    /* Nút nổi Đăng Nhập */
    .page-qq8827__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 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;
      cursor: pointer;
      min-width: 200px; /* Đảm bảo kích thước tối thiểu */
      max-width: 90%; /* Giới hạn chiều rộng trên di động */
      left: 50%;
      transform: translateX(-50%);
      right: auto;
    }

    .page-qq8827__floating-button:hover {
      background-color: #e63e00;
      transform: translateX(-50%) scale(1.05);
    }

    /* Giới thiệu */
    .page-qq8827__intro-section {
      background-color: #fff;
      padding: 30px 0;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 30px;
    }

    .page-qq8827__intro-section p {
      text-align: justify;
      margin-bottom: 15px;
      color: #555;
    }

    /* Danh mục trò chơi */
    .page-qq8827__game-categories {
      padding: 30px 0;
      background-color: #eef7ff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-qq8827__game-item {
      background-color: #fff;
      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;
      text-align: center;
      text-decoration: none;
      color: #333;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

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

    .page-qq8827__game-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
      min-width: 200px;
      min-height: 150px;
    }

    .page-qq8827__game-title {
      font-weight: bold;
      font-size: 1.1em;
      color: #0056b3;
      margin-top: 10px;
      pointer-events: none; /* Ngăn chặn tiêu đề chặn sự kiện click của thẻ a */
    }

    /* Khuyến mãi */
    .page-qq8827__promotions-section {
      padding: 30px 0;
      background-color: #fff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-qq8827__promotion-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-qq8827__promotion-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-qq8827__promotion-icon-wrapper {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 50%;
      background-color: #007bff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .page-qq8827__promotion-icon {
      width: 100%;
      height: auto;
      max-width: 200px;
      max-height: 200px;
      object-fit: contain;
      display: block;
    }

    .page-qq8827__promotion-content h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #007bff;
      text-align: left;
    }

    .page-qq8827__promotion-content p {
      margin-bottom: 0;
      color: #666;
    }

    /* Nhà cung cấp game */
    .page-qq8827__providers-section {
      padding: 30px 0;
      background-color: #eef7ff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .page-qq8827__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #fff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px;
    }

    .page-qq8827__provider-logo {
      width: 100%;
      height: auto;
      max-width: 200px; /* Đảm bảo kích thước tối thiểu cho gamelogo */
      max-height: 100px;
      object-fit: contain;
      display: block;
    }

    /* Tại sao chọn */
    .page-qq8827__why-choose-section {
      padding: 30px 0;
      background-color: #fff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-qq8827__why-choose-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .page-qq8827__why-choose-item {
      background-color: #f9f9f9;
      border-left: 5px solid #007bff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-qq8827__why-choose-item h3 {
      margin-top: 0;
      margin-bottom: 5px;
      color: #0056b3;
      text-align: left;
    }

    .page-qq8827__why-choose-item p {
      margin-bottom: 0;
      color: #666;
    }

    /* FAQ Section */
    .page-qq8827__faq-section {
      padding: 30px 0;
      background-color: #eef7ff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-qq8827__faq-list {
      margin-top: 30px;
    }

    .page-qq8827__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-qq8827__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #007bff;
      color: #fff;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-qq8827__faq-question:hover {
      background-color: #0056b3;
    }

    .page-qq8827__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      text-align: left;
      pointer-events: none; /* Ngăn chặn tiêu đề chặn sự kiện click */
    }

    .page-qq8827__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn biểu tượng chặn sự kiện click */
    }

    .page-qq8827__faq-item.active .page-qq8827__faq-toggle {
      transform: rotate(45deg); /* Dấu + xoay thành X hoặc - */
    }

    .page-qq8827__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: #f9f9f9;
      color: #333;
    }

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

    /* Call to Action */
    .page-qq8827__cta-section {
      text-align: center;
      padding: 40px 0;
      background-color: #007bff;
      color: #fff;
      margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-qq8827__cta-section h2 {
      color: #fff;
      border-bottom: none;
      margin-bottom: 20px;
    }

    .page-qq8827__cta-section p {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0f2f7;
    }

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

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

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

      .page-qq8827 h2 {
        font-size: 1.5em;
      }

      .page-qq8827 h3 {
        font-size: 1.2em;
      }

      .page-qq8827__hero-section {
        padding-top: 10px; /* Điều chỉnh padding cho di động */
      }

      .page-qq8827__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: auto;
        max-width: 90%;
      }

      .page-qq8827__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-qq8827__game-item {
        padding: 10px;
      }

      .page-qq8827__game-title {
        font-size: 1em;
      }

      .page-qq8827__promotion-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-qq8827__promotion-content h3 {
        text-align: center;
      }

      .page-qq8827__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-qq8827__game-image-wrapper,
      .page-qq8827__game-image,
      .page-qq8827__promotion-icon-wrapper,
      .page-qq8827__promotion-icon,
      .page-qq8827__provider-logo-wrapper,
      .page-qq8827__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-qq8827__provider-logo {
        max-width: 150px !important;
        min-width: 100px !important;
      }
      .page-qq8827__promotion-icon {
        max-width: 150px !important;
        min-width: 100px !important;
      }
      .page-qq8827__game-image {
        min-height: 100px !important;
      }
    }
  