
      .page-75king88 {
        font-family: 'Arial', sans-serif;
        color: #333333; /* Default dark text for light body background */
        line-height: 1.6;
        background-color: #f8f9fa;
      }

      .page-75king88__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 20px 40px;
        background-color: #ffffff;
        text-align: center;
      }

      .page-75king88__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 20px;
        border-radius: 10px;
      }

      .page-75king88__hero-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .page-75king88__hero-content h1 {
        font-size: clamp(2em, 5vw, 2.8em);
        color: #2563eb;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
      }

      .page-75king88__hero-content p {
        font-size: clamp(1em, 2.5vw, 1.1em);
        color: #64748b;
        margin-bottom: 25px;
      }

      .page-75king88__cta-button {
        display: inline-block;
        background-color: #2563eb;
        color: #ffffff;
        padding: 12px 28px;
        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(37, 99, 235, 0.3);
        border: none;
        cursor: pointer;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
      }

      .page-75king88__cta-button:hover {
        background-color: #1d4ed8;
        transform: translateY(-2px);
      }

      .page-75king88__section {
        padding: 60px 20px;
        background-color: #ffffff;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
      }

      .page-75king88__section--dark {
        background-color: #2563eb;
        color: #ffffff;
      }

      .page-75king88__section-title {
        font-size: clamp(1.8em, 4vw, 2.2em);
        color: #2563eb;
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
      }

      .page-75king88__section--dark .page-75king88__section-title {
        color: #ffffff;
      }

      .page-75king88__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 20px;
      }

      .page-75king88__game-card {
        background-color: #f0f8ff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }

      .page-75king88__game-card:hover {
        transform: translateY(-5px);
      }

      .page-75king88__game-card-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        display: block;
      }

      .page-75king88__game-card-title {
        font-size: 1.4em;
        color: #2563eb;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .page-75king88__game-card-description {
        font-size: 0.95em;
        color: #64748b;
        margin-bottom: 20px;
      }

      .page-75king88__game-card .page-75king88__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-75king88__app-download {
        text-align: center;
        padding: 60px 20px;
        background-color: #e0f2f7;
        border-radius: 8px;
        max-width: 1200px;
        margin: 20px auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      }

      .page-75king88__app-download h2 {
        color: #2563eb;
        margin-bottom: 20px;
        font-size: clamp(1.8em, 4vw, 2.2em);
      }

      .page-75king88__app-download p {
        color: #64748b;
        font-size: 1.1em;
        margin-bottom: 30px;
      }

      .page-75king88__app-image {
        max-width: 300px;
        height: auto;
        margin: 0 auto 30px;
        display: block;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      }

      .page-75king88__app-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .page-75king88__app-buttons .page-75king88__cta-button {
        min-width: 180px;
      }

      .page-75king88__info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
      }

      .page-75king88__info-card {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .page-75king88__info-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        display: block;
      }

      .page-75king88__info-card-title {
        font-size: 1.5em;
        color: #2563eb;
        margin-bottom: 15px;
        font-weight: 600;
      }

      .page-75king88__info-card-text {
        font-size: 1em;
        color: #64748b;
        margin-bottom: 20px;
      }

      .page-75king88__info-card .page-75king88__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-top: auto; /* Push button to bottom */
      }

      .page-75king88__faq-section {
        padding: 60px 20px;
        background-color: #f0f8ff;
        max-width: 1200px;
        margin: 20px auto;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      }

      .page-75king88__faq-section h2 {
        color: #2563eb;
        text-align: center;
        margin-bottom: 40px;
        font-size: clamp(1.8em, 4vw, 2.2em);
      }

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

      .page-75king88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.15em;
        font-weight: 600;
        color: #333333;
        cursor: pointer;
        user-select: none;
        background-color: #ffffff;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
      }

      .page-75king88__faq-question:hover {
        background-color: #f5f5f5;
      }

      .page-75king88__faq-item.active .page-75king88__faq-question {
        color: #2563eb;
        border-bottom-color: #2563eb;
      }

      .page-75king88__faq-qtext {
        pointer-events: none; /* Prevent text from blocking click */
      }

      .page-75king88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #2563eb;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
      }

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

      .page-75king88__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: #64748b;
        font-size: 1em;
      }

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

      .page-75king88__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ffc107; /* Enticing yellow */
        color: #333333;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 40px);
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        justify-content: center;
      }

      .page-75king88__floating-button:hover {
        background-color: #e0a800;
        transform: translateY(-3px);
      }

      @media (max-width: 768px) {
        .page-75king88 {
          font-size: 16px;
          line-height: 1.6;
        }

        .page-75king88__hero-section {
          padding: 10px 15px 30px;
        }

        .page-75king88__hero-content h1 {
          font-size: clamp(1.8em, 8vw, 2.5em);
        }

        .page-75king88__hero-content p {
          font-size: clamp(0.95em, 3.5vw, 1em);
        }

        .page-75king88__cta-button {
          padding: 10px 20px;
          font-size: 1em;
          width: 100% !important;
          margin-bottom: 10px;
        }

        .page-75king88__section {
          padding: 40px 15px;
          margin: 10px auto;
        }

        .page-75king88__section-title {
          font-size: clamp(1.6em, 7vw, 2em);
          margin-bottom: 25px;
        }

        .page-75king88__game-grid {
          grid-template-columns: 1fr;
          padding: 0;
        }

        .page-75king88__game-card {
          padding: 15px;
        }

        .page-75king88__game-card-title {
          font-size: 1.2em;
        }

        .page-75king88__app-download {
          padding: 40px 15px;
          margin: 10px auto;
        }

        .page-75king88__app-download h2 {
          font-size: clamp(1.6em, 7vw, 2em);
        }

        .page-75king88__app-buttons {
          flex-direction: column;
          gap: 15px;
        }

        .page-75king88__app-buttons .page-75king88__cta-button {
          width: 100% !important;
          min-width: unset;
        }

        .page-75king88__info-grid {
          grid-template-columns: 1fr;
          padding: 0;
        }

        .page-75king88__info-card {
          padding: 25px;
        }

        .page-75king88__faq-section {
          padding: 40px 15px;
          margin: 10px auto;
        }

        .page-75king88__faq-section h2 {
          font-size: clamp(1.6em, 7vw, 2em);
          margin-bottom: 30px;
        }

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

        .page-75king88__faq-answer {
          padding: 15px 20px !important;
        }

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

        /* Responsive image, video, button, list item styles */
        .page-75king88 img {
          max-width: 100% !important;
          height: auto !important;
          display: block !important;
        }

        .page-75king88 video {
          max-width: 100% !important;
          width: 100% !important;
          height: auto !important;
          display: block !important;
        }

        .page-75king88__section,
        .page-75king88__card,
        .page-75king88__container,
        .page-75king88__game-card,
        .page-75king88__info-card,
        .page-75king88__app-download,
        .page-75king88__faq-section,
        .page-75king88__video-container,
        .page-75king88__video-wrapper,
        .page-75king88__cta-buttons,
        .page-75king88__button-group,
        .page-75king88__btn-container,
        .page-75king88 ul,
        .page-75king88 ol {
          max-width: 100% !important;
          width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 15px;
          padding-right: 15px;
          overflow: hidden !important;
        }

        .page-75king88 ul, .page-75king88 ol {
          padding-left: 20px !important; /* Adjust for list bullets */
          padding-right: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
        }

        .page-75king88 li {
          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;
          word-break: break-word !important;
        }

        .page-75king88__video-section {
          padding-top: 10px !important; /* body handles header offset */
        }
      }
    