
    /* Page-specific CSS for kingph-scatter-game */
    .page-kingph-scatter-game {
      font-family: 'Arial', sans-serif;
      color: #ffffff;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body handles main header offset */
    }

    .page-kingph-scatter-game__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-kingph-scatter-game__section--dark {
      background-color: #222222;
    }

    .page-kingph-scatter-game__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Gold accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-kingph-scatter-game__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 30px;
    }

    .page-kingph-scatter-game__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
    }

    .page-kingph-scatter-game__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-kingph-scatter-game__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-kingph-scatter-game__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-scatter-game__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-kingph-scatter-game__button {
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-decoration: none; /* For the external link <a> tag */
    }

    .page-kingph-scatter-game__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-kingph-scatter-game__button-secondary {
      background-color: #333333;
      color: #ffd700;
      border: 2px solid #ffd700;
    }

    .page-kingph-scatter-game__button-secondary:hover {
      background-color: #444444;
      color: #e6c200;
    }

    .page-kingph-scatter-game__text-content {
      font-size: 1.1em;
      color: #e0e0e0;
      text-align: left;
      margin-bottom: 20px;
    }

    .page-kingph-scatter-game__text-content strong {
      color: #ffd700;
    }

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

    .page-kingph-scatter-game__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-scatter-game__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-kingph-scatter-game__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #333;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-kingph-scatter-game__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-kingph-scatter-game__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-kingph-scatter-game__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-kingph-scatter-game__features-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
    }

    .page-kingph-scatter-game__features-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-kingph-scatter-game__features-icon {
      width: 80px; /* Minimum 200px required, adjusting */
      height: 80px; /* Minimum 200px required, adjusting */
      margin-bottom: 15px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure responsiveness */
    }

    .page-kingph-scatter-game__features-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-kingph-scatter-game__features-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-kingph-scatter-game__how-to-play-steps {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1000px;
      counter-reset: step-counter;
    }

    .page-kingph-scatter-game__how-to-play-step {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      text-align: left;
      position: relative;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-scatter-game__how-to-play-step::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      top: -15px;
      left: 20px;
      background-color: #ffd700;
      color: #1a1a1a;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-scatter-game__how-to-play-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-kingph-scatter-game__how-to-play-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-kingph-scatter-game__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-kingph-scatter-game__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-kingph-scatter-game__faq-question:hover {
      background-color: #444444;
    }

    .page-kingph-scatter-game__faq-question h3 {
      margin: 0;
      color: #ffd700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-kingph-scatter-game__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-kingph-scatter-game__faq-item.active .page-kingph-scatter-game__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-kingph-scatter-game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
      text-align: left;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-kingph-scatter-game__hero-title {
        font-size: 3em;
      }
      .page-kingph-scatter-game__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-scatter-game__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-scatter-game__hero-description {
        font-size: 1.1em;
      }
      .page-kingph-scatter-game__section {
        padding: 30px 15px;
      }
      .page-kingph-scatter-game__section-title {
        font-size: 1.8em;
      }
      .page-kingph-scatter-game__game-grid {
        grid-template-columns: 1fr;
      }
      .page-kingph-scatter-game__features-list,
      .page-kingph-scatter-game__how-to-play-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-kingph-scatter-game__game-card,
      .page-kingph-scatter-game__features-item,
      .page-kingph-scatter-game__how-to-play-step {
        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 smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-scatter-game__game-card-image,
      .page-kingph-scatter-game__features-icon,
      .page-kingph-scatter-game__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-kingph-scatter-game__faq-question,
      .page-kingph-scatter-game__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for mobile */
      }

      .page-kingph-scatter-game__faq-question h3 {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-scatter-game__hero-title {
        font-size: 2em;
      }
      .page-kingph-scatter-game__hero-description {
        font-size: 1em;
      }
      .page-kingph-scatter-game__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-kingph-scatter-game__section-title {
        font-size: 1.5em;
      }
      .page-kingph-scatter-game__text-content {
        font-size: 1em;
      }
    }
  