
      /* style/44king88.css */
      :root {
        --primary-color: #2563eb;
        --secondary-color: #64748b;
        --text-dark: #333333;
        --text-light: #ffffff;
        --background-light: #f8f9fa;
        --background-dark: #1a202c;
        --accent-yellow: #ffc107;
      }

      /* body đã padding-top: var(--header-offset) từ shared.css; không lặp lại ở đây */
      .page-44king88 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--background-light);
        padding-bottom: 80px; /* Khoảng trống cho nút nổi */
      }

      .page-44king88__hero-section {
        position: relative;
        width: 100%;
        text-align: center;
        padding: 10px 0 40px 0; /* Chỉ một khoảng nhỏ trên cùng */
        background-color: var(--background-dark);
        color: var(--text-light);
      }

      .page-44king88__hero-image-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
      }

      .page-44king88__hero-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .page-44king88__hero-content {
        max-width: 900px;
        margin: 20px auto 0 auto;
        padding: 0 20px;
      }

      .page-44king88__hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        font-weight: 700;
        color: var(--accent-yellow);
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      }

      .page-44king88__hero-content p {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 25px;
        color: #e0e0e0;
      }

      .page-44king88__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
      }

      .page-44king88__cta-button:hover {
        background-color: #1e40af;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      }

      .page-44king88__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
        text-align: center;
      }

      .page-44king88__section--dark {
        background-color: var(--background-dark);
        color: var(--text-light);
      }

      .page-44king88__section h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        color: var(--primary-color);
        margin-bottom: 30px;
        font-weight: 700;
      }

      .page-44king88__section--dark h2 {
        color: var(--accent-yellow);
      }

      .page-44king88__text-block {
        margin-bottom: 40px;
        font-size: 1.1rem;
        text-align: left;
      }

      .page-44king88__text-block h3 {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        color: var(--primary-color);
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
      }

      .page-44king88__text-block--dark h3 {
        color: var(--text-light);
      }

      .page-44king88__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
      }

      .page-44king88__game-card {
        background-color: var(--text-light);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: var(--text-dark);
      }

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

      .page-44king88__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
      }

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

      .page-44king88__game-card h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 600;
      }

      .page-44king88__game-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
      }

      .page-44king88__promo-card {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
        text-align: center;
      }

      .page-44king88__promo-card h3 {
        color: var(--accent-yellow);
        font-size: 1.8rem;
        margin-bottom: 15px;
      }

      .page-44king88__promo-card p {
        font-size: 1.1rem;
        margin-bottom: 25px;
      }

      .page-44king88__app-download-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
      }

      .page-44king88__app-image {
        max-width: 300px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      }

      .page-44king88__app-features {
        list-style: none;
        padding: 0;
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
      }

      .page-44king88__app-features li {
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%232563eb"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
        background-size: 20px;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 1.05rem;
      }

      .page-44king88__faq-list {
        margin-top: 40px;
        text-align: left;
      }

      .page-44king88__faq-item {
        background-color: var(--text-light);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
      }

      .page-44king88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary-color);
        cursor: pointer;
        user-select: none;
        background-color: #e3f2fd;
        border-bottom: 1px solid #d1e7fd;
      }

      .page-44king88__faq-question h3 {
        margin: 0;
        pointer-events: none; /* Ngăn chặn click event trên h3 */
        color: inherit;
      }

      .page-44king88__faq-toggle {
        font-size: 1.8rem;
        line-height: 1;
        font-weight: 300;
        pointer-events: none; /* Ngăn chặn click event trên toggle icon */
        transition: transform 0.3s ease;
      }

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

      .page-44king88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-dark);
        text-align: left;
        font-size: 1rem;
      }

      .page-44king88__faq-item.active .page-44king88__faq-answer {
        max-height: 2000px !important; /* Đảm bảo đủ cao cho nội dung */
        padding: 20px 25px !important;
        opacity: 1;
      }

      .page-44king88__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--accent-yellow);
        color: var(--background-dark);
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 40px);
        box-sizing: border-box;
      }

      .page-44king88__floating-button:hover {
        background-color: #ffda6a;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      }

      .page-44king88__floating-button-icon {
        width: 24px;
        height: 24px;
        fill: var(--background-dark);
      }

      .page-44king88__video-section {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 20px 60px 20px;
        box-sizing: border-box;
        text-align: center;
      }

      .page-44king88__video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 30px;
      }

      .page-44king88__video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        cursor: pointer;
      }

      /* Mobile responsiveness */
      @media (max-width: 768px) {
        .page-44king88__hero-section {
          padding: 10px 0 30px 0;
        }

        .page-44king88__hero-content {
          padding: 0 15px;
        }

        .page-44king88__hero-content h1 {
          font-size: 1.8rem;
        }

        .page-44king88__hero-content p {
          font-size: 1rem;
        }

        .page-44king88__cta-button {
          padding: 12px 25px;
          font-size: 1rem;
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          white-space: normal !important;
          word-wrap: break-word !important;
          margin: 0 auto;
          display: block;
        }

        .page-44king88__section {
          padding: 40px 15px;
        }

        .page-44king88__section h2 {
          font-size: 1.8rem;
        }

        .page-44king88__text-block {
          font-size: 1rem;
        }

        .page-44king88__text-block h3 {
          font-size: 1.4rem;
        }

        .page-44king88__game-grid {
          grid-template-columns: 1fr;
        }

        .page-44king88__game-card h3 {
          font-size: 1.2rem;
        }

        .page-44king88__promo-card {
          padding: 25px;
        }

        .page-44king88__promo-card h3 {
          font-size: 1.5rem;
        }

        .page-44king88__promo-card p {
          font-size: 1rem;
        }

        .page-44king88__app-image {
          max-width: 250px;
        }

        .page-44king88__app-features li {
          font-size: 0.95rem;
        }

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

        .page-44king88__faq-answer {
          padding: 15px 20px !important;
          font-size: 0.95rem;
        }

        .page-44king88__floating-button {
          bottom: 15px;
          right: 15px;
          font-size: 0.9rem;
          padding: 10px 15px;
          max-width: calc(100% - 30px);
        }

        .page-44king88 img,
        .page-44king88 video {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
          display: block !important;
          box-sizing: border-box !important;
        }

        .page-44king88__hero-image-container,
        .page-44king88__video-section,
        .page-44king88__video-wrapper,
        .page-44king88__section,
        .page-44king88__game-grid,
        .page-44king88__app-download-section,
        .page-44king88__faq-list,
        .page-44king88__cta-buttons {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          overflow-x: hidden !important;
          padding-left: 15px;
          padding-right: 15px;
        }

        .page-44king88__app-download-section,
        .page-44king88__cta-buttons {
          flex-direction: column;
          gap: 15px;
        }

        .page-44king88__game-card,
        .page-44king88__faq-item {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
        }

        .page-44king88__app-features {
          padding-left: 0;
        }

        .page-44king88__app-features li {
          padding-left: 25px;
        }
      }
    