
    /* Page-specific CSS for 8k8 Com Login PH */
    .page-8k8-com-login-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    .page-8k8-com-login-ph__hero-section {
      background: linear-gradient(135deg, #0056b3, #003d7a);
      color: #fff;
      padding: 60px 20px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, expecting body padding for header offset */
    }

    .page-8k8-com-login-ph__hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .page-8k8-com-login-ph__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.1;
      font-weight: bold;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-ph__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .page-8k8-com-login-ph__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #003d7a;
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-ph__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-8k8-com-login-ph__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 1;
    }

    .page-8k8-com-login-ph__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-ph__section:nth-of-type(even) {
      background-color: #eef2f7;
    }

    .page-8k8-com-login-ph__section-title {
      font-size: 2.5em;
      color: #003d7a;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-com-login-ph__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-login-ph__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login-ph__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-login-ph__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-com-login-ph__feature-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-ph__feature-text {
      color: #666;
      font-size: 1em;
    }

    .page-8k8-com-login-ph__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-login-ph__step-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      flex: 1 1 calc(33% - 25px); /* Three items per row on desktop */
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-8k8-com-login-ph__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffcc00;
      margin-bottom: 15px;
      background-color: #0056b3;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: #fff;
    }

    .page-8k8-com-login-ph__step-title {
      font-size: 1.6em;
      color: #003d7a;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-ph__step-description {
      color: #666;
      font-size: 1em;
    }

    .page-8k8-com-login-ph__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-login-ph__provider-logo {
      width: 200px; /* Min size 200x200 */
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login-ph__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-login-ph__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-login-ph__payment-logo {
      width: 200px; /* Min size 200x200 */
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login-ph__payment-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-login-ph__faq-section {
      text-align: left;
    }

    .page-8k8-com-login-ph__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f5fa;
      color: #003d7a;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-ph__faq-question:hover {
      background-color: #e6edf5;
    }

    .page-8k8-com-login-ph__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevents text selection from interfering with click */
      flex-grow: 1;
    }

    .page-8k8-com-login-ph__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect, or just minus */
    }

    .page-8k8-com-login-ph__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: #555;
      font-size: 1em;
      text-align: left;
    }

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-ph__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login-ph__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-ph__hero-section {
        padding: 40px 15px 60px;
      }
      .page-8k8-com-login-ph__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login-ph__cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-ph__section {
        padding: 40px 15px;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 2em;
      }
      .page-8k8-com-login-ph__section-description {
        font-size: 1em;
      }
      .page-8k8-com-login-ph__features-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-login-ph__feature-item {
        padding: 25px;
      }
      .page-8k8-com-login-ph__feature-icon {
        width: 250px !important; /* Ensure min size */
        max-width: 100% !important;
        height: auto !important;
      }

      /* List item responsive requirements */
      .page-8k8-com-login-ph__steps-list {
        flex-direction: column;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-login-ph__step-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !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-8k8-com-login-ph__game-providers,
      .page-8k8-com-login-ph__payment-methods {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-com-login-ph__provider-logo,
      .page-8k8-com-login-ph__payment-logo {
        width: 250px !important; /* Ensure min size */
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-login-ph__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-com-login-ph__faq-answer {
        padding: 15px 20px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-ph__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login-ph__section-title {
        font-size: 1.8em;
      }
    }
  