
    /* General styles for the page, scoped to page-bigbunny-games */
    .page-bigbunny-games {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      /* Fallback for header offset if shared.css doesn't provide body padding */
      /* padding-top: var(--header-offset, 122px); */
    }

    .page-bigbunny-games__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-bigbunny-games__section--dark {
      background-color: #2a003a; /* Dark purple */
      color: #fff;
    }

    .page-bigbunny-games__section--purple-gradient {
        background: linear-gradient(135deg, #4a007a, #9c27b0); /* Purple gradient */
        color: #fff;
    }

    .page-bigbunny-games__heading {
      text-align: center;
      color: #4a007a; /* Dark purple */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-bigbunny-games__section--dark .page-bigbunny-games__heading,
    .page-bigbunny-games__section--purple-gradient .page-bigbunny-games__heading {
      color: #fff;
    }

    .page-bigbunny-games__subheading {
      text-align: center;
      color: #6a1b9a; /* Medium purple */
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-bigbunny-games__text {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-bigbunny-games__hero {
      position: relative;
      width: 100%;
      height: 500px; /* Fixed height for hero */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      box-sizing: border-box;
      padding-top: 10px; /* Small decorative padding as body has offset */
    }

    .page-bigbunny-games__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      max-width: 100%;
      height: auto;
    }

    .page-bigbunny-games__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 0;
    }

    .page-bigbunny-games__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
    }

    .page-bigbunny-games__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #ffeb3b; /* Yellow accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bigbunny-games__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-bigbunny-games__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #9c27b0; /* Purple */
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bigbunny-games__button:hover {
      background-color: #6a1b9a; /* Darker purple on hover */
    }

    /* Game Categories Section */
    .page-bigbunny-games__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bigbunny-games__game-card {
      background-color: #fff;
      border-radius: 12px;
      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;
      box-sizing: border-box;
    }

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

    .page-bigbunny-games__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      max-width: 100%;
      height: auto;
    }

    .page-bigbunny-games__game-card-content {
      padding: 20px;
    }

    .page-bigbunny-games__game-card-title {
      font-size: 1.5em;
      color: #4a007a;
      margin-bottom: 10px;
    }

    .page-bigbunny-games__game-card-text {
      font-size: 0.95em;
      color: #555;
    }

    /* Promotions Section */
    .page-bigbunny-games__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bigbunny-games__promo-item {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-bigbunny-games__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-bigbunny-games__promo-content {
      padding: 20px;
    }

    .page-bigbunny-games__promo-title {
      font-size: 1.4em;
      color: #6a1b9a;
      margin-bottom: 10px;
    }

    .page-bigbunny-games__promo-text {
      font-size: 1em;
      color: #444;
      margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-bigbunny-games__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bigbunny-games__feature-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-bigbunny-games__feature-item:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .page-bigbunny-games__feature-title {
      font-size: 1.3em;
      color: #ffeb3b; /* Yellow accent */
      margin-bottom: 10px;
    }

    .page-bigbunny-games__feature-text {
      font-size: 0.95em;
      color: #eee;
    }

    /* Payment Methods & Providers Section */
    .page-bigbunny-games__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-bigbunny-games__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Fixed height for logos */
      width: 100%;
      max-width: 150px; /* Max width for logo items */
      box-sizing: border-box;
    }

    .page-bigbunny-games__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-bigbunny-games__faq-container {
      margin-top: 40px;
    }

    .page-bigbunny-games__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-bigbunny-games__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bigbunny-games__faq-question:hover {
      background-color: #e8e8e8;
    }

    .page-bigbunny-games__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #4a007a;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-bigbunny-games__faq-toggle {
      font-size: 1.8em;
      color: #6a1b9a;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-bigbunny-games__faq-item.active .page-bigbunny-games__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-bigbunny-games__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;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bigbunny-games__hero {
        height: 400px;
      }

      .page-bigbunny-games__hero-title {
        font-size: 2.5em;
      }

      .page-bigbunny-games__hero-description {
        font-size: 1em;
      }

      .page-bigbunny-games__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-bigbunny-games__section {
        padding: 30px 15px;
      }

      .page-bigbunny-games__game-categories,
      .page-bigbunny-games__promotions-grid,
      .page-bigbunny-games__features-grid,
      .page-bigbunny-games__logos-grid {
        grid-template-columns: 1fr; /* Single column layout for small screens */
      }

      /* List item specific responsive requirements */
      .page-bigbunny-games__game-card,
      .page-bigbunny-games__promo-item,
      .page-bigbunny-games__feature-item,
      .page-bigbunny-games__logo-item {
          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 mobile */
      }

      .page-bigbunny-games__game-card-text,
      .page-bigbunny-games__promo-text,
      .page-bigbunny-games__feature-text,
      .page-bigbunny-games__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      /* FAQ specific mobile adjustments */
      .page-bigbunny-games__faq-question {
          padding: 15px 20px;
      }
      .page-bigbunny-games__faq-question h3 {
          font-size: 1.1em;
      }
      .page-bigbunny-games__faq-answer {
          padding: 0 20px;
      }
      .page-bigbunny-games__faq-item.active .page-bigbunny-games__faq-answer {
          padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-bigbunny-games__hero-title {
        font-size: 2em;
      }
    }
  