
    /* Global styles for the page content */
    .page-kingph-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Decorative top padding, assuming body handles --header-offset */
    }

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

    .page-kingph-2__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-kingph-2__heading-primary {
      font-size: 2.8em;
      color: #b80000; /* Dark red for emphasis */
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-kingph-2__heading-secondary {
      font-size: 2em;
      color: #333;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
    }

    .page-kingph-2__text-center {
      text-align: center;
    }

    .page-kingph-2__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-kingph-2__button {
      display: inline-block;
      background-color: #b80000;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      margin-top: 20px;
    }

    .page-kingph-2__button:hover {
      background-color: #8c0000;
    }

    /* Hero Section */
    .page-kingph-2__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #f0f2f5 0%, #e0e5eb 100%);
      border-radius: 8px;
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-kingph-2__hero-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      box-sizing: border-box;
    }

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

    .page-kingph-2__game-card {
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

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

    .page-kingph-2__game-title {
      font-size: 1.3em;
      color: #b80000;
      margin: 15px 10px 10px;
      font-weight: 600;
    }

    .page-kingph-2__game-provider {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-kingph-2__promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      background-color: #fdfdfd;
      box-sizing: border-box;
    }

    .page-kingph-2__promo-item:last-child {
      margin-bottom: 0;
    }

    .page-kingph-2__promo-icon {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      margin-right: 20px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-kingph-2__promo-content {
      flex-grow: 1;
    }

    .page-kingph-2__promo-title {
      font-size: 1.4em;
      color: #b80000;
      margin-bottom: 8px;
    }

    .page-kingph-2__promo-description {
      font-size: 1em;
      color: #666;
    }

    /* Payment Methods */
    .page-kingph-2__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-kingph-2__payment-method {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      background-color: #fefefe;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-kingph-2__payment-image {
      width: 80px;
      height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-kingph-2__payment-name {
      font-size: 0.9em;
      color: #555;
      font-weight: 500;
    }

    /* FAQ Section */
    .page-kingph-2__faq-list {
      margin-top: 30px;
    }

    .page-kingph-2__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-kingph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #b80000;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      font-size: 1.2em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kingph-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-kingph-2__faq-item.active .page-kingph-2__faq-question {
      background-color: #8c0000;
    }

    .page-kingph-2__faq-item.active .page-kingph-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - if using a different char) */
    }

    .page-kingph-2__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.3s ease;
      background-color: #fdfdfd;
      color: #333;
      box-sizing: border-box;
    }

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

    .page-kingph-2__faq-answer p {
      margin-bottom: 1em;
    }
    .page-kingph-2__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Call to Action */
    .page-kingph-2__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #b80000;
      color: #fff;
      border-radius: 8px;
      margin-top: 30px;
      box-sizing: border-box;
    }

    .page-kingph-2__cta-heading {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-kingph-2__cta-text {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-kingph-2__cta-button {
      background-color: #fff;
      color: #b80000;
      padding: 15px 35px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.2em;
    }

    .page-kingph-2__cta-button:hover {
      background-color: #eee;
      color: #8c0000;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-kingph-2__container {
        padding: 15px;
      }

      .page-kingph-2__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-kingph-2__heading-primary {
        font-size: 2em;
      }

      .page-kingph-2__heading-secondary {
        font-size: 1.6em;
      }

      .page-kingph-2__paragraph {
        font-size: 1em;
      }

      .page-kingph-2__hero-section {
        padding: 40px 15px;
      }

      .page-kingph-2__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-kingph-2__game-image {
        height: 180px;
      }

      .page-kingph-2__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }

      .page-kingph-2__promo-icon {
        margin: 0 auto 15px auto;
      }

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

      .page-kingph-2__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-kingph-2__payment-image {
        width: 70px;
        height: 45px;
      }

      .page-kingph-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

      .page-kingph-2__faq-answer {
        padding: 0 20px;
      }

      .page-kingph-2__faq-item.active .page-kingph-2__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-2__cta-section {
        padding: 40px 15px;
      }

      .page-kingph-2__cta-heading {
        font-size: 1.8em;
      }

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

      .page-kingph-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Image responsiveness for mobile */
      .page-kingph-2__hero-image,
      .page-kingph-2__game-image,
      .page-kingph-2__promo-icon,
      .page-kingph-2__payment-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item mobile responsiveness - although most are cards, apply to any potential ul/ol li */
      .page-kingph-2__faq-list,
      .page-kingph-2__game-grid,
      .page-kingph-2__payment-grid {
        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-2__game-card,
      .page-kingph-2__promo-item,
      .page-kingph-2__payment-method,
      .page-kingph-2__faq-item {
        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;
      }
    }
  