
    :root {
      --page-kingph2025-primary-color: #f7b32b; /* Gold/Orange */
      --page-kingph2025-secondary-color: #2c3e50; /* Dark Blue */
      --page-kingph2025-accent-color: #e74c3c; /* Red */
      --page-kingph2025-text-color: #ecf0f1; /* Light Gray */
      --page-kingph2025-dark-text-color: #34495e; /* Darker Blue */
      --page-kingph2025-bg-dark: #1a252f;
      --page-kingph2025-bg-light: #2c3e50;
    }

    .page-kingph2025 {
      font-family: 'Arial', sans-serif;
      color: var(--page-kingph2025-text-color);
      background-color: var(--page-kingph2025-bg-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative top padding, assuming body already handles header offset */
    }

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

    .page-kingph2025__section--dark {
      background-color: var(--page-kingph2025-bg-light);
    }

    .page-kingph2025__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,philippines,mobile,slot]');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      box-sizing: border-box;
    }

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

    .page-kingph2025__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: white;
    }

    .page-kingph2025__button {
      background-color: var(--page-kingph2025-primary-color);
      color: var(--page-kingph2025-dark-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-kingph2025__button:hover {
      background-color: #f0a31a; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-kingph2025__button-secondary {
      background-color: var(--page-kingph2025-secondary-color);
      color: var(--page-kingph2025-text-color);
      border: 2px solid var(--page-kingph2025-primary-color);
      margin-left: 15px;
    }

    .page-kingph2025__button-secondary:hover {
      background-color: #3b5065;
      border-color: #f0a31a;
    }

    .page-kingph2025__heading {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-kingph2025-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-kingph2025__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-kingph2025-accent-color);
      border-radius: 2px;
    }

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

    .page-kingph2025__card {
      background-color: var(--page-kingph2025-bg-light);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-sizing: border-box;
      min-height: 350px; /* Ensure cards have similar height */
    }

    .page-kingph2025__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    }

    .page-kingph2025__card-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-kingph2025__card:hover .page-kingph2025__card-image {
      transform: scale(1.03);
    }

    .page-kingph2025__card-title {
      font-size: 1.5em;
      color: var(--page-kingph2025-primary-color);
      margin-bottom: 15px;
    }

    .page-kingph2025__card-text {
      font-size: 1em;
      color: var(--page-kingph2025-text-color);
      flex-grow: 1; /* Allow text to take available space */
    }

    .page-kingph2025__promo-banner {
      background-color: var(--page-kingph2025-accent-color);
      color: white;
      padding: 50px 20px;
      margin-top: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-kingph2025__promo-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: white;
    }

    .page-kingph2025__promo-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph2025__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-kingph2025__faq-item {
      background-color: var(--page-kingph2025-bg-light);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-kingph2025__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-kingph2025-secondary-color);
      color: var(--page-kingph2025-primary-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kingph2025__faq-question:hover {
      background-color: #3b5065;
    }

    .page-kingph2025__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--page-kingph2025-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-kingph2025__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-kingph2025-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

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

    .page-kingph2025__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(--page-kingph2025-text-color);
      font-size: 1em;
      text-align: left;
    }

    .page-kingph2025__faq-item.active .page-kingph2025__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-kingph2025__payment-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kingph2025__payment-item {
      background-color: var(--page-kingph2025-secondary-color);
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      color: var(--page-kingph2025-text-color);
      font-size: 1.1em;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-grow: 1;
      max-width: 200px;
      box-sizing: border-box;
    }

    .page-kingph2025__cta-section {
      background-color: var(--page-kingph2025-bg-light);
      padding: 60px 20px;
      margin-top: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-kingph2025__cta-title {
      font-size: 2.5em;
      color: var(--page-kingph2025-primary-color);
      margin-bottom: 20px;
    }

    .page-kingph2025__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-kingph2025__hero-title {
        font-size: 2.8em;
      }
      .page-kingph2025__hero-subtitle {
        font-size: 1.3em;
      }
      .page-kingph2025__heading {
        font-size: 2em;
      }
      .page-kingph2025__promo-title {
        font-size: 2.2em;
      }
      .page-kingph2025__promo-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-kingph2025__hero-section {
        padding: 60px 15px;
        min-height: 400px;
      }
      .page-kingph2025__hero-title {
        font-size: 2.2em;
        text-align: center;
      }
      .page-kingph2025__hero-subtitle {
        font-size: 1.1em;
        text-align: center;
      }
      .page-kingph2025__section {
        padding: 30px 15px;
      }
      .page-kingph2025__heading {
        font-size: 1.8em;
      }
      .page-kingph2025__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
      }
      .page-kingph2025__button-secondary {
        margin-left: 0;
      }
      .page-kingph2025__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-kingph2025__card {
        padding: 20px;
        min-height: auto;
      }
      .page-kingph2025__card-image {
        max-width: 200px;
      }
      .page-kingph2025__card-title {
        font-size: 1.3em;
      }
      .page-kingph2025__promo-banner {
        padding: 40px 15px;
      }
      .page-kingph2025__promo-title {
        font-size: 1.8em;
      }
      .page-kingph2025__promo-description {
        font-size: 1em;
      }
      .page-kingph2025__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-kingph2025__faq-question h3 {
        font-size: 1em;
      }
      .page-kingph2025__faq-toggle {
        font-size: 1.5em;
      }
      .page-kingph2025__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
      }
      .page-kingph2025__faq-item.active .page-kingph2025__faq-answer {
        padding: 15px 20px !important;
      }
      .page-kingph2025__payment-list {
        flex-direction: column;
        align-items: center;
      }
      .page-kingph2025__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph2025__cta-title {
        font-size: 2em;
      }
      .page-kingph2025__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph2025__hero-title {
        font-size: 1.8em;
      }
      .page-kingph2025__hero-subtitle {
        font-size: 0.9em;
      }
      .page-kingph2025__heading {
        font-size: 1.5em;
      }
      .page-kingph2025__promo-title {
        font-size: 1.5em;
      }
      .page-kingph2025__promo-description {
        font-size: 0.9em;
      }
      .page-kingph2025__cta-title {
        font-size: 1.8em;
      }
      .page-kingph2025__cta-description {
        font-size: 0.9em;
      }
    }
  