
    /* Page-specific styles for kingph 2025 */
    :root {
      --kingph-primary-color: #FFD700; /* Gold */
      --kingph-secondary-color: #1A202C; /* Dark Blue/Black */
      --kingph-accent-color: #E53E3E; /* Red, adjusted for contrast */
      --kingph-text-color: #E2E8F0; /* Light Gray */
      --kingph-dark-text-color: #000000; /* Black for contrast */
      --kingph-background-dark: #1A202C;
      --kingph-background-light: #2D3748;
      --kingph-border-color: #4A5568;
    }

    .page-kingph-2025 {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-text-color);
      background-color: var(--kingph-background-dark);
      line-height: 1.6;
    }

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

    /* Hero Section */
    .page-kingph-2025__hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:kingph 2025,casino,gaming,lights]') center center / cover no-repeat;
      padding: 10px 20px 80px; /* 10px top padding for fixed header offset */
      text-align: center;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      position: relative;
      box-sizing: border-box;
    }

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

    .page-kingph-2025__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--kingph-text-color);
    }

    .page-kingph-2025__promo-button {
      display: inline-block;
      background-color: #CC0000; /* Darker red for better contrast with white text (4.5:1) */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-kingph-2025__promo-button:hover {
      background-color: #A30000; /* Even darker on hover */
    }

    /* Section Styling */
    .page-kingph-2025__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--kingph-background-light);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-kingph-2025__section--dark {
      background-color: var(--kingph-background-dark);
    }

    .page-kingph-2025__section-title {
      font-size: 2.5em;
      color: var(--kingph-primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    /* Text Content */
    .page-kingph-2025__text-content {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: var(--kingph-text-color);
    }

    /* Features Grid */
    .page-kingph-2025__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-2025__feature-item {
      background-color: var(--kingph-background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-align: left;
      border: 1px solid var(--kingph-border-color);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-kingph-2025__feature-icon {
      width: 100%;
      max-width: 250px; /* Minimum 200px requirement met */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

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

    /* Game Providers Section */
    .page-kingph-2025__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min 200px width for images */
      gap: 20px;
      margin-top: 40px;
    }

    .page-kingph-2025__provider-logo {
      width: 100%;
      max-width: 250px; /* Ensure minimum 200px width/height */
      min-width: 200px; /* Explicit min-width */
      min-height: 200px; /* Explicit min-height */
      height: auto;
      object-fit: contain; /* Ensure logos fit without cropping */
      border-radius: 5px;
      display: block;
      margin: 0 auto;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      padding: 10px; /* Add padding to contain if needed */
      background-color: #fff; /* Ensure logos are visible on dark background */
    }

    .page-kingph-2025__provider-logo:hover {
      transform: scale(1.05);
    }

    /* Promotion Section */
    .page-kingph-2025__promotion-card {
      background-color: var(--kingph-background-light);
      padding: 30px;
      border-radius: 8px;
      border: 1px solid var(--kingph-border-color);
      margin-top: 40px;
      text-align: center;
    }

    .page-kingph-2025__promotion-title {
      font-size: 2em;
      color: var(--kingph-accent-color);
      margin-bottom: 20px;
    }

    .page-kingph-2025__promotion-description {
      font-size: 1.1em;
      color: var(--kingph-text-color);
      margin-bottom: 30px;
    }

    /* Call to Action */
    .page-kingph-2025__cta-section {
      background-color: var(--kingph-primary-color);
      padding: 60px 20px;
      text-align: center;
      color: var(--kingph-dark-text-color);
      border-radius: 8px;
      margin-top: 20px;
    }

    .page-kingph-2025__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-kingph-2025__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-2025__cta-button {
      background-color: #CC0000; /* Darker red for better contrast with white text */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-kingph-2025__cta-button:hover {
      background-color: #A30000; /* Even darker on hover */
    }

    /* FAQ Section */
    .page-kingph-2025__faq-section {
      padding: 60px 20px;
      background-color: var(--kingph-background-light);
      margin-top: 20px;
      border-radius: 8px;
    }

    .page-kingph-2025__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      list-style: none;
      padding: 0;
    }

    .page-kingph-2025__faq-item {
      background-color: var(--kingph-background-dark);
      border: 1px solid var(--kingph-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding/border are included in width */
    }

    .page-kingph-2025__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      font-size: 1.2em;
      color: var(--kingph-primary-color);
      background-color: var(--kingph-background-dark);
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
      user-select: none;
    }

    .page-kingph-2025__faq-question:hover {
      background-color: #2D3748; /* Slightly lighter on hover */
    }

    .page-kingph-2025__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--kingph-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kingph-2025__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--kingph-accent-color); /* Use accent color for toggle */
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      line-height: 1; /* Ensure consistent height */
    }

    .page-kingph-2025__faq-item.active .page-kingph-2025__faq-question {
      border-bottom-color: var(--kingph-border-color);
    }

    .page-kingph-2025__faq-item.active .page-kingph-2025__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjusted padding for expanded state */
      opacity: 1;
    }

    .page-kingph-2025__faq-item.active .page-kingph-2025__faq-toggle {
      transform: rotate(45deg); /* Rotates the '+' to 'x' */
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kingph-2025__hero-section {
        min-height: 400px;
        padding: 10px 15px 60px;
      }

      .page-kingph-2025__hero-title {
        font-size: 2.5em;
      }

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

      .page-kingph-2025__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kingph-2025__section {
        padding: 40px 15px;
      }

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

      .page-kingph-2025__text-content {
        font-size: 1em;
      }

      .page-kingph-2025__features-grid,
      .page-kingph-2025__providers-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
      }

      .page-kingph-2025__feature-item,
      .page-kingph-2025__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important; /* Allow smaller on mobile if needed, but still above 200px if possible */
        min-height: unset !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile list items */
        word-wrap: break-word !important; /* Ensure content wraps */
        overflow-wrap: break-word !important;
      }

      .page-kingph-2025__feature-icon {
        max-width: 100%;
      }

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

      .page-kingph-2025__cta-title {
        font-size: 2em;
      }

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

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

      .page-kingph-2025__faq-section {
        padding: 40px 15px;
      }

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

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

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

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

    @media (max-width: 480px) {
      .page-kingph-2025__hero-title {
        font-size: 2em;
      }
      .page-kingph-2025__hero-subtitle {
        font-size: 1em;
      }
    }
  