
    :root {
      --kingph-primary: #FFD700; /* Gold */
      --kingph-secondary: #000000; /* Black */
      --kingph-accent: #FF4500; /* OrangeRed */
      --kingph-text-light: #F8F8F8;
      --kingph-text-dark: #333333;
      --kingph-bg-dark: #1a1a1a;
      --kingph-bg-light: #ffffff;
      --kingph-border-color: #444444;
    }

    .page-kingph-com-3 {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-text-light);
      background-color: var(--kingph-bg-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding */
    }

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

    .page-kingph-com-3__hero-section {
      text-align: center;
      padding: 10px 20px 60px; /* Added 10px padding-top, relying on body for main offset */
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('[GALLERY:hero:1920x1080:casino_lobby,philippines,gaming_platform]') no-repeat center center/cover;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__hero-section {
        padding: 10px 15px 40px;
      }
    }

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

    .page-kingph-com-3__hero-subtitle {
      font-size: 1.5em;
      color: var(--kingph-text-light);
      margin-bottom: 30px;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__hero-subtitle {
        font-size: 1.1em;
      }
    }

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

    .page-kingph-com-3__cta-button:hover {
      background-color: #e63900; /* Slightly darker orange */
    }

    .page-kingph-com-3__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-kingph-com-3__section--light {
      background-color: var(--kingph-bg-light);
      color: var(--kingph-text-dark);
    }

    .page-kingph-com-3__section--dark {
      background-color: var(--kingph-bg-dark);
      color: var(--kingph-text-light);
    }

    .page-kingph-com-3__heading {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--kingph-primary);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__heading {
        color: var(--kingph-accent);
        text-shadow: none;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__heading {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
    }

    .page-kingph-com-3__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__text-content {
        font-size: 1em;
      }
    }

    .page-kingph-com-3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-kingph-com-3__card {
      background-color: var(--kingph-secondary);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__card {
      background-color: #f0f0f0;
      color: var(--kingph-text-dark);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-kingph-com-3__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-com-3__card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #222;
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__card-image-wrapper {
      background-color: #e0e0e0;
    }

    .page-kingph-com-3__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      min-height: 200px; /* Ensure image covers the wrapper height */
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-com-3__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }


    .page-kingph-com-3__card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-kingph-com-3__card-title {
      font-size: 1.5em;
      color: var(--kingph-primary);
      margin-bottom: 15px;
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__card-title {
      color: var(--kingph-accent);
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__card-title {
        font-size: 1.2em;
      }
    }

    .page-kingph-com-3__card-description {
      font-size: 1em;
      color: var(--kingph-text-light);
      margin-bottom: 20px;
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__card-description {
      color: var(--kingph-text-dark);
    }

    .page-kingph-com-3__card-button {
      background-color: var(--kingph-accent);
      color: var(--kingph-text-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start; /* Align button to start */
    }

    .page-kingph-com-3__card-button:hover {
      background-color: #e63900;
    }

    .page-kingph-com-3__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    .page-kingph-com-3__list-item {
      background-color: var(--kingph-secondary);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important;
    }
    .page-kingph-com-3__section--light .page-kingph-com-3__list-item {
      background-color: #f0f0f0;
      color: var(--kingph-text-dark);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-break: break-word !important; /* For long keywords */
      }
    }

    .page-kingph-com-3__list-icon {
      flex-shrink: 0;
      width: 48px; /* Minimum 200x200 for images, but this is a conceptual icon area */
      height: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--kingph-primary);
      font-size: 1.8em;
      border-radius: 50%;
      background-color: rgba(255, 215, 0, 0.2);
    }
    .page-kingph-com-3__list-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    /* FAQ Section Styles */
    .page-kingph-com-3__faq-section {
      padding: 60px 0;
      background-color: var(--kingph-bg-dark);
      color: var(--kingph-text-light);
    }
    .page-kingph-com-3__faq-heading {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--kingph-primary);
      text-align: center;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__faq-heading {
        font-size: 1.8em;
      }
    }

    .page-kingph-com-3__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-kingph-com-3__faq-item {
      background-color: var(--kingph-secondary);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }
    .page-kingph-com-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }
    .page-kingph-com-3__faq-question:hover {
      background-color: #3a3a3a;
    }
    .page-kingph-com-3__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--kingph-primary);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__faq-question {
        padding: 15px 20px;
      }
      .page-kingph-com-3__faq-question h3 {
        font-size: 1.1em;
      }
    }
    .page-kingph-com-3__faq-toggle {
      font-size: 1.8em;
      color: var(--kingph-accent);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
      line-height: 1; /* Adjust line-height to center '+' or '-' vertically */
    }
    .page-kingph-com-3__faq-item.active .page-kingph-com-3__faq-toggle {
      transform: rotate(45deg); /* Rotates '+' to 'x' or similar, visually indicating open */
    }
    .page-kingph-com-3__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(--kingph-text-light);
    }
    .page-kingph-com-3__faq-item.active .page-kingph-com-3__faq-answer {
      max-height: 2000px !important; /* Large enough to contain any answer */
      padding: 20px 25px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__faq-answer {
        padding: 0 20px;
      }
      .page-kingph-com-3__faq-item.active .page-kingph-com-3__faq-answer {
        padding: 15px 20px !important;
      }
    }

    .page-kingph-com-3__promo-banner {
      background-color: var(--kingph-primary);
      color: var(--kingph-text-dark);
      padding: 40px 20px;
      text-align: center;
      margin-top: 60px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__promo-banner {
        padding: 30px 15px;
        margin-top: 40px;
      }
    }

    .page-kingph-com-3__promo-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--kingph-secondary);
      text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__promo-title {
        font-size: 2em;
      }
    }

    .page-kingph-com-3__promo-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--kingph-text-dark);
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__promo-text {
        font-size: 1em;
      }
    }

    .page-kingph-com-3__promo-button {
      background-color: var(--kingph-accent);
      color: var(--kingph-text-light);
      padding: 18px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-com-3__promo-button:hover {
      background-color: #e63900;
    }

    .page-kingph-com-3__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }
    @media (max-width: 768px) {
      .page-kingph-com-3__payment-providers {
        gap: 15px;
      }
    }

    .page-kingph-com-3__payment-logo {
      width: 120px;
      height: 60px;
      background-color: var(--kingph-bg-light);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
    .page-kingph-com-3__payment-logo img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }
  