
    :root {
      --primary-color: #e44d26; /* A vibrant orange for gaming */
      --secondary-color: #f9f9f9; /* Light background */
      --text-color: #333; /* Dark text for contrast */
      --heading-color: #1a1a1a; /* Even darker for headings */
      --accent-color: #007bff; /* Blue for links/buttons */
      --dark-bg: #222; /* Dark background for sections */
      --light-text: #fff; /* Light text on dark backgrounds */
      --border-color: #ddd;
    }

    /* Base styles for the page-jljlph-link main container */
    .page-jljlph-link {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--secondary-color);
      padding-top: 10px; /* Small padding top, relying on body padding for header offset */
      overflow-x: hidden;
    }

    /* General section styling */
    .page-jljlph-link__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-jljlph-link__section--dark {
      background-color: var(--dark-bg);
      color: var(--light-text);
    }

    .page-jljlph-link__section-title {
      font-size: 2.5em;
      color: var(--heading-color);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-jljlph-link__section--dark .page-jljlph-link__section-title {
      color: var(--light-text);
    }

    .page-jljlph-link__section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-jljlph-link__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--light-text);
      text-align: center;
      overflow: hidden;
      background-color: var(--dark-bg); /* Fallback */
    }

    .page-jljlph-link__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-jljlph-link__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
    }

    .page-jljlph-link__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 800;
      color: var(--light-text);
    }

    .page-jljlph-link__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-jljlph-link__hero-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block;
    }

    .page-jljlph-link__hero-button:hover {
      background-color: #c73e1c;
    }

    /* Features/Benefits Section */
    .page-jljlph-link__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jljlph-link__feature-item {
      background-color: var(--light-text);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jljlph-link__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-jljlph-link__feature-icon {
      width: 80px; /* Min size */
      height: 80px; /* Min size */
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-jljlph-link__feature-title {
      font-size: 1.5em;
      color: var(--heading-color);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-jljlph-link__feature-text {
      font-size: 1em;
      color: var(--text-color);
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    /* Game Providers Section */
    .page-jljlph-link__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-jljlph-link__provider-logo {
      width: 180px; /* Min size */
      height: 100px; /* Min size */
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jljlph-link__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Promotions Banner */
    .page-jljlph-link__promo-banner {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 50px 20px;
      margin: 40px auto;
      max-width: 1200px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-jljlph-link__promo-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-jljlph-link__promo-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      opacity: 0.9;
    }

    .page-jljlph-link__promo-button {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 15px 35px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-jljlph-link__promo-button:hover {
      background-color: #0056b3;
    }

    /* FAQ Section */
    .page-jljlph-link__faq-list {
      margin-top: 40px;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-jljlph-link__faq-item {
      background-color: var(--light-text);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-jljlph-link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: 600;
      color: var(--heading-color);
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-jljlph-link__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jljlph-link__faq-title {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-jljlph-link__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent icon from interfering with click */
    }

    .page-jljlph-link__faq-item.active .page-jljlph-link__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-jljlph-link__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: var(--text-color);
    }

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

    .page-jljlph-link__faq-answer p {
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }
    .page-jljlph-link__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Call to Action Section */
    .page-jljlph-link__cta-section {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 60px 20px;
      margin-top: 50px;
      text-align: center;
    }

    .page-jljlph-link__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-jljlph-link__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .page-jljlph-link__cta-button {
      background-color: var(--dark-bg);
      color: var(--light-text);
      padding: 18px 40px;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-jljlph-link__cta-button:hover {
      background-color: #000;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-jljlph-link__hero-section {
        height: 70vh;
        min-height: 300px;
      }

      .page-jljlph-link__hero-title {
        font-size: 2.5em;
      }

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

      .page-jljlph-link__hero-button,
      .page-jljlph-link__promo-button,
      .page-jljlph-link__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jljlph-link__section {
        padding: 30px 15px;
      }

      .page-jljlph-link__section-title {
        font-size: 2em;
      }

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

      .page-jljlph-link__features-grid,
      .page-jljlph-link__game-providers-grid {
        grid-template-columns: 1fr; /* Stack items */
      }

      .page-jljlph-link__feature-item,
      .page-jljlph-link__provider-logo,
      .page-jljlph-link__faq-item {
        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 for mobile */
        padding-right: 15px !important;
      }
      
      .page-jljlph-link__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-jljlph-link__promo-banner {
        padding: 40px 15px;
      }

      .page-jljlph-link__promo-title,
      .page-jljlph-link__cta-title {
        font-size: 2em;
      }

      .page-jljlph-link__promo-text,
      .page-jljlph-link__cta-description {
        font-size: 1em;
      }

      .page-jljlph-link__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-jljlph-link__faq-answer {
        padding: 0 20px;
      }

      .page-jljlph-link__faq-item.active .page-jljlph-link__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-jljlph-link__hero-title {
        font-size: 2em;
      }
      .page-jljlph-link__promo-title,
      .page-jljlph-link__cta-title {
        font-size: 1.8em;
      }
    }
  