
    /* Base styles for the page */
    .page-okjl-online {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-okjl-online__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-okjl-online__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      position: relative;
      padding-bottom: 10px;
    }

    .page-okjl-online__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00; /* Gold accent */
      border-radius: 2px;
    }

    /* Hero Section */
    .page-okjl-online__hero-section {
      background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Small padding-top, assuming body padding-top handles header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-okjl-online__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

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

    .page-okjl-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #ffcc00; /* Gold accent */
    }

    .page-okjl-online__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-okjl-online__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 30px;
      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-okjl-online__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-okjl-online__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

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

    .page-okjl-online__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-okjl-online__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Required for responsive images */
      height: auto; /* Required for responsive images */
      box-sizing: border-box; /* Required for image containers */
      overflow: hidden; /* Required for image containers */
    }

    .page-okjl-online__game-content {
      padding: 20px;
    }

    .page-okjl-online__game-title {
      font-size: 1.4em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-okjl-online__game-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-okjl-online__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

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

    .page-okjl-online__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-okjl-online__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Required for responsive images */
      height: auto; /* Required for responsive images */
      box-sizing: border-box; /* Required for image containers */
      overflow: hidden; /* Required for image containers */
    }

    .page-okjl-online__promo-content {
      padding: 20px;
    }

    .page-okjl-online__promo-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-okjl-online__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    /* Features Section */
    .page-okjl-online__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    .page-okjl-online__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #fefefe;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Important for list items */
    }

    .page-okjl-online__feature-item:hover {
      transform: translateY(-3px);
    }

    .page-okjl-online__feature-icon {
      width: 80px; /* Min size 200x200 requirement, so this is just a visual placeholder for the icon concept */
      height: 80px;
      margin: 0 auto 20px;
      background-color: #ffcc00;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      color: #1a1a1a;
      font-weight: bold;
      max-width: 100%; /* Responsive image container */
      height: auto; /* Responsive image container */
      box-sizing: border-box; /* Responsive image container */
      overflow: hidden; /* Responsive image container */
    }

    .page-okjl-online__feature-title {
      font-size: 1.3em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-okjl-online__feature-description {
      font-size: 0.9em;
      color: #555;
    }

    /* Payment Methods Section */
    .page-okjl-online__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
      justify-content: center;
    }

    .page-okjl-online__payment-item {
      text-align: center;
      background-color: #fefefe;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Important for list items */
    }

    .page-okjl-online__payment-logo {
      width: 100px; /* Min size 200x200 requirement, this is a conceptual size */
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%; /* Responsive image container */
      height: auto; /* Responsive image container */
      box-sizing: border-box; /* Responsive image container */
      overflow: hidden; /* Responsive image container */
    }

    .page-okjl-online__payment-name {
      font-size: 1em;
      color: #333;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-okjl-online__faq-section {
      background-color: #f0f0f0;
    }

    .page-okjl-online__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box; /* Important for list items */
    }

    .page-okjl-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #ffcc00; /* Gold background for question */
      color: #1a1a1a;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-okjl-online__faq-question:hover {
      background-color: #e6b800;
    }

    .page-okjl-online__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #1a1a1a;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-okjl-online__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-okjl-online__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: #333;
      background-color: #fff;
    }

    .page-okjl-online__faq-item.active .page-okjl-online__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    .page-okjl-online__faq-answer p {
      margin: 0;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-okjl-online__hero-title {
        font-size: 3em;
      }
      .page-okjl-online__hero-description {
        font-size: 1.2em;
      }
      .page-okjl-online__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-okjl-online__section {
        padding: 30px 15px;
      }
      .page-okjl-online__hero-section {
        padding: 10px 15px 60px;
        min-height: 350px;
      }
      .page-okjl-online__hero-title {
        font-size: 2.5em;
      }
      .page-okjl-online__hero-description {
        font-size: 1em;
      }
      .page-okjl-online__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-okjl-online__section-title {
        font-size: 1.8em;
      }

      /* Responsive list items */
      .page-okjl-online__games-grid,
      .page-okjl-online__promotions-grid,
      .page-okjl-online__features-grid,
      .page-okjl-online__payment-grid {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 20px;
        padding: 10px 0;
      }

      .page-okjl-online__game-card,
      .page-okjl-online__promo-card,
      .page-okjl-online__feature-item,
      .page-okjl-online__payment-item,
      .page-okjl-online__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      .page-okjl-online__game-content,
      .page-okjl-online__promo-content,
      .page-okjl-online__feature-item,
      .page-okjl-online__payment-item {
        padding: 15px; /* Adjust padding for smaller screens */
      }

      .page-okjl-online__game-image,
      .page-okjl-online__promo-image,
      .page-okjl-online__feature-icon,
      .page-okjl-online__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-okjl-online__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-okjl-online__faq-question h3 {
        font-size: 1em;
      }
      .page-okjl-online__faq-toggle {
        font-size: 1.3em;
      }
      .page-okjl-online__faq-answer {
        padding: 0 20px;
      }
      .page-okjl-online__faq-item.active .page-okjl-online__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-okjl-online__hero-title {
        font-size: 2em;
      }
      .page-okjl-online__hero-description {
        font-size: 0.9em;
      }
      .page-okjl-online__section-title {
        font-size: 1.5em;
      }
    }
  