
    /* Base styles for the page-specific content */
    .page-50jili-vip-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f9f9f9;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if shared.css doesn't set body padding-top */
    }

    .page-50jili-vip-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      box-sizing: border-box;
    }

    .page-50jili-vip-login-register__section--dark {
      background-color: #0056b3; /* A strong blue for contrast */
      color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .page-50jili-vip-login-register__section--dark .page-50jili-vip-login-register__title {
      color: #fff;
    }

    .page-50jili-vip-login-register__title {
      font-size: 2.5em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .page-50jili-vip-login-register__subtitle {
      font-size: 1.5em;
      color: #555;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-50jili-vip-login-register__text {
      font-size: 1em;
      color: #444;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-50jili-vip-login-register__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-50jili-vip-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00; /* Gold/yellow for action */
      color: #333;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      white-space: nowrap;
    }

    .page-50jili-vip-login-register__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-50jili-vip-login-register__button--primary {
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
    }

    .page-50jili-vip-login-register__button--primary:hover {
      background-color: #0056b3;
    }

    .page-50jili-vip-login-register__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 20px auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    .page-50jili-vip-login-register__hero-section {
      background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
    }

    .page-50jili-vip-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 800;
      color: #ffcc00;
    }

    .page-50jili-vip-login-register__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      font-weight: 500;
    }

    /* Features Grid */
    .page-50jili-vip-login-register__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-50jili-vip-login-register__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-50jili-vip-login-register__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-50jili-vip-login-register__feature-icon {
      margin-bottom: 15px;
    }

    .page-50jili-vip-login-register__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-50jili-vip-login-register__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Game Providers */
    .page-50jili-vip-login-register__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-50jili-vip-login-register__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #f0f0f0;
      border-radius: 5px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .page-50jili-vip-login-register__provider-logo {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
      margin: 0 auto 10px auto;
    }

    .page-50jili-vip-login-register__provider-name {
      font-size: 0.9em;
      color: #333;
      font-weight: 600;
    }

    /* FAQ Section */
    .page-50jili-vip-login-register__faq-section {
      background-color: #f0f8ff;
      border-radius: 8px;
    }

    .page-50jili-vip-login-register__faq-item {
      border-bottom: 1px solid #e0e0e0;
      margin-bottom: 0;
    }

    .page-50jili-vip-login-register__faq-item:last-child {
      border-bottom: none;
    }

    .page-50jili-vip-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #fff;
      transition: background-color 0.3s ease;
      border-radius: 8px;
      margin-bottom: 0;
    }

    .page-50jili-vip-login-register__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-50jili-vip-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-50jili-vip-login-register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-50jili-vip-login-register__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: #555;
      font-size: 0.95em;
      background-color: #f9f9f9;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .page-50jili-vip-login-register__faq-item.active .page-50jili-vip-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-50jili-vip-login-register__faq-item.active .page-50jili-vip-login-register__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-50jili-vip-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-50jili-vip-login-register__hero-subtitle {
        font-size: 1.4em;
      }

      .page-50jili-vip-login-register__title {
        font-size: 2em;
      }

      .page-50jili-vip-login-register__subtitle {
        font-size: 1.2em;
      }

      .page-50jili-vip-login-register__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-50jili-vip-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-50jili-vip-login-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-50jili-vip-login-register__features-grid,
      .page-50jili-vip-login-register__providers-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements */
      .page-50jili-vip-login-register__features-grid > *,
      .page-50jili-vip-login-register__providers-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-50jili-vip-login-register__faq-question {
        padding: 15px 20px;
      }

      .page-50jili-vip-login-register__faq-question h3 {
        font-size: 1em;
      }

      .page-50jili-vip-login-register__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
      }

      .page-50jili-vip-login-register__faq-item.active .page-50jili-vip-login-register__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive */
      .page-50jili-vip-login-register__image {
        max-width: 100%;
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .page-50jili-vip-login-register__hero-title {
        font-size: 2em;
      }

      .page-50jili-vip-login-register__hero-subtitle {
        font-size: 1.2em;
      }

      .page-50jili-vip-login-register__title {
        font-size: 1.8em;
      }
    }
  