
    /* Reset và cơ bản */
    .page-44king88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      padding: 0;
      margin: 0;
      overflow-x: hidden; /* Ngăn cuộn ngang */
    }

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

    .page-44king88__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-44king88__section--dark {
      background-color: #2a3a4c;
      color: #e0e0e0;
    }

    .page-44king88__section-title {
      text-align: center;
      color: #0056b3;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-44king88__section--dark .page-44king88__section-title {
      color: #fddb00;
    }

    .page-44king88__text-center {
      text-align: center;
    }

    .page-44king88__button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-44king88__button:hover {
      background-color: #0056b3;
    }

    .page-44king88__button--yellow {
      background-color: #fddb00;
      color: #333;
    }

    .page-44king88__button--yellow:hover {
      background-color: #e0c200;
    }

    /* Hero Section */
    .page-44king88__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* Khoảng trống cho header cố định */
      padding-bottom: 60px;
      overflow: hidden;
      background-color: #0a192f; /* Màu nền dự phòng */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-44king88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Làm tối ảnh nền để chữ dễ đọc hơn */
    }

    .page-44king88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-44king88__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fddb00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-44king88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Login Button */
    .page-44king88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      animation: page-44king88__pulse 2s infinite;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .page-44king88__floating-button:hover {
      background-color: #e63900;
    }

    @keyframes page-44king88__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories */
    .page-44king88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0;
      list-style: none;
      margin: 0;
    }

    .page-44king88__game-item {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Đảm bảo chiếm toàn bộ chiều rộng trong ô lưới */
    }

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

    .page-44king88__game-image {
      width: 100%;
      height: 200px; /* Đảm bảo kích thước tối thiểu 200px */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #e0e0e0;
      max-width: 100%; /* Ảnh responsive */
    }

    .page-44king88__game-title {
      font-size: 1.5em;
      color: #0056b3;
      margin: 15px 10px 10px;
    }

    .page-44king88__game-description {
      padding: 0 15px 15px;
      color: #555;
      font-size: 0.95em;
    }

    /* Benefits Section */
    .page-44king88__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0;
      list-style: none;
      margin: 0;
    }

    .page-44king88__benefit-item {
      background-color: #e6f7ff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      width: 100%;
    }

    .page-44king88__benefit-icon {
      width: 200px; /* Kích thước tối thiểu 200x200px */
      height: 200px; /* Kích thước tối thiểu 200x200px */
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-44king88__benefit-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-44king88__benefit-description {
      color: #555;
      font-size: 0.95em;
    }

    /* Guide Section */
    .page-44king88__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0;
      list-style: none;
      margin: 0;
    }

    .page-44king88__guide-step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f8f8f8;
      border-left: 5px solid #007bff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
    }

    .page-44king88__guide-step-number {
      font-size: 2em;
      font-weight: bold;
      color: #007bff;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-44king88__guide-step-content {
      flex-grow: 1;
    }

    .page-44king88__guide-step-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 5px;
    }

    .page-44king88__guide-step-description {
      color: #555;
    }

    /* Promotions Section */
    .page-44king88__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      margin-top: 20px;
      border: 2px solid #fddb00;
    }

    .page-44king88__promo-title {
      font-size: 2em;
      color: #ff4500;
      margin-bottom: 15px;
    }

    .page-44king88__promo-description {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-44king88__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-44king88__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

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

    .page-44king88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn chặn việc chọn văn bản gây nhiễu với sự kiện click */
      color: inherit; /* Kế thừa màu từ phần tử cha */
    }

    .page-44king88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn biểu tượng toggle gây nhiễu với sự kiện click */
    }

    .page-44king88__faq-item.active .page-44king88__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    .page-44king88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Đệm ban đầu */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #e6f7ff;
    }

    .page-44king88__faq-item.active .page-44king88__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để hiển thị nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

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

      .page-44king88__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-44king88__section-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-44king88__hero-title {
        font-size: 2.2em;
      }

      .page-44king88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-44king88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-44king88__game-grid,
      .page-44king88__benefits-grid {
        grid-template-columns: 1fr; /* Một cột trên di động */
      }

      .page-44king88__game-item,
      .page-44king88__benefit-item,
      .page-44king88__guide-step-item,
      .page-44king88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      /* Đảm bảo các danh sách responsive */
      .page-44king88__game-grid,
      .page-44king88__benefits-grid,
      .page-44king88__guide-steps,
      .page-44king88__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          padding: 0 !important; /* Xóa bất kỳ padding mặc định nào có thể đẩy nội dung */
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
      }

      .page-44king88__game-image {
        height: 180px;
        max-width: 100%;
        height: auto;
      }

      .page-44king88__promo-title {
        font-size: 1.8em;
      }

      .page-44king88__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-44king88__faq-question h3 {
        font-size: 1em;
      }

      .page-44king88__faq-answer {
        padding: 15px 15px !important; /* Điều chỉnh đệm cho di động */
      }
    }

    @media (max-width: 480px) {
      .page-44king88__hero-title {
        font-size: 1.8em;
      }
      .page-44king88__hero-subtitle {
        font-size: 1em;
      }
      .page-44king88__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    /* Ảnh responsive mặc định cho tất cả ảnh */
    .page-44king88 img {
        max-width: 100%;
        height: auto;
        display: block; /* Xóa khoảng trống thừa bên dưới ảnh */
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-44king88 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

  