
    /* Page specific CSS styles for jljlph com login */
    .page-jljlph-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-jljlph-com-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jljlph-com-login__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%); /* Deep blue to red gradient */
      color: #ffffff;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      padding-top: 10px; /* Small top padding as body has offset */
    }

    .page-jljlph-com-login__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      font-weight: 700;
    }

    .page-jljlph-com-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-jljlph-com-login__button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow */
      color: #1a2a6c; /* Dark blue */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jljlph-com-login__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-jljlph-com-login__image-container {
      margin: 40px auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jljlph-com-login__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-jljlph-com-login__heading {
      font-size: 2em;
      color: #1a2a6c; /* Dark blue */
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-jljlph-com-login__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #b21f1f; /* Red accent */
      border-radius: 2px;
    }

    .page-jljlph-com-login__content-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-jljlph-com-login__list-item {
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-jljlph-com-login__list-item-title {
      font-size: 1.3em;
      color: #b21f1f; /* Red accent */
      margin-bottom: 10px;
    }

    .page-jljlph-com-login__step-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-jljlph-com-login__step-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
      box-sizing: border-box; /* Required for list items */
    }

    .page-jljlph-com-login__step-number {
      background-color: #1a2a6c; /* Dark blue */
      color: #ffffff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      border: 3px solid #ffcc00; /* Yellow border */
    }

    .page-jljlph-com-login__step-title {
      font-size: 1.4em;
      color: #1a2a6c; /* Dark blue */
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-jljlph-com-login__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-jljlph-com-login__game-card {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-jljlph-com-login__game-image-container {
      width: 100%;
      height: 180px; /* Fixed height for consistent cards */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
      box-sizing: border-box;
    }

    .page-jljlph-com-login__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    
    .page-jljlph-com-login__game-card:hover .page-jljlph-com-login__game-image {
      transform: scale(1.05);
    }

    .page-jljlph-com-login__game-title {
      font-size: 1.2em;
      color: #1a2a6c; /* Dark blue */
      padding: 15px 10px;
      margin: 0;
      font-weight: 600;
    }

    .page-jljlph-com-login__promo-link {
      color: #b21f1f;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-jljlph-com-login__promo-link:hover {
      color: #ffcc00;
    }

    /* FAQ Section Styles */
    .page-jljlph-com-login__faq-section {
      background-color: #fefefe;
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-jljlph-com-login__faq-heading {
      font-size: 2em;
      color: #1a2a6c;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-jljlph-com-login__faq-item {
      border: 1px solid #e0e0e0;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
    }

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

    .page-jljlph-com-login__faq-question:hover {
      background-color: #eee;
    }

    .page-jljlph-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-jljlph-com-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #b21f1f;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-jljlph-com-login__faq-item.active .page-jljlph-com-login__faq-toggle {
      transform: rotate(45deg); /* Rotate plus to form an X or minus */
    }

    .page-jljlph-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #ffffff;
      color: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-jljlph-com-login__hero-title {
        font-size: 2em;
      }

      .page-jljlph-com-login__hero-description {
        font-size: 1em;
      }

      .page-jljlph-com-login__heading {
        font-size: 1.8em;
      }

      .page-jljlph-com-login__section {
        padding: 20px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-jljlph-com-login__content-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-jljlph-com-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
      }

      .page-jljlph-com-login__step-list {
        grid-template-columns: 1fr;
      }

      .page-jljlph-com-login__step-item {
        padding: 20px;
        box-sizing: border-box !important; /* Ensure padding is included */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
      }

      .page-jljlph-com-login__game-grid {
        grid-template-columns: 1fr;
      }

      .page-jljlph-com-login__game-card {
        width: 100%;
        box-sizing: border-box !important;
      }

      .page-jljlph-com-login__game-image-container {
        height: 150px;
      }

      .page-jljlph-com-login__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box !important;
      }
      .page-jljlph-com-login__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-jljlph-com-login__faq-answer {
        padding: 15px 10px !important;
      }
      .page-jljlph-com-login__faq-question {
        padding: 12px 15px;
      }
      .page-jljlph-com-login__faq-question h3 {
        font-size: 1em;
      }
    }

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