
    /* Global styles for the page-50jili scope */
    .page-50jili {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed navigation offset handling (as per instructions) */
    /* Assuming body padding is handled by shared.css for header offset */
    .page-50jili__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

    /* General section styling */
    .page-50jili__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-50jili__section--dark {
        background-color: #2c3e50;
        color: #ecf0f1;
    }

    .page-50jili__section--dark h2,
    .page-50jili__section--dark h3 {
        color: #ecf0f1;
    }

    .page-50jili__section-title {
      font-size: 2.5em;
      color: #0056b3; /* Primary brand color */
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-50jili__section-text {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-50jili__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      margin-bottom: 20px;
    }

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

    .page-50jili__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-50jili__hero-title {
      font-size: 3.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffc107; /* Accent color for brand name */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-50jili__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-50jili__hero-cta-button {
      display: inline-block;
      background-color: #007bff; /* Primary button color */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-50jili__hero-cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-50jili__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-50jili__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      background-color: #ffc107; /* Accent color */
      color: #333;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      border-radius: 5px;
      margin: 0 5px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-50jili__floating-button--register {
      background-color: #28a745; /* Green for register */
      color: #fff;
    }

    .page-50jili__floating-button--login {
      background-color: #007bff; /* Blue for login */
      color: #fff;
    }

    .page-50jili__floating-button:hover {
      opacity: 0.9;
    }

    /* Game Showcase */
    .page-50jili__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
      justify-items: center; /* Center items in the grid */
    }

    .page-50jili__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%; /* Ensure cards take full grid column width */
      max-width: 350px; /* Limit max width for larger screens */
    }

    .page-50jili__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-50jili__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Include padding/border in width */
    }

    .page-50jili__game-content {
      padding: 20px;
    }

    .page-50jili__game-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
    }

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

    .page-50jili__game-provider {
      font-size: 0.85em;
      color: #777;
      font-style: italic;
    }

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

    .page-50jili__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-50jili__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-50jili__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Include padding/border in width */
    }

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

    .page-50jili__promo-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-50jili__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-50jili__promo-button {
      display: block; /* Make button full width of card content */
      width: 100%;
      padding: 10px 15px;
      background-color: #ffc107;
      color: #333;
      text-align: center;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-50jili__promo-button:hover {
      background-color: #e0a800;
    }

    /* Payment Methods */
    .page-50jili__payment-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-50jili__payment-item {
      background-color: #ecf0f1;
      padding: 15px 25px;
      border-radius: 8px;
      font-weight: bold;
      color: #2c3e50;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Important for responsive lists */
      width: auto; /* Allow items to size naturally */
      text-align: center;
    }

    .page-50jili__payment-item:hover {
      transform: translateY(-3px);
    }

    /* Why Choose Us Section */
    .page-50jili__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .page-50jili__feature-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-50jili__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-50jili__feature-icon {
      width: 200px; /* Ensure minimum size */
      height: 200px; /* Ensure minimum size */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Include padding/border in width */
    }

    .page-50jili__feature-title {
      font-size: 1.6em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-50jili__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section */
    .page-50jili__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-50jili__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-50jili__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff; /* Question background */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-50jili__faq-question:hover {
      background-color: #0056b3;
    }

    .page-50jili__faq-question h3 {
        margin: 0;
        font-size: 1em; /* Adjusted for better mobile display */
        pointer-events: none; /* Prevent h3 from intercepting click */
        color: inherit; /* Ensure h3 color is inherited from parent */
    }

    .page-50jili__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-50jili__faq-item.active .page-50jili__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' to horizontal */
    }

    .page-50jili__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #f0f8ff; /* Answer background */
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    /* Call to Action Section */
    .page-50jili__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #007bff;
      color: #fff;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-50jili__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffc107;
    }

    .page-50jili__cta-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-50jili__hero-title {
        font-size: 3em;
      }
      .page-50jili__hero-subtitle {
        font-size: 1.5em;
      }
      .page-50jili__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-50jili__hero-section {
        height: 500px;
      }
      .page-50jili__hero-title {
        font-size: 2.5em;
      }
      .page-50jili__hero-subtitle {
        font-size: 1.2em;
      }
      .page-50jili__hero-cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-50jili__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-50jili__section-title {
        font-size: 1.8em;
      }

      .page-50jili__section-text {
        font-size: 1em;
      }

      .page-50jili__game-grid,
      .page-50jili__promo-grid,
      .page-50jili__feature-grid {
        grid-template-columns: 1fr;
        padding: 10px;
      }

      /* List item responsive requirements */
      .page-50jili__payment-list {
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-50jili__payment-item {
        width: 90% !important; /* Adjust width to fit mobile screens */
        max-width: 90% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-50jili__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-50jili__faq-question h3 {
        font-size: 1em;
      }
      .page-50jili__faq-answer {
        padding: 15px 15px !important;
      }

      .page-50jili__cta-title {
        font-size: 2em;
      }
      .page-50jili__cta-description {
        font-size: 1.1em;
      }

      /* Image responsive optimization */
      .page-50jili__hero-background,
      .page-50jili__game-image,
      .page-50jili__promo-image,
      .page-50jili__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-50jili__game-card,
      .page-50jili__promo-card,
      .page-50jili__feature-card {
        width: 100%;
        max-width: 100%; /* Ensure cards take full width on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-50jili__hero-section {
        height: 400px;
      }
      .page-50jili__hero-title {
        font-size: 2em;
      }
      .page-50jili__hero-subtitle {
        font-size: 1em;
      }
      .page-50jili__hero-cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-50jili__floating-button {
        font-size: 0.9em;
        padding: 10px 0;
        margin: 0 3px;
      }
    }
  