
    :root {
      --kingph-primary-color: #ffcc00; /* Gold/Yellow */
      --kingph-secondary-color: #333333; /* Dark Grey */
      --kingph-accent-color: #007bff; /* Blue for buttons/links */
      --kingph-text-light: #ffffff;
      --kingph-text-dark: #1a1a1a;
      --kingph-background-dark: #121212;
      --kingph-background-light: #f5f5f5;
      --kingph-border-color: #444444;
    }

    .page-kingph-gcash-login {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-text-light);
      background-color: var(--kingph-background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not set by shared.css */
    }

    .page-kingph-gcash-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-kingph-gcash-login__hero-section {
      background-color: #1a1a1a;
      background-image: url('[GALLERY:hero:1920x1080:online casino,gcash,login,kingph]');
      background-size: cover;
      background-position: center;
      color: var(--kingph-text-light);
      padding: 100px 20px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-kingph-gcash-login__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-kingph-gcash-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-kingph-gcash-login__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-gcash-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-gcash-login__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-kingph-gcash-login__primary-button,
    .page-kingph-gcash-login__secondary-button {
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      color: var(--kingph-text-dark);
      display: inline-block;
      text-align: center;
      border: none;
    }

    .page-kingph-gcash-login__primary-button {
      background-color: var(--kingph-primary-color);
      color: var(--kingph-text-dark);
    }

    .page-kingph-gcash-login__primary-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-kingph-gcash-login__secondary-button {
      background-color: var(--kingph-accent-color);
      color: var(--kingph-text-light);
    }

    .page-kingph-gcash-login__secondary-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-kingph-gcash-login__heading-2 {
      font-size: 2.5em;
      color: var(--kingph-primary-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-gcash-login__heading-3 {
      font-size: 1.8em;
      color: var(--kingph-text-light);
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-kingph-gcash-login__text-content {
      font-size: 1.1em;
      color: var(--kingph-text-light);
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-kingph-gcash-login__steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-kingph-gcash-login__step-card {
      background-color: var(--kingph-secondary-color);
      border-radius: 12px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px);
      max-width: calc(33% - 40px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--kingph-border-color);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-kingph-gcash-login__step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-kingph-gcash-login__step-number {
      background-color: var(--kingph-primary-color);
      color: var(--kingph-text-dark);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-gcash-login__step-title {
      font-size: 1.4em;
      color: var(--kingph-primary-color);
      margin-bottom: 15px;
    }

    .page-kingph-gcash-login__step-description {
      font-size: 1em;
      color: var(--kingph-text-light);
      flex-grow: 1;
    }

    .page-kingph-gcash-login__image-container {
      margin-top: 30px;
      margin-bottom: 30px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-kingph-gcash-login__image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover;
    }

    .page-kingph-gcash-login__list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-kingph-gcash-login__list-item {
      background-color: var(--kingph-secondary-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      border: 1px solid var(--kingph-border-color);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingph-gcash-login__list-item::before {
      content: '✓';
      color: var(--kingph-primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-kingph-gcash-login__faq-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
      text-align: center;
    }

    .page-kingph-gcash-login__faq-container {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
    }

    .page-kingph-gcash-login__faq-item {
      background-color: var(--kingph-secondary-color);
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid var(--kingph-border-color);
      box-sizing: border-box;
    }

    .page-kingph-gcash-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-radius: 8px;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kingph-gcash-login__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-kingph-gcash-login__faq-question h3 {
      margin: 0;
      font-size: 1.25em;
      color: var(--kingph-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
      text-align: left;
    }

    .page-kingph-gcash-login__faq-toggle {
      font-size: 2em;
      font-weight: bold;
      color: var(--kingph-primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-kingph-gcash-login__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: var(--kingph-text-light);
      text-align: left;
      box-sizing: border-box;
    }

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

    .page-kingph-gcash-login__faq-item.active .page-kingph-gcash-login__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-kingph-gcash-login__final-cta {
      background-color: var(--kingph-accent-color);
      color: var(--kingph-text-light);
      padding: 60px 20px;
      text-align: center;
    }

    .page-kingph-gcash-login__final-cta-title {
      font-size: 2.8em;
      color: var(--kingph-text-light);
      margin-bottom: 20px;
    }

    .page-kingph-gcash-login__final-cta-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-gcash-login__hero-title {
        font-size: 3em;
      }
      .page-kingph-gcash-login__hero-description {
        font-size: 1.2em;
      }
      .page-kingph-gcash-login__heading-2 {
        font-size: 2em;
      }
      .page-kingph-gcash-login__step-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
      }
      .page-kingph-gcash-login__list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-gcash-login {
        padding-top: var(--header-offset, 90px); /* Adjust for smaller header on mobile */
      }
      .page-kingph-gcash-login__hero-section {
        padding: 80px 15px 40px;
      }
      .page-kingph-gcash-login__hero-title {
        font-size: 2.5em;
      }
      .page-kingph-gcash-login__hero-description {
        font-size: 1em;
      }
      .page-kingph-gcash-login__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-kingph-gcash-login__primary-button,
      .page-kingph-gcash-login__secondary-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-kingph-gcash-login__section {
        padding: 30px 15px;
      }
      .page-kingph-gcash-login__heading-2 {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-kingph-gcash-login__heading-3 {
        font-size: 1.5em;
      }
      .page-kingph-gcash-login__text-content {
        font-size: 0.95em;
      }
      .page-kingph-gcash-login__steps-container {
        flex-direction: column;
        gap: 20px;
      }
      .page-kingph-gcash-login__step-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
      }
      .page-kingph-gcash-login__list {
        margin: 20px auto;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-kingph-gcash-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-kingph-gcash-login__image-container {
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-kingph-gcash-login__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kingph-gcash-login__faq-section {
        padding: 40px 15px;
      }
      .page-kingph-gcash-login__faq-question {
        padding: 15px 20px;
      }
      .page-kingph-gcash-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kingph-gcash-login__faq-toggle {
        font-size: 1.8em;
      }
      .page-kingph-gcash-login__faq-answer {
        padding: 15px 20px;
      }
      .page-kingph-gcash-login__final-cta {
        padding: 40px 15px;
      }
      .page-kingph-gcash-login__final-cta-title {
        font-size: 2em;
      }
      .page-kingph-gcash-login__final-cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-gcash-login__hero-title {
        font-size: 2em;
      }
      .page-kingph-gcash-login__heading-2 {
        font-size: 1.5em;
      }
      .page-kingph-gcash-login__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
      }
      .page-kingph-gcash-login__step-title {
        font-size: 1.2em;
      }
      .page-kingph-gcash-login__final-cta-title {
        font-size: 1.8em;
      }
    }
  