
    :root {
      --primary-color: #f7b731; /* Golden yellow, typical for casino themes */
      --secondary-color: #333; /* Dark gray for text */
      --accent-color: #e55; /* Red for emphasis */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #f4f4f4; /* Light background for contrast sections */
      --text-light: #f0f0f0; /* Light text on dark background */
      --text-dark: #333; /* Dark text on light background */
      --border-color: #444; /* Border for elements */
      --spacing-unit: 1rem;
    }

    .page-kingph-withdrawal {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-light);
      background-color: var(--background-dark);
      overflow-x: hidden;
      padding-top: 10px; /* Small padding top, relying on body padding from shared.css */
    }

    .page-kingph-withdrawal__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
    }

    .page-kingph-withdrawal__section {
      padding: 4rem 0;
      text-align: center;
      position: relative;
    }

    .page-kingph-withdrawal__section--dark {
      background-color: var(--background-dark);
      color: var(--text-light);
    }

    .page-kingph-withdrawal__section--light {
      background-color: var(--background-light);
      color: var(--text-dark);
    }

    .page-kingph-withdrawal__heading {
      font-size: 2.8rem;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-kingph-withdrawal__subheading {
      font-size: 1.8rem;
      color: var(--text-light);
      margin-bottom: 1rem;
    }

    .page-kingph-withdrawal__paragraph {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-withdrawal__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,withdrawal,money]') no-repeat center center / cover;
      padding: 8rem 0;
      color: var(--text-light);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .page-kingph-withdrawal__hero-content {
      max-width: 900px;
      padding: 0 var(--spacing-unit);
    }

    .page-kingph-withdrawal__hero-title {
      font-size: 3.8rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-kingph-withdrawal__hero-description {
      font-size: 1.4rem;
      margin-bottom: 2rem;
      line-height: 1.5;
    }

    .page-kingph-withdrawal__button {
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 5px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
      font-weight: bold;
    }

    .page-kingph-withdrawal__button:hover {
      background-color: #e0a42d;
    }

    .page-kingph-withdrawal__process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-kingph-withdrawal__step-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 2rem;
      flex: 1 1 calc(33% - 2rem);
      max-width: calc(33% - 2rem);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-kingph-withdrawal__step-number {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      font-weight: bold;
    }

    .page-kingph-withdrawal__step-title {
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 0.8rem;
    }

    .page-kingph-withdrawal__step-description {
      font-size: 1rem;
      color: #ccc;
    }

    .page-kingph-withdrawal__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .page-kingph-withdrawal__payment-card {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-withdrawal__payment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-withdrawal__payment-icon {
      width: 150px; /* Minimum 200px width/height is for images, not placeholder icons */
      height: 100px;
      object-fit: contain;
      margin-bottom: 1rem;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-kingph-withdrawal__payment-name {
      font-size: 1.2rem;
      color: var(--primary-color);
      font-weight: bold;
    }

    .page-kingph-withdrawal__tips-list {
      list-style: none;
      padding: 0;
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .page-kingph-withdrawal__tip-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: left;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-withdrawal__tip-icon {
      color: var(--primary-color);
      font-size: 1.8rem;
      line-height: 1;
      flex-shrink: 0;
      width: 40px; /* This is an icon, not an image placeholder. I will use text instead of icon for this one. */
      text-align: center;
    }

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

    .page-kingph-withdrawal__tip-title {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .page-kingph-withdrawal__tip-description {
      font-size: 1rem;
      color: #ccc;
    }

    .page-kingph-withdrawal__faq-list {
      margin-top: 3rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      list-style: none;
      padding: 0;
    }

    .page-kingph-withdrawal__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-kingph-withdrawal__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--text-light);
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kingph-withdrawal__faq-question:hover {
      background-color: #444;
    }

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

    .page-kingph-withdrawal__faq-toggle {
      font-size: 1.8rem;
      line-height: 1;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-kingph-withdrawal__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      text-align: left;
    }

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

    .page-kingph-withdrawal__cta-section {
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 4rem 0;
    }

    .page-kingph-withdrawal__cta-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .page-kingph-withdrawal__cta-description {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-withdrawal__cta-button {
      background-color: var(--background-dark);
      color: var(--primary-color);
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 5px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-weight: bold;
    }

    .page-kingph-withdrawal__cta-button:hover {
      background-color: #333;
      color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-withdrawal__hero-title {
        font-size: 3rem;
      }
      .page-kingph-withdrawal__hero-description {
        font-size: 1.2rem;
      }
      .page-kingph-withdrawal__heading {
        font-size: 2.2rem;
      }
      .page-kingph-withdrawal__subheading {
        font-size: 1.6rem;
      }
      .page-kingph-withdrawal__step-item {
        flex: 1 1 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
      }
    }

    @media (max-width: 768px) {
      .page-kingph-withdrawal__hero-section {
        padding: 6rem 0;
        min-height: 400px;
      }
      .page-kingph-withdrawal__hero-title {
        font-size: 2.5rem;
      }
      .page-kingph-withdrawal__hero-description {
        font-size: 1rem;
      }
      .page-kingph-withdrawal__heading {
        font-size: 1.8rem;
      }
      .page-kingph-withdrawal__subheading {
        font-size: 1.4rem;
      }
      .page-kingph-withdrawal__paragraph {
        font-size: 0.95rem;
      }
      .page-kingph-withdrawal__step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
      }
      .page-kingph-withdrawal__process-steps {
        gap: 1.5rem;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-kingph-withdrawal__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
      }
      .page-kingph-withdrawal__tip-item {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-kingph-withdrawal__tips-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-kingph-withdrawal__faq-question {
        font-size: 1.1rem;
        padding: 12px 15px;
      }
      .page-kingph-withdrawal__faq-question h3 {
        font-size: 1.1rem;
      }
      .page-kingph-withdrawal__faq-toggle {
        font-size: 1.5rem;
      }
      .page-kingph-withdrawal__faq-answer {
        font-size: 0.9rem;
        padding: 15px 15px !important;
      }
      .page-kingph-withdrawal__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-kingph-withdrawal__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-kingph-withdrawal__cta-title {
        font-size: 2rem;
      }
      .page-kingph-withdrawal__cta-description {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-withdrawal__hero-title {
        font-size: 2rem;
      }
      .page-kingph-withdrawal__heading {
        font-size: 1.6rem;
      }
      .page-kingph-withdrawal__step-number {
        font-size: 2rem;
      }
      .page-kingph-withdrawal__step-title {
        font-size: 1.3rem;
      }
      .page-kingph-withdrawal__cta-title {
        font-size: 1.8rem;
      }
    }

    /* Image responsive styles */
    .page-kingph-withdrawal__payment-icon,
    .page-kingph-withdrawal__image {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .page-kingph-withdrawal__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-kingph-withdrawal__payment-icon,
        .page-kingph-withdrawal__image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-kingph-withdrawal__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

  