
    /* Page-specific CSS for 8k8 com ph login */
    .page-8k8-com-ph-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header, if body padding is not set */
    }

    .page-8k8-com-ph-login__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Small padding for visual separation from fixed header */
    }

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

    .page-8k8-com-ph-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #ffd700; /* Gold color for title */
    }

    .page-8k8-com-ph-login__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-login__hero-button {
      display: inline-block;
      background-color: #ffd700; /* Gold button */
      color: #1a2a6c; /* Dark blue text */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-ph-login__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

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

    .page-8k8-com-ph-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }
    
    .page-8k8-com-ph-login__section:first-of-type {
        margin-top: 30px;
    }

    .page-8k8-com-ph-login__section-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-ph-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }

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

    .page-8k8-com-ph-login__card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-com-ph-login__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-ph-login__card-image-wrapper {
      width: 100%;
      max-width: 250px; /* Adjust based on desired image size */
      height: auto;
      margin-bottom: 15px;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-8k8-com-ph-login__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-com-ph-login__card-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-ph-login__card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-com-ph-login__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-8k8-com-ph-login__step-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-left: 5px solid #ffd700;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-com-ph-login__step-number {
      background-color: #1a2a6c;
      color: #fff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      flex-shrink: 0;
      margin-right: 15px;
    }

    .page-8k8-com-ph-login__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-ph-login__step-title {
      font-size: 1.2em;
      color: #1a2a6c;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-8k8-com-ph-login__game-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-com-ph-login__provider-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-com-ph-login__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-ph-login__provider-logo {
      max-width: 150px; /* Max width for provider logos */
      height: auto;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-ph-login__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 0.95em;
    }

    .page-8k8-com-ph-login__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-ph-login__payment-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      padding: 10px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-com-ph-login__payment-logo {
      height: 40px; /* Fixed height for payment logos */
      width: auto;
    }

    .page-8k8-com-ph-login__payment-name {
      font-weight: bold;
      color: #333;
    }

    /* FAQ Section Styles */
    .page-8k8-com-ph-login__faq-section {
      background-color: #f0f4f8;
      padding: 40px 20px;
      max-width: 1000px;
      margin: 30px auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-ph-login__faq-title {
      font-size: 2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-ph-login__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }

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

    .page-8k8-com-ph-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #eaf2f8;
      cursor: pointer;
      font-weight: bold;
      color: #1a2a6c;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-ph-login__faq-question:hover {
      background-color: #dbe7f2;
    }

    .page-8k8-com-ph-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-ph-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-ph-login__faq-item.active .page-8k8-com-ph-login__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '−' */
    }

    .page-8k8-com-ph-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      background-color: #fff;
    }

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

    /* General responsive styles */
    @media (max-width: 768px) {
      .page-8k8-com-ph-login__hero-title {
        font-size: 2em;
      }

      .page-8k8-com-ph-login__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-com-ph-login__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-ph-login__section {
        padding: 30px 15px;
      }

      .page-8k8-com-ph-login__section-title {
        font-size: 1.7em;
        margin-bottom: 20px;
      }

      .page-8k8-com-ph-login__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-8k8-com-ph-login__card {
        padding: 20px;
      }

      .page-8k8-com-ph-login__card-image-wrapper {
        max-width: 100%;
      }

      /* Mobile responsiveness for list items */
      .page-8k8-com-ph-login__steps-list,
      .page-8k8-com-ph-login__game-providers,
      .page-8k8-com-ph-login__payment-methods {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        flex-direction: column; /* Ensure stacked items for payment methods */
      }

      .page-8k8-com-ph-login__step-item,
      .page-8k8-com-ph-login__provider-item,
      .page-8k8-com-ph-login__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !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-ph-login__step-content {
        padding-right: 0;
      }

      .page-8k8-com-ph-login__payment-methods {
        justify-content: flex-start;
      }

      .page-8k8-com-ph-login__faq-section {
        padding: 30px 15px;
      }

      .page-8k8-com-ph-login__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-com-ph-login__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-ph-login__faq-answer {
        padding: 15px 15px !important;
      }

      /* Images responsiveness */
      .page-8k8-com-ph-login__card-image,
      .page-8k8-com-ph-login__provider-logo,
      .page-8k8-com-ph-login__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  