
    /* Base styles for the page */
    .page-bigbunny-apps {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-bigbunny-apps__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      box-sizing: border-box;
    }

    .page-bigbunny-apps__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

    .page-bigbunny-apps__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
      z-index: 2;
    }

    .page-bigbunny-apps__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-bigbunny-apps__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #FFD700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    .page-bigbunny-apps__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-bigbunny-apps__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Gold */
      color: #333;
      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-bigbunny-apps__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Floating Register/Login Buttons */
    .page-bigbunny-apps__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-bigbunny-apps__floating-button {
      background-color: #FFD700; /* Gold */
      color: #333;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bigbunny-apps__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Content Sections */
    .page-bigbunny-apps__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      box-sizing: border-box;
    }
    .page-bigbunny-apps__section:first-of-type {
      margin-top: 30px; /* Space below hero if hero has minimal padding-top */
    }

    .page-bigbunny-apps__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-bigbunny-apps__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-bigbunny-apps__section-text {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
    }

    /* Features Grid */
    .page-bigbunny-apps__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-bigbunny-apps__feature-item {
      background-color: #f0f0f0;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .page-bigbunny-apps__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-bigbunny-apps__feature-icon {
      width: 100%; /* Ensure responsive behavior */
      max-width: 250px; /* Example size, min 200x200 */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-bigbunny-apps__feature-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-bigbunny-apps__feature-description {
      color: #666;
    }

    /* Product Showcase */
    .page-bigbunny-apps__product-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-bigbunny-apps__product-card {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 350px;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-bigbunny-apps__product-card:hover {
      transform: translateY(-5px);
    }

    .page-bigbunny-apps__product-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-bigbunny-apps__product-info {
      padding: 20px;
    }

    .page-bigbunny-apps__product-title {
      font-size: 1.3em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-bigbunny-apps__product-description {
      color: #666;
      font-size: 0.95em;
    }

    /* Payment Methods & Game Providers */
    .page-bigbunny-apps__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Min 150px for logos, but images must be >200px */
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-bigbunny-apps__logo-item {
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      background-color: #fefefe;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      box-sizing: border-box;
      width: 100%;
      max-width: 220px; /* Ensure logos don't get too big */
    }

    .page-bigbunny-apps__logo-image {
      width: 100%;
      max-width: 200px; /* Minimum image size 200x200, so this would be a logo *image* not an icon */
      height: auto;
      object-fit: contain;
      max-height: 100px; /* Restrict height for visual balance */
      max-width: 100%; /* Responsive image */
    }

    .page-bigbunny-apps__logo-text {
        margin-top: 10px;
        font-size: 0.9em;
        color: #555;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-bigbunny-apps__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-bigbunny-apps__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .page-bigbunny-apps__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #FFD700; /* Gold for question background */
      color: #333;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-apps__faq-question:hover {
      background-color: #e6c200;
    }

    .page-bigbunny-apps__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-bigbunny-apps__faq-item.active .page-bigbunny-apps__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or just change text to '-' */
    }

    .page-bigbunny-apps__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    .page-bigbunny-apps__faq-answer p {
      margin: 0;
      color: #555;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-bigbunny-apps__hero-title {
        font-size: 2.5em;
      }
      .page-bigbunny-apps__hero-subtitle {
        font-size: 1.3em;
      }
      .page-bigbunny-apps__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-bigbunny-apps__hero-section {
        min-height: 350px;
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-bigbunny-apps__hero-title {
        font-size: 2em;
      }
      .page-bigbunny-apps__hero-subtitle {
        font-size: 1.1em;
      }
      .page-bigbunny-apps__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bigbunny-apps__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-bigbunny-apps__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-bigbunny-apps__section {
        padding: 30px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }
      .page-bigbunny-apps__section-title {
        font-size: 1.8em;
      }
      .page-bigbunny-apps__section-text {
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-bigbunny-apps__features-grid,
      .page-bigbunny-apps__product-showcase,
      .page-bigbunny-apps__logos-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
      }

      .page-bigbunny-apps__feature-item,
      .page-bigbunny-apps__product-card,
      .page-bigbunny-apps__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding to match section */
        padding-right: 15px;
      }
      .page-bigbunny-apps__feature-description,
      .page-bigbunny-apps__product-description,
      .page-bigbunny-apps__logo-text,
      .page-bigbunny-apps__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-bigbunny-apps__feature-icon,
      .page-bigbunny-apps__product-image,
      .page-bigbunny-apps__logo-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

      .page-bigbunny-apps__faq-question {
        padding: 15px 20px;
      }
      .page-bigbunny-apps__faq-question h3 {
        font-size: 1.1em;
      }
      .page-bigbunny-apps__faq-answer {
        padding: 0 20px;
      }
      .page-bigbunny-apps__faq-item.active .page-bigbunny-apps__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-bigbunny-apps__hero-title {
        font-size: 1.8em;
      }
      .page-bigbunny-apps__hero-subtitle {
        font-size: 0.9em;
      }
      .page-bigbunny-apps__section-title {
        font-size: 1.5em;
      }
    }
  