
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #333;
      --accent-color: #FF4500; /* OrangeRed */
      --text-color: #E0E0E0; /* Light gray */
      --bg-color: #1A1A1A; /* Dark background */
      --card-bg: #2A2A2A;
      --border-color: #444;
      --font-family: 'Arial', sans-serif;
    }

    /* Base styles for the page */
    .page-kingph-legit-or-not {
      font-family: var(--font-family);
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
      padding-top: 10px; /* Small padding top, assuming body already handles header offset */
    }

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

    /* Hero Section */
    .page-kingph-legit-or-not__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino_lobby,dark,neon,gaming]') no-repeat center center / cover;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-legit-or-not__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-legit-or-not__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-legit-or-not__promo-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kingph-legit-or-not__promo-button:hover {
      background-color: #E63900; /* Darker OrangeRed */
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-kingph-legit-or-not__section {
      background-color: var(--card-bg);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
    }

    .page-kingph-legit-or-not__section-title {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 15px;
    }

    .page-kingph-legit-or-not__section-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    /* Feature List */
    .page-kingph-legit-or-not__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-kingph-legit-or-not__feature-item {
      background-color: #3A3A3A;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-kingph-legit-or-not__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-kingph-legit-or-not__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-align: center;
    }

    .page-kingph-legit-or-not__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Image Styling */
    .page-kingph-legit-or-not__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      margin: 30px 0;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      box-sizing: border-box;
    }

    .page-kingph-legit-or-not__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    /* Testimonials/Reviews */
    .page-kingph-legit-or-not__testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-kingph-legit-or-not__testimonial-card {
      background-color: #3A3A3A;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-kingph-legit-or-not__testimonial-quote {
      font-style: italic;
      margin-bottom: 15px;
      color: var(--text-color);
    }

    .page-kingph-legit-or-not__testimonial-author {
      font-weight: bold;
      color: var(--primary-color);
      text-align: right;
    }

    /* FAQ Section */
    .page-kingph-legit-or-not__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-kingph-legit-or-not__faq-item {
      background-color: #3A3A3A;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      overflow: hidden;
    }

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

    .page-kingph-legit-or-not__faq-question:hover {
      background-color: #333;
    }

    .page-kingph-legit-or-not__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-kingph-legit-or-not__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--accent-color);
      pointer-events: none; /* Prevent span from blocking click on parent */
      transition: transform 0.3s ease;
    }

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

    .page-kingph-legit-or-not__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--text-color);
      font-size: 1em;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kingph-legit-or-not__container {
        padding: 15px;
      }

      .page-kingph-legit-or-not__hero-section {
        padding: 40px 15px;
      }

      .page-kingph-legit-or-not__hero-title {
        font-size: 2.5em;
      }

      .page-kingph-legit-or-not__hero-subtitle {
        font-size: 1.2em;
      }

      .page-kingph-legit-or-not__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kingph-legit-or-not__section {
        padding: 25px;
      }

      .page-kingph-legit-or-not__section-title {
        font-size: 1.8em;
      }

      .page-kingph-legit-or-not__section-text {
        font-size: 0.95em;
      }

      .page-kingph-legit-or-not__feature-list,
      .page-kingph-legit-or-not__testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-kingph-legit-or-not__feature-item,
      .page-kingph-legit-or-not__testimonial-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
      }

      .page-kingph-legit-or-not__feature-title {
        font-size: 1.3em;
      }

      .page-kingph-legit-or-not__image-wrapper {
        margin: 20px 0;
      }

      .page-kingph-legit-or-not__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-kingph-legit-or-not__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-kingph-legit-or-not__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      
      .page-kingph-legit-or-not__faq-item.active .page-kingph-legit-or-not__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-legit-or-not__hero-title {
        font-size: 2em;
      }

      .page-kingph-legit-or-not__hero-subtitle {
        font-size: 1em;
      }

      .page-kingph-legit-or-not__section-title {
        font-size: 1.6em;
      }
    }
  