
    :root {
      --page-kingph-com-2-primary-color: #e63946; /* Red */
      --page-kingph-com-2-secondary-color: #f1faee; /* Light cream */
      --page-kingph-com-2-dark-color: #1d3557; /* Dark blue */
      --page-kingph-com-2-light-color: #a8dadc; /* Light blue */
      --page-kingph-com-2-accent-color: #457b9d; /* Medium blue */
      --page-kingph-com-2-text-color: #333;
      --page-kingph-com-2-light-text: #f1faee;
    }

    .page-kingph-com-2 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-kingph-com-2-text-color);
      line-height: 1.6;
      background-color: var(--page-kingph-com-2-secondary-color);
    }

    .page-kingph-com-2__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-kingph-com-2__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:casino,gaming,philippines,lights]') no-repeat center center/cover;
      color: var(--page-kingph-com-2-light-text);
      text-align: center;
      padding: 100px 20px 80px; /* Small decorative padding-top, body handles main offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

    .page-kingph-com-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-kingph-com-2-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-com-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-com-2__cta-button {
      display: inline-block;
      background-color: var(--page-kingph-com-2-primary-color);
      color: var(--page-kingph-com-2-light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-com-2__cta-button:hover {
      background-color: #c9303c;
      transform: translateY(-3px);
    }

    .page-kingph-com-2__section-title {
      font-size: 2.5em;
      color: var(--page-kingph-com-2-dark-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-kingph-com-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-kingph-com-2-primary-color);
      border-radius: 2px;
    }

    .page-kingph-com-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-kingph-com-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-kingph-com-2__game-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-kingph-com-2__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-kingph-com-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-kingph-com-2__game-title {
      font-size: 1.5em;
      color: var(--page-kingph-com-2-dark-color);
      margin-bottom: 10px;
      line-height: 1.3;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingph-com-2__game-description {
      font-size: 0.95em;
      color: var(--page-kingph-com-2-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-kingph-com-2__game-button {
      display: inline-block;
      background-color: var(--page-kingph-com-2-accent-color);
      color: var(--page-kingph-com-2-light-text);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-com-2__game-button:hover {
      background-color: #3b6b8b;
    }

    .page-kingph-com-2__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-kingph-com-2__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-com-2__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-kingph-com-2__feature-icon {
      width: 100%;
      height: 250px; /* Minimum 200x200 */
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-kingph-com-2__feature-title {
      font-size: 1.4em;
      color: var(--page-kingph-com-2-dark-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingph-com-2__feature-description {
      font-size: 1em;
      color: var(--page-kingph-com-2-text-color);
    }

    .page-kingph-com-2__promo-banner {
      background-color: var(--page-kingph-com-2-primary-color);
      color: var(--page-kingph-com-2-light-text);
      text-align: center;
      padding: 50px 20px;
      border-radius: 15px;
      margin-top: 50px;
    }

    .page-kingph-com-2__promo-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-com-2__promo-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-com-2__payment-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-kingph-com-2__provider-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      height: 120px; /* Ensure minimum height for image */
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-kingph-com-2__provider-logo {
      max-width: 100%;
      max-height: 90px;
      object-fit: contain;
      display: block;
      width: auto;
      height: auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
      box-sizing: border-box;
    }

    .page-kingph-com-2__faq-section {
      background-color: #fff;
      padding: 50px 20px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      margin-top: 50px;
    }

    .page-kingph-com-2__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .page-kingph-com-2__faq-item:last-child {
      border-bottom: none;
    }

    .page-kingph-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
    }

    .page-kingph-com-2__faq-question:hover {
      background-color: #f9f9f9;
      border-radius: 5px;
    }

    .page-kingph-com-2__faq-question h3 {
      font-size: 1.25em;
      color: var(--page-kingph-com-2-dark-color);
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingph-com-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-kingph-com-2-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-kingph-com-2__faq-item.active .page-kingph-com-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kingph-com-2__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: var(--page-kingph-com-2-text-color);
      font-size: 1.05em;
      text-align: left;
    }

    .page-kingph-com-2__faq-item.active .page-kingph-com-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kingph-com-2__hero-title {
        font-size: 2.5em;
      }

      .page-kingph-com-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-kingph-com-2__section-title {
        font-size: 2em;
      }

      .page-kingph-com-2__game-grid,
      .page-kingph-com-2__features-list,
      .page-kingph-com-2__payment-providers {
        grid-template-columns: 1fr;
      }

      .page-kingph-com-2__game-card,
      .page-kingph-com-2__feature-item,
      .page-kingph-com-2__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-kingph-com-2__game-image,
      .page-kingph-com-2__feature-icon,
      .page-kingph-com-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-kingph-com-2__hero-section {
        padding: 80px 15px 60px;
      }

      .page-kingph-com-2__promo-title {
        font-size: 2em;
      }

      .page-kingph-com-2__promo-text {
        font-size: 1em;
      }

      .page-kingph-com-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-kingph-com-2__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* Ensure all images are responsive and containers are handled */
    .page-kingph-com-2 img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    .page-kingph-com-2__game-card img,
    .page-kingph-com-2__feature-item img,
    .page-kingph-com-2__provider-item img {
        width: 100%; /* Ensure images fill their container width */
        height: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Or cover, depending on desired effect */
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }

    @media (max-width: 768px) {
        .page-kingph-com-2 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-kingph-com-2__game-card img,
        .page-kingph-com-2__feature-item img,
        .page-kingph-com-2__provider-item img {
            min-width: 200px !important; /* Ensure minimum size */
            min-height: 200px !important; /* Ensure minimum size */
        }
        .page-kingph-com-2__provider-item {
            padding: 10px;
            height: auto;
        }
    }

  