/* General styling for the page-jl-mm105 scope */
    .page-jl-mm105 {
      font-family: 'Arial', sans-serif;
      color: #E0E0E0; /* Light gray for general text */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, expecting body padding from shared CSS */
    }

    /* Section titles */
    .page-jl-mm105__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Gold color */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-jl-mm105__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      color: #B0B0B0;
    }

    /* Buttons */
    .page-jl-mm105__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-jl-mm105__button--primary {
      background-color: #FFD700; /* Gold */
      color: #1a1a2e; /* Dark text */
      border: 2px solid #FFD700;
    }

    .page-jl-mm105__button--primary:hover {
      background-color: #e0b800; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-jl-mm105__button--secondary {
      background-color: transparent;
      color: #FFD700; /* Gold */
      border: 2px solid #FFD700;
    }

    .page-jl-mm105__button--secondary:hover {
      background-color: #FFD700;
      color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-jl-mm105__button--cta {
      background-color: #FF4500; /* OrangeRed for CTA */
      color: #FFFFFF;
      border: 2px solid #FF4500;
      font-size: 1.2em;
      padding: 18px 35px;
    }

    .page-jl-mm105__button--cta:hover {
      background-color: #cc3700;
      border-color: #cc3700;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-jl-mm105__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #2c3e50, #34495e); /* Dark gradient */
      position: relative;
      overflow: hidden;
    }

    .page-jl-mm105__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.2;
    }

    .page-jl-mm105__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(5px); /* Subtle blur for background image */
    }

    .page-jl-mm105__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-jl-mm105__main-title {
      font-size: 3.5em;
      color: #FFFFFF;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-jl-mm105__hero-description {
      font-size: 1.3em;
      color: #CCCCCC;
      margin-bottom: 40px;
    }

    .page-jl-mm105__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Features Section */
    .page-jl-mm105__features-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-jl-mm105__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jl-mm105__feature-item {
      background-color: #2c2c44; /* Slightly lighter dark for cards */
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-jl-mm105__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-jl-mm105__feature-icon {
      width: 200px; /* Minimum size requirement */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-jl-mm105__feature-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-jl-mm105__feature-text {
      font-size: 1em;
      color: #B0B0B0;
    }

    /* Game Providers Section */
    .page-jl-mm105__game-providers-section {
      padding: 80px 20px;
      background-color: #1f1f3a;
    }

    .page-jl-mm105__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jl-mm105__provider-item {
      background-color: #2c2c44;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jl-mm105__provider-logo {
      width: 100px; /* gamelogo does not have dimensions, CSS controls it */
      height: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-jl-mm105__provider-name {
      font-size: 1em;
      color: #FFD700;
      font-weight: bold;
    }

    /* Payment Methods Section */
    .page-jl-mm105__payments-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-jl-mm105__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jl-mm105__payment-item {
      background-color: #2c2c44;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jl-mm105__payment-logo {
      width: 100px;
      height: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-jl-mm105__payment-name {
      font-size: 0.9em;
      color: #B0B0B0;
    }

    /* CTA Section */
    .page-jl-mm105__cta-section {
      padding: 80px 20px;
      background: linear-gradient(45deg, #1f1f3a, #2c2c44);
      text-align: center;
    }

    /* Floating Buttons */
    .page-jl-mm105__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-jl-mm105__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      color: #FFFFFF;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-jl-mm105__floating-button--register {
      background-color: #FFD700; /* Gold */
      color: #1a1a2e;
    }

    .page-jl-mm105__floating-button--register:hover {
      background-color: #e0b800;
      transform: translateY(-3px);
    }

    .page-jl-mm105__floating-button--login {
      background-color: #FF4500; /* OrangeRed */
    }

    .page-jl-mm105__floating-button--login:hover {
      background-color: #cc3700;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-jl-mm105__faq-section {
      padding: 80px 20px;
      background-color: #1a1a2e;
    }

    .page-jl-mm105__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-jl-mm105__faq-item {
      background-color: #2c2c44;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-jl-mm105__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3e3e60; /* Slightly different background for question */
      color: #FFD700;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jl-mm105__faq-question:hover {
      background-color: #4a4a70;
    }

    .page-jl-mm105__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-jl-mm105__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from interfering with click event */
      transition: transform 0.3s ease;
    }

    .page-jl-mm105__faq-item.active .page-jl-mm105__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to a cross */
    }

    .page-jl-mm105__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2c2c44;
      color: #B0B0B0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box; /* Crucial for list items */
    }

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

    .page-jl-mm105__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-jl-mm105__main-title {
        font-size: 3em;
      }
      .page-jl-mm105__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-jl-mm105__hero-section {
        padding: 40px 15px;
      }
      .page-jl-mm105__main-title {
        font-size: 2.5em;
      }
      .page-jl-mm105__hero-description {
        font-size: 1.1em;
      }
      .page-jl-mm105__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-jl-mm105__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-jl-mm105__section-title {
        font-size: 1.8em;
      }
      .page-jl-mm105__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* List item responsive requirements */
      .page-jl-mm105__features-grid,
      .page-jl-mm105__providers-grid,
      .page-jl-mm105__payments-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        padding: 0 15px !important; /* Adjust container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-jl-mm105__feature-item,
      .page-jl-mm105__provider-item,
      .page-jl-mm105__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-jl-mm105__feature-text,
      .page-jl-mm105__provider-name,
      .page-jl-mm105__payment-name {
        word-break: break-word !important;
      }

      .page-jl-mm105__feature-icon,
      .page-jl-mm105__provider-logo,
      .page-jl-mm105__payment-logo {
        max-width: 100%;
        height: auto;
        object-fit: contain;
      }

      .page-jl-mm105__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-jl-mm105__faq-title {
        font-size: 1.1em;
      }
      .page-jl-mm105__faq-answer {
        padding: 15px 20px !important;
      }

      .page-jl-mm105__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        justify-content: space-around;
      }
      .page-jl-mm105__floating-button {
        width: 48%; /* Almost half, with some gap */
        height: 45px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-jl-mm105__main-title {
        font-size: 2em;
      }
      .page-jl-mm105__section-title {
        font-size: 1.6em;
      }
      .page-jl-mm105__hero-description {
        font-size: 1em;
      }
    }