
    :root {
      --page-kingph-com-login-primary-bg: #1a1a2e;
      --page-kingph-com-login-secondary-bg: #282844;
      --page-kingph-com-login-text-color: #e0e0e0;
      --page-kingph-com-login-accent-color: #ffcc00;
      --page-kingph-com-login-button-text: #1a1a2e;
      --page-kingph-com-login-border-color: #3a3a5e;
      --page-kingph-com-login-hover-color: #ffd700;
    }

    .page-kingph-com-login {
      font-family: 'Arial', sans-serif;
      color: var(--page-kingph-com-login-text-color);
      background-color: var(--page-kingph-com-login-primary-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

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

    .page-kingph-com-login__section--dark {
      background-color: var(--page-kingph-com-login-secondary-bg);
    }

    .page-kingph-com-login__hero-section {
      padding-top: 10px; /* Small decorative top padding, body handles main offset */
      background-image: url('[GALLERY:hero:1920x1080:casino,login,background]');
      background-size: cover;
      background-position: center;
      color: var(--page-kingph-com-login-text-color);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      padding-bottom: 60px;
    }

    .page-kingph-com-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-com-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-kingph-com-login__hero-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: var(--page-kingph-com-login-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-com-login__hero-description {
      font-size: 1.25rem;
      margin-bottom: 30px;
      color: var(--page-kingph-com-login-text-color);
    }

    .page-kingph-com-login__button {
      background-color: var(--page-kingph-com-login-accent-color);
      color: var(--page-kingph-com-login-button-text);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-kingph-com-login__button:hover {
      background-color: var(--page-kingph-com-login-hover-color);
      transform: translateY(-2px);
    }

    .page-kingph-com-login__button--outline {
      background-color: transparent;
      border: 2px solid var(--page-kingph-com-login-accent-color);
      color: var(--page-kingph-com-login-accent-color);
    }

    .page-kingph-com-login__button--outline:hover {
      background-color: var(--page-kingph-com-login-accent-color);
      color: var(--page-kingph-com-login-button-text);
    }

    .page-kingph-com-login__heading-2 {
      font-size: 2.5rem;
      color: var(--page-kingph-com-login-accent-color);
      margin-bottom: 40px;
      text-transform: uppercase;
    }

    .page-kingph-com-login__heading-3 {
      font-size: 1.8rem;
      color: var(--page-kingph-com-login-accent-color);
      margin-bottom: 20px;
    }

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

    .page-kingph-com-login__benefit-card {
      background-color: var(--page-kingph-com-login-secondary-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-kingph-com-login__benefit-card:hover {
      transform: translateY(-5px);
    }

    .page-kingph-com-login__benefit-icon {
      margin-bottom: 20px;
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-kingph-com-login__benefit-card h3 {
      color: var(--page-kingph-com-login-accent-color);
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .page-kingph-com-login__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      text-align: left;
    }

    .page-kingph-com-login__faq-item {
      background-color: var(--page-kingph-com-login-secondary-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-kingph-com-login__faq-question:hover {
      background-color: #4a4a7e;
    }

    .page-kingph-com-login__faq-question h3 {
      margin: 0;
      color: var(--page-kingph-com-login-text-color);
      font-size: 1.2rem;
      pointer-events: none; /* Prevents h3 from blocking click event */
    }

    .page-kingph-com-login__faq-toggle {
      font-size: 1.8rem;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-kingph-com-login-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from blocking click event */
    }

    .page-kingph-com-login__faq-item.active .page-kingph-com-login__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kingph-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-kingph-com-login-secondary-bg);
      color: var(--page-kingph-com-login-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-kingph-com-login__faq-answer p {
      margin-bottom: 1em;
    }
    .page-kingph-com-login__faq-answer p:last-child {
      margin-bottom: 0;
    }

    .page-kingph-com-login__security-image {
      margin: 40px auto;
      max-width: 800px;
      display: block;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      width: 100%;
      height: auto;
    }

    .page-kingph-com-login__cta-section {
      background-color: var(--page-kingph-com-login-primary-bg);
      padding: 80px 20px;
      text-align: center;
    }

    .page-kingph-com-login__cta-text {
      font-size: 1.5rem;
      margin-bottom: 30px;
      color: var(--page-kingph-com-login-text-color);
    }

    .page-kingph-com-login__promo-link {
      color: var(--page-kingph-com-login-accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-kingph-com-login__promo-link:hover {
      color: var(--page-kingph-com-login-hover-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kingph-com-login__hero-title {
        font-size: 2.5rem;
      }

      .page-kingph-com-login__hero-description {
        font-size: 1rem;
      }

      .page-kingph-com-login__heading-2 {
        font-size: 2rem;
      }

      .page-kingph-com-login__heading-3 {
        font-size: 1.5rem;
      }

      .page-kingph-com-login__section {
        padding: 40px 15px;
      }

      .page-kingph-com-login__benefits-grid {
        grid-template-columns: 1fr;
      }

      .page-kingph-com-login__benefit-card {
        padding: 20px;
      }

      .page-kingph-com-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
      }

      .page-kingph-com-login__faq-question h3 {
        font-size: 1.1rem;
      }

      .page-kingph-com-login__faq-answer {
        padding: 0 20px;
      }

      .page-kingph-com-login__faq-item.active .page-kingph-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-com-login__cta-text {
        font-size: 1.2rem;
      }

      /* Responsive list item requirements */
      .page-kingph-com-login__benefits-grid,
      .page-kingph-com-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kingph-com-login__benefit-card,
      .page-kingph-com-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-com-login__benefit-card p,
      .page-kingph-com-login__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-com-login__security-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-com-login__hero-title {
        font-size: 2rem;
      }
      .page-kingph-com-login__heading-2 {
        font-size: 1.8rem;
      }
      .page-kingph-com-login__button {
        padding: 12px 25px;
        font-size: 1rem;
      }
    }
  