
    /* Tổng thể */
    .page-kingaz888 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Cho nút nổi */
    }

    /* Hero Section */
    .page-kingaz888__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Đảm bảo không bị che bởi header cố định */
      background-color: #004d40; /* Màu nền dự phòng nếu ảnh chưa tải */
    }

    .page-kingaz888__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      filter: brightness(0.8); /* Làm tối ảnh một chút để chữ nổi bật */
    }

    .page-kingaz888__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 90%;
      z-index: 10;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingaz888__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      font-weight: bold;
      color: #FFD700; /* Vàng rực rỡ */
      line-height: 1.2;
    }

    .page-kingaz888__hero-subtitle {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 20px;
    }

    /* Floating CTA Button */
    .page-kingaz888__floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #e53935; /* Đỏ rực rỡ */
      padding: 15px 10px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-kingaz888__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      max-width: 400px;
      box-sizing: border-box;
    }

    .page-kingaz888__cta-button:hover {
      background-color: #FFEB3B; /* Vàng sáng hơn */
      transform: translateY(-3px);
    }

    /* Content Sections */
    .page-kingaz888__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

    .page-kingaz888__section-dark {
      background-color: #004d40; /* Xanh đậm */
      color: #fff;
    }

    .page-kingaz888__section-title {
      font-size: 2.2em;
      color: #004d40;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-kingaz888__section-title--dark {
      color: #FFD700;
    }

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

    .page-kingaz888__section-title--dark::after {
      background-color: #fff;
    }

    .page-kingaz888__text-block {
      margin-bottom: 20px;
      font-size: 1.1em;
      text-align: justify;
    }

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

    .page-kingaz888__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-kingaz888__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-kingaz888__game-image-wrapper {
      width: 100%;
      height: 200px; /* Đảm bảo hình ảnh có chiều cao cố định */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

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

    .page-kingaz888__game-title {
      font-size: 1.4em;
      color: #004d40;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-kingaz888__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingaz888__game-cta {
      display: inline-block;
      background-color: #e53935;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-kingaz888__game-cta:hover {
      background-color: #c62828;
    }

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

    .page-kingaz888__feature-item {
      background-color: #e0f2f1; /* Xanh nhạt */
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-kingaz888__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
    }

    .page-kingaz888__feature-title {
      font-size: 1.5em;
      color: #004d40;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-kingaz888__feature-description {
      font-size: 1em;
      color: #333;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-kingaz888__faq-container {
      margin-top: 30px;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
    }

    .page-kingaz888__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-kingaz888__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-kingaz888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.2em;
      font-weight: bold;
      color: #004d40;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-kingaz888__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      color: inherit; /* Đảm bảo màu sắc được kế thừa từ cha */
    }

    .page-kingaz888__faq-question:hover {
      color: #e53935;
    }

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

    .page-kingaz888__faq-item.active .page-kingaz888__faq-toggle {
      transform: rotate(45deg); /* Biến dấu '+' thành 'x' hoặc '-' */
    }

    .page-kingaz888__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;
      color: #555;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingaz888__faq-item.active .page-kingaz888__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-kingaz888__hero-section {
        padding-top: 10px; /* Đảm bảo không bị che bởi header cố định trên mobile */
      }

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

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

      .page-kingaz888__floating-cta {
        padding: 10px;
      }

      .page-kingaz888__cta-button {
        font-size: 1em;
        padding: 12px 20px;
      }

      .page-kingaz888__section {
        padding: 20px 15px;
        margin-top: 15px;
      }

      .page-kingaz888__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-kingaz888__text-block {
        font-size: 1em;
      }

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

      .page-kingaz888__game-card {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingaz888__game-image-wrapper {
        height: 180px;
      }

      .page-kingaz888__game-title {
        font-size: 1.2em;
      }

      .page-kingaz888__game-description {
        font-size: 0.9em;
      }

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

      .page-kingaz888__feature-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-kingaz888__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
      }

      .page-kingaz888__feature-title {
        font-size: 1.3em;
      }

      .page-kingaz888__feature-description {
        font-size: 0.9em;
      }

      .page-kingaz888__faq-question {
        font-size: 1.1em;
        padding: 10px 0;
      }

      .page-kingaz888__faq-answer {
        padding: 15px 10px !important; /* Điều chỉnh padding cho mobile */
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-kingaz888__hero-title {
        font-size: 1.6em;
      }

      .page-kingaz888__hero-subtitle {
        font-size: 0.9em;
      }

      .page-kingaz888__cta-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }

      .page-kingaz888__section-title {
        font-size: 1.5em;
      }

      .page-kingaz888__game-image-wrapper {
        height: 150px;
      }
    }
  