
    :root {
      --page-bg-primary: #1a1a2e;
      --page-bg-secondary: #16213e;
      --page-accent-color-1: #e94560;
      --page-accent-color-2: #0f3460;
      --page-text-color: #e0e0e0;
      --page-heading-color: #ffffff;
      --page-button-bg: #e94560;
      --page-button-text: #ffffff;
    }

    /* General Styling */
    .page-bigbunny-gcash {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      background-color: var(--page-bg-primary);
    }

    .page-bigbunny-gcash__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-bigbunny-gcash__section--dark {
      background-color: var(--page-bg-secondary);
    }

    .page-bigbunny-gcash__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-bigbunny-gcash__title {
      font-size: 3em;
      color: var(--page-heading-color);
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-bigbunny-gcash__subtitle {
      font-size: 1.5em;
      color: var(--page-accent-color-1);
      margin-bottom: 40px;
      font-weight: 500;
    }

    .page-bigbunny-gcash__text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-bigbunny-gcash__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-button-bg);
      color: var(--page-button-text);
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-gcash__button:hover {
      background-color: #c93650;
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-bigbunny-gcash__hero-section {
      background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('[GALLERY:hero:1920x1080:gcash,online_betting,mobile_app]') no-repeat center center/cover;
      padding: 10px 20px 80px; /* Small padding-top as body has offset */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      position: relative;
    }

    .page-bigbunny-gcash__hero-content {
      max-width: 900px;
      text-align: center;
      z-index: 1;
    }

    /* Features Section */
    .page-bigbunny-gcash__features-section {
      background-color: var(--page-bg-primary);
      padding: 80px 20px;
    }

    .page-bigbunny-gcash__features-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-bigbunny-gcash__feature-item {
      background-color: var(--page-bg-secondary);
      border-radius: 10px;
      padding: 30px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    .page-bigbunny-gcash__feature-icon {
      margin-bottom: 20px;
      width: 150px; /* Minimum size */
      height: 150px; /* Minimum size */
      object-fit: contain;
    }

    .page-bigbunny-gcash__feature-title {
      font-size: 1.8em;
      color: var(--page-heading-color);
      margin-bottom: 15px;
    }

    .page-bigbunny-gcash__feature-description {
      font-size: 1em;
      color: var(--page-text-color);
    }

    /* How-To Section */
    .page-bigbunny-gcash__how-to-section {
      background-color: var(--page-bg-secondary);
      padding: 80px 20px;
    }

    .page-bigbunny-gcash__steps-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-bigbunny-gcash__step-item {
      background-color: var(--page-bg-primary);
      border-radius: 10px;
      padding: 30px;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
      position: relative;
    }

    .page-bigbunny-gcash__step-number {
      font-size: 3em;
      font-weight: bold;
      color: var(--page-accent-color-1);
      margin-bottom: 15px;
      line-height: 1;
    }

    .page-bigbunny-gcash__step-title {
      font-size: 1.5em;
      color: var(--page-heading-color);
      margin-bottom: 15px;
    }

    .page-bigbunny-gcash__step-description {
      font-size: 1em;
      color: var(--page-text-color);
    }

    .page-bigbunny-gcash__step-image {
      margin-top: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      width: 400px; /* Minimum size */
      height: 300px; /* Minimum size */
    }

    /* Games Showcase */
    .page-bigbunny-gcash__games-section {
      background-color: var(--page-bg-primary);
      padding: 80px 20px;
    }

    .page-bigbunny-gcash__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-bigbunny-gcash__game-card {
      background-color: var(--page-bg-secondary);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-bigbunny-gcash__game-thumbnail {
      width: 100%;
      height: 200px; /* Minimum size */
      object-fit: cover;
    }

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

    .page-bigbunny-gcash__game-title {
      font-size: 1.4em;
      color: var(--page-heading-color);
      margin-bottom: 10px;
    }

    .page-bigbunny-gcash__game-provider {
      font-size: 0.9em;
      color: var(--page-accent-color-1);
      margin-bottom: 15px;
    }

    /* Payment Methods */
    .page-bigbunny-gcash__payment-section {
      background-color: var(--page-bg-secondary);
      padding: 80px 20px;
    }

    .page-bigbunny-gcash__payment-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-bigbunny-gcash__payment-logo {
      width: 180px; /* Minimum size, but larger for logos */
      height: 80px; /* Minimum size */
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-bigbunny-gcash__payment-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Call to Action */
    .page-bigbunny-gcash__cta-section {
      background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('[GALLERY:cta:1920x600:bigbunny_app,play_now,mobile_casino]') no-repeat center center/cover;
      padding: 80px 20px;
    }

    .page-bigbunny-gcash__cta-title {
      font-size: 2.8em;
      color: var(--page-heading-color);
      margin-bottom: 20px;
    }

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

    /* FAQ Section */
    .page-bigbunny-gcash__faq-section {
      padding: 60px 20px;
      background-color: var(--page-bg-primary);
      color: var(--page-text-color);
      text-align: center;
    }

    .page-bigbunny-gcash__faq-title {
      font-size: 2.5em;
      color: var(--page-accent-color-1);
      margin-bottom: 40px;
      font-weight: 700;
    }

    .page-bigbunny-gcash__faq-list {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-bigbunny-gcash__faq-item {
      background-color: var(--page-bg-secondary);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-bigbunny-gcash__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-bg-secondary);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: 600;
      color: var(--page-text-color);
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-gcash__faq-question:hover {
      background-color: var(--page-accent-color-2);
    }

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

    .page-bigbunny-gcash__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-accent-color-1);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-bigbunny-gcash__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-bg-primary);
      color: var(--page-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-bigbunny-gcash__faq-answer p {
      margin: 0;
      line-height: 1.6;
    }

    /* General Image Responsiveness */
    .page-bigbunny-gcash img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    .page-bigbunny-gcash__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-bigbunny-gcash__title {
        font-size: 2.2em;
      }

      .page-bigbunny-gcash__subtitle {
        font-size: 1.2em;
      }

      .page-bigbunny-gcash__text {
        font-size: 0.95em;
      }

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

      .page-bigbunny-gcash__section {
        padding: 40px 15px;
      }

      .page-bigbunny-gcash__hero-section {
        min-height: 450px;
        padding-bottom: 60px;
      }

      .page-bigbunny-gcash__features-grid,
      .page-bigbunny-gcash__steps-grid,
      .page-bigbunny-gcash__games-grid {
        gap: 20px;
      }

      .page-bigbunny-gcash__feature-item,
      .page-bigbunny-gcash__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-bigbunny-gcash__features-grid,
      .page-bigbunny-gcash__steps-grid,
      .page-bigbunny-gcash__payment-logos {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bigbunny-gcash__feature-icon {
        width: 120px;
        height: 120px;
      }

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

      .page-bigbunny-gcash__step-number {
        font-size: 2.5em;
      }

      .page-bigbunny-gcash__step-title {
        font-size: 1.3em;
      }

      .page-bigbunny-gcash__game-thumbnail {
        height: 180px;
      }

      .page-bigbunny-gcash__game-title {
        font-size: 1.2em;
      }

      .page-bigbunny-gcash__payment-logo {
        width: 150px;
        height: 70px;
      }

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

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

      .page-bigbunny-gcash__faq-title {
        font-size: 2em;
      }
      .page-bigbunny-gcash__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-bigbunny-gcash__faq-question h3 {
        font-size: 1.1em;
      }
      .page-bigbunny-gcash__faq-answer {
        padding: 0 20px;
      }
      .page-bigbunny-gcash__faq-item.active .page-bigbunny-gcash__faq-answer {
        padding: 15px 20px !important;
      }
      .page-bigbunny-gcash__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding to avoid overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bigbunny-gcash__faq-item {
        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;
      }

      .page-bigbunny-gcash img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bigbunny-gcash__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  