/* Page-specific CSS */
    .page-t-jl {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 50px;
    }

    .page-t-jl__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-t-jl__section {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      padding: 30px;
      box-sizing: border-box;
    }

    .page-t-jl__section-title {
      font-size: 2.5em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-t-jl__section-subtitle {
      font-size: 1.8em;
      color: #007bff;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-t-jl__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Hero Section */
    .page-t-jl__hero-section {
      position: relative;
      width: 100%;
      height: 600px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 10px;
      box-sizing: border-box;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .page-t-jl__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-t-jl__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-t-jl__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffd700;
    }

    .page-t-jl__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-t-jl__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-t-jl__btn {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      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-t-jl__btn:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-t-jl__btn--secondary {
      background-color: #28a745;
    }

    .page-t-jl__btn--secondary:hover {
      background-color: #218838;
    }

    /* Payment Providers Section */
    .page-t-jl__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 20px 0;
      background-color: #e9ecef;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
    .page-t-jl__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    .page-t-jl__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    /* Game Cards / Promo Cards */
    .page-t-jl__card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-t-jl__card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-t-jl__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-t-jl__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-t-jl__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      max-height: 100%;
    }

    .page-t-jl__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-t-jl__card-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-t-jl__card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-t-jl__card .page-t-jl__btn {
      width: auto;
      margin-top: auto;
      align-self: center;
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* Quick Access Links */
    .page-t-jl__quick-access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    /* FAQ Section */
    .page-t-jl__faq-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-t-jl__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #e0e0e0;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-t-jl__faq-question:hover {
      background-color: #eaf6ff;
    }

    .page-t-jl__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from capturing click */
    }

    .page-t-jl__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Prevent toggle icon from capturing click */
      transition: transform 0.3s ease;
    }

    .page-t-jl__faq-item.active .page-t-jl__faq-toggle {
      transform: rotate(45deg);
    }

    .page-t-jl__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
    }

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

    /* Blog Section */
    .page-t-jl__blog-card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-t-jl__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-t-jl__blog-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-t-jl__blog-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      max-height: 100%;
    }

    .page-t-jl__blog-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-t-jl__blog-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-t-jl__blog-excerpt {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-t-jl__blog-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 15px;
    }

    .page-t-jl__blog-card .page-t-jl__btn {
      width: auto;
      margin-top: auto;
      align-self: flex-start;
      padding: 8px 15px;
      font-size: 0.85em;
    }

    /* General Image Styles */
    .page-t-jl img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-t-jl__hero-section {
        height: 450px;
      }
      .page-t-jl__hero-title {
        font-size: 2.2em;
      }
      .page-t-jl__hero-subtitle {
        font-size: 1.1em;
      }
      .page-t-jl__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-t-jl__btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-t-jl__section-title {
        font-size: 1.8em;
      }
      .page-t-jl__section-subtitle {
        font-size: 1.4em;
      }
      .page-t-jl__text-content {
        font-size: 1em;
      }
      .page-t-jl__container {
        padding: 15px;
      }
      .page-t-jl__section {
        padding: 20px;
      }
      .page-t-jl__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-t-jl__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-t-jl__payment-logo,
      .page-t-jl__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-t-jl__faq-question {
        padding: 12px 15px;
      }
      .page-t-jl__faq-question h3 {
        font-size: 1.1em;
      }
      .page-t-jl__faq-answer {
        padding: 0 15px;
      }
      .page-t-jl__faq-item.active .page-t-jl__faq-answer {
        padding: 15px 15px !important;
      }

      .page-t-jl__blog-card .page-t-jl__btn {
        align-self: center;
      }
      .page-t-jl__blog-image-wrapper, .page-t-jl__card-image-wrapper {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .page-t-jl__hero-title {
        font-size: 1.8em;
      }
      .page-t-jl__hero-subtitle {
        font-size: 0.9em;
      }
      .page-t-jl__hero-buttons {
        gap: 10px;
      }
      .page-t-jl__btn {
        width: 90%;
        max-width: 250px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-t-jl__section-title {
        font-size: 1.5em;
      }
      .page-t-jl__section-subtitle {
        font-size: 1.2em;
      }
    }