
    /* Base styles for the page-bigbunny-ph-app */
    .page-bigbunny-ph-app {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

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

    .page-bigbunny-ph-app__section--dark {
      background-color: #2a004a;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      box-shadow: none;
      border-radius: 0;
    }

    .page-bigbunny-ph-app__section--dark h2,
    .page-bigbunny-ph-app__section--dark h3 {
      color: #ffd700;
    }

    .page-bigbunny-ph-app__title {
      font-size: 2.8em;
      color: #4a0072;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-bigbunny-ph-app__subtitle {
      font-size: 1.8em;
      color: #6a00a8;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-bigbunny-ph-app__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-bigbunny-ph-app__button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bigbunny-ph-app__button:hover {
      background-color: #e03a00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-bigbunny-ph-app__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, #4a0072, #2a004a);
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-bigbunny-ph-app__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-bigbunny-ph-app__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

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

    .page-bigbunny-ph-app__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    /* Features/Games Grid */
    .page-bigbunny-ph-app__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

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

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

    .page-bigbunny-ph-app__feature-icon {
      width: 150px; /* Minimum 200x200, so 150px is not allowed, need to adjust */
      height: 150px; /* Minimum 200x200, so 150px is not allowed, need to adjust */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    /* Adjusted to meet 200x200 minimum image size requirement */
    .page-bigbunny-ph-app__feature-image {
        width: 200px; /* Enforce minimum width */
        height: 200px; /* Enforce minimum height */
        object-fit: cover; /* Cover ensures the image fills the area without distortion */
        margin-bottom: 15px;
        border-radius: 8px;
        max-width: 100%;
        height: auto; /* Maintain aspect ratio */
        box-sizing: border-box;
    }


    .page-bigbunny-ph-app__feature-title {
      font-size: 1.4em;
      color: #4a0072;
      margin-bottom: 10px;
    }

    .page-bigbunny-ph-app__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Payment Methods */
    .page-bigbunny-ph-app__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-bigbunny-ph-app__payment-item {
      background-color: #f0f0f0;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: #4a0072;
      box-sizing: border-box; /* Crucial for responsive lists */
      width: auto; /* Allow items to size naturally */
    }

    .page-bigbunny-ph-app__payment-image {
      max-width: 200px;
      height: auto;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      max-width: 100%;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-bigbunny-ph-app__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bigbunny-ph-app__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-bigbunny-ph-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #6a00a8;
      color: #fff;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bigbunny-ph-app__faq-question:hover {
      background-color: #4a0072;
    }

    .page-bigbunny-ph-app__faq-question h3 {
      margin: 0;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bigbunny-ph-app__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 24px;
      text-align: center;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-bigbunny-ph-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      background-color: #fff;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-bigbunny-ph-app__faq-item.active .page-bigbunny-ph-app__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-bigbunny-ph-app__faq-item.active .page-bigbunny-ph-app__faq-toggle {
      content: '−';
    }

    .page-bigbunny-ph-app__faq-answer p {
      margin-bottom: 10px;
    }

    .page-bigbunny-ph-app__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(45deg, #ff4500, #ff8c00);
      color: #fff;
      border-radius: 8px;
    }

    .page-bigbunny-ph-app__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-bigbunny-ph-app__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-bigbunny-ph-app__hero-title {
        font-size: 3em;
      }
      .page-bigbunny-ph-app__hero-description {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-bigbunny-ph-app__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-bigbunny-ph-app__hero-title {
        font-size: 2.2em;
      }

      .page-bigbunny-ph-app__hero-description {
        font-size: 1.1em;
      }

      .page-bigbunny-ph-app__title {
        font-size: 2em;
      }

      .page-bigbunny-ph-app__subtitle {
        font-size: 1.5em;
      }

      .page-bigbunny-ph-app__feature-card {
        padding: 20px;
      }

      .page-bigbunny-ph-app__feature-image {
        width: 200px !important; /* Ensure min width */
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-bigbunny-ph-app__payment-methods-list {
        flex-direction: column;
        align-items: center;
      }

      .page-bigbunny-ph-app__payment-item {
        width: 100% !important;
        max-width: 300px !important; /* Limit width for individual items */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
      }

      .page-bigbunny-ph-app__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-bigbunny-ph-app__faq-answer {
        padding: 0 20px;
      }

      .page-bigbunny-ph-app__faq-item.active .page-bigbunny-ph-app__faq-answer {
        padding: 15px 20px !important;
      }

      .page-bigbunny-ph-app__cta-title {
        font-size: 2em;
      }

      .page-bigbunny-ph-app__cta-text {
        font-size: 1em;
      }

      /* General image responsiveness */
      .page-bigbunny-ph-app img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item specific for UL/OL if used for general lists */
      .page-bigbunny-ph-app ul, .page-bigbunny-ph-app ol {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-bigbunny-ph-app ul li, .page-bigbunny-ph-app ol li {
        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;
      }
    }

    @media (max-width: 480px) {
      .page-bigbunny-ph-app__hero-title {
        font-size: 1.8em;
      }
      .page-bigbunny-ph-app__hero-description {
        font-size: 0.9em;
      }
      .page-bigbunny-ph-app__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  