
    /* Page-specific CSS for 8k8 com ph login */
    .page-8k8-com-ph-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      /* Fallback if shared.css doesn't define body padding-top, otherwise this will be removed by system */
      padding-top: var(--header-offset, 122px);
    }

    .page-8k8-com-ph-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8-com-ph-login__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark blue, matching a gaming theme */
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      /* Small decorative padding, relying on body for main offset */
      padding-top: 10px;
    }

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

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

    .page-8k8-com-ph-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold/yellow for accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-ph-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

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

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

    /* Section Styling */
    .page-8k8-com-ph-login__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-ph-login__section:nth-of-type(even) {
      background-color: #eaf1f8;
    }

    .page-8k8-com-ph-login__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #0d1a26;
      position: relative;
      padding-bottom: 10px;
    }

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

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

    .page-8k8-com-ph-login__benefit-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-8k8-com-ph-login__benefit-icon {
      width: 250px; /* Minimum 200x200 */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-com-ph-login__benefit-title {
      font-size: 1.4em;
      color: #0d1a26;
      margin-bottom: 15px;
    }

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

    /* Guide Section */
    .page-8k8-com-ph-login__guide-steps {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .page-8k8-com-ph-login__guide-item {
      background-color: #fff;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      align-items: flex-start;
      max-width: 700px;
      width: 100%;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-ph-login__guide-step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-right: 20px;
      min-width: 40px;
      text-align: center;
    }

    .page-8k8-com-ph-login__guide-text h3 {
      font-size: 1.3em;
      color: #0d1a26;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-ph-login__guide-text p {
      font-size: 1em;
      color: #555;
    }

    .page-8k8-com-ph-login__guide-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Promotions Section */
    .page-8k8-com-ph-login__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-login__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-ph-login__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-ph-login__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-8k8-com-ph-login__promo-content {
      padding: 25px;
    }

    .page-8k8-com-ph-login__promo-title {
      font-size: 1.4em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-8k8-com-ph-login__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph-login__promo-action {
      display: inline-block;
      background-color: #0d1a26;
      color: #ffcc00;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.9em;
      font-weight: bold;
      cursor: pointer;
      border: none;
    }

    /* Payment Methods Section */
    .page-8k8-com-ph-login__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-com-ph-login__payment-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
      width: 100%; /* Ensure it takes full width in grid cell */
      max-width: 200px; /* Limit individual item width */
    }

    .page-8k8-com-ph-login__payment-logo {
      max-width: 120px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 4px; /* Example: if logos are square */
    }

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


    /* FAQ Section */
    .page-8k8-com-ph-login__faq-section {
      background-color: #f0f5fa;
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-ph-login__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

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

    .page-8k8-com-ph-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #0d1a26; /* Dark blue for question background */
      color: #fff;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-ph-login__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      font-size: 1.1em; /* Adjust font size for better mobile readability */
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-ph-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #ffcc00; /* Gold/yellow for toggle icon */
    }

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

    .page-8k8-com-ph-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;
      background-color: #fff;
      color: #333;
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-ph-login__hero-section {
        padding: 60px 15px;
      }

      .page-8k8-com-ph-login__hero-title {
        font-size: 2em;
      }

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

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

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

      .page-8k8-com-ph-login__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-ph-login__benefits-grid,
      .page-8k8-com-ph-login__promotions-grid,
      .page-8k8-com-ph-login__payments-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-ph-login__guide-item {
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }

      .page-8k8-com-ph-login__guide-step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-com-ph-login__guide-text {
        text-align: center;
      }

      /* List item responsiveness */
      .page-8k8-com-ph-login__benefits-grid > div,
      .page-8k8-com-ph-login__promotions-grid > div,
      .page-8k8-com-ph-login__payments-grid > div,
      .page-8k8-com-ph-login__guide-steps > li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner padding */
        padding-right: 15px !important; /* Adjust padding to avoid excessive inner padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-ph-login__guide-steps {
        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-ph-login__promo-image {
        height: 180px;
      }

      .page-8k8-com-ph-login__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

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

      .page-8k8-com-ph-login__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-com-ph-login__faq-answer {
        padding: 0 20px;
      }

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

      /* Image responsiveness */
      .page-8k8-com-ph-login__hero-background,
      .page-8k8-com-ph-login__benefit-icon,
      .page-8k8-com-ph-login__guide-image,
      .page-8k8-com-ph-login__promo-image,
      .page-8k8-com-ph-login__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-ph-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph-login__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-ph-login__login-button {
        padding: 10px 25px;
        font-size: 0.9em;
      }
    }
  