
    /* Base Styles for the page-kingph-game-com */
    .page-kingph-game-com {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
      padding: 20px;
    }

    .page-kingph-game-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-kingph-game-com__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-kingph-game-com__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-kingph-game-com__section-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #e74c3c;
      font-weight: bold;
    }

    .page-kingph-game-com__section--dark .page-kingph-game-com__section-title {
      color: #f39c12;
    }

    .page-kingph-game-com__section-subtitle {
      font-size: 1.4em;
      margin-bottom: 40px;
      color: #555;
    }

    .page-kingph-game-com__section--dark .page-kingph-game-com__section-subtitle {
      color: #bdc3c7;
    }

    /* Hero Section */
    .page-kingph-game-com__hero-section {
      background-color: #f8f9fa;
      padding-top: 10px; /* Small decorative top padding, body already has offset */
      padding-bottom: 60px;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-kingph-game-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-kingph-game-com__hero-title {
      font-size: 3.5em;
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-kingph-game-com__hero-description {
      font-size: 1.5em;
      color: #444;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .page-kingph-game-com__hero-button {
      display: inline-block;
      padding: 15px 35px;
      background-color: #e74c3c;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-kingph-game-com__hero-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-kingph-game-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-game-com__category-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-kingph-game-com__category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-kingph-game-com__category-image {
      width: 100%;
      max-width: 400px; /* Example size */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      max-height: 250px;
    }

    .page-kingph-game-com__category-title {
      font-size: 1.8em;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-kingph-game-com__category-description {
      font-size: 1em;
      color: #555;
      flex-grow: 1; /* Allows description to take available space */
    }

    /* Promotions Section */
    .page-kingph-game-com__promotions {
      background-color: #ecf0f1;
    }

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

    .page-kingph-game-com__promo-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: left;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-kingph-game-com__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-kingph-game-com__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

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

    .page-kingph-game-com__promo-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-kingph-game-com__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-kingph-game-com__promo-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #3498db;
      color: #ffffff;
      text-decoration: none;
      border-radius: 6px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      align-self: flex-start;
    }

    .page-kingph-game-com__promo-button:hover {
      background-color: #2980b9;
    }

    /* Providers Section */
    .page-kingph-game-com__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-kingph-game-com__provider-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-kingph-game-com__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-kingph-game-com__provider-logo {
      max-width: 120px; /* Adjust size as needed, but min 200x200 for actual images */
      width: 100%;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-kingph-game-com__provider-name {
      font-size: 1.1em;
      color: #333;
      font-weight: bold;
    }

    /* Payment Methods Section */
    .page-kingph-game-com__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-kingph-game-com__payment-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-kingph-game-com__payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-kingph-game-com__payment-logo {
      max-width: 120px; /* Adjust size as needed, but min 200x200 for actual images */
      width: 100%;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-kingph-game-com__payment-name {
      font-size: 1.1em;
      color: #333;
      font-weight: bold;
    }

    /* Call to Action Section */
    .page-kingph-game-com__cta-section {
      background-color: #e74c3c;
      color: #ffffff;
      padding: 80px 0;
    }

    .page-kingph-game-com__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-kingph-game-com__cta-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-game-com__cta-button {
      display: inline-block;
      padding: 18px 40px;
      background-color: #f39c12;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-kingph-game-com__cta-button:hover {
      background-color: #e67e22;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-kingph-game-com__faq-section {
      background-color: #f8f9fa;
    }

    .page-kingph-game-com__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-game-com__faq-item {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-kingph-game-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f2f5;
      color: #2c3e50;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-kingph-game-com__faq-question:hover {
      background-color: #e0e2e6;
    }

    .page-kingph-game-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-kingph-game-com__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-kingph-game-com__faq-item.active .page-kingph-game-com__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-kingph-game-com__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: #555;
      font-size: 1em;
      line-height: 1.8;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-kingph-game-com__hero-title {
        font-size: 3em;
      }
      .page-kingph-game-com__hero-description {
        font-size: 1.3em;
      }
      .page-kingph-game-com__section-title {
        font-size: 2.4em;
      }
      .page-kingph-game-com__cta-title {
        font-size: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-game-com__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
      }
      .page-kingph-game-com__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-game-com__hero-description {
        font-size: 1.1em;
      }
      .page-kingph-game-com__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kingph-game-com__section {
        padding: 40px 0;
      }
      .page-kingph-game-com__section-title {
        font-size: 2em;
      }
      .page-kingph-game-com__section-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
      }
      .page-kingph-game-com__game-categories,
      .page-kingph-game-com__promo-grid,
      .page-kingph-game-com__providers-grid,
      .page-kingph-game-com__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsive */
      .page-kingph-game-com__game-categories .page-kingph-game-com__category-card,
      .page-kingph-game-com__promo-grid .page-kingph-game-com__promo-card,
      .page-kingph-game-com__providers-grid .page-kingph-game-com__provider-item,
      .page-kingph-game-com__payments-grid .page-kingph-game-com__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-kingph-game-com__game-categories,
      .page-kingph-game-com__promo-grid,
      .page-kingph-game-com__providers-grid,
      .page-kingph-game-com__payments-grid,
      .page-kingph-game-com__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Ensure padding within container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-game-com__category-description,
      .page-kingph-game-com__promo-description,
      .page-kingph-game-com__provider-name,
      .page-kingph-game-com__payment-name,
      .page-kingph-game-com__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-game-com__cta-section {
        padding: 60px 0;
      }
      .page-kingph-game-com__cta-title {
        font-size: 2em;
      }
      .page-kingph-game-com__cta-description {
        font-size: 1.2em;
      }
      .page-kingph-game-com__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-kingph-game-com__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-kingph-game-com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-game-com__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-game-com__hero-title {
        font-size: 2em;
      }
      .page-kingph-game-com__hero-description {
        font-size: 1em;
      }
      .page-kingph-game-com__section-title {
        font-size: 1.8em;
      }
      .page-kingph-game-com__cta-title {
        font-size: 1.8em;
      }
      .page-kingph-game-com__cta-description {
        font-size: 1em;
      }
    }
  