
    :root {
      --page-bigbunny-ph-2-primary-color: #ff4500; /* OrangeRed */
      --page-bigbunny-ph-2-secondary-color: #ffd700; /* Gold */
      --page-bigbunny-ph-2-background-dark: #1a1a1a;
      --page-bigbunny-ph-2-background-light: #2c2c2c;
      --page-bigbunny-ph-2-text-color: #f0f0f0;
      --page-bigbunny-ph-2-border-color: #444;
      --page-bigbunny-ph-2-button-hover: #e03d00;
    }

    .page-bigbunny-ph-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-bigbunny-ph-2-text-color);
      background-color: var(--page-bigbunny-ph-2-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

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

    .page-bigbunny-ph-2__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--page-bigbunny-ph-2-background-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-2__section--dark {
      background-color: var(--page-bigbunny-ph-2-background-dark);
    }

    .page-bigbunny-ph-2__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:online_gaming,philippines_casino,app_interface]');
      background-size: cover;
      background-position: center;
      color: #fff;
      border-radius: 0; /* No border-radius for hero to fill width */
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-bigbunny-ph-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-bigbunny-ph-2-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bigbunny-ph-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bigbunny-ph-2__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-bigbunny-ph-2-primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bigbunny-ph-2__button:hover {
      background-color: var(--page-bigbunny-ph-2-button-hover);
    }

    .page-bigbunny-ph-2__heading {
      font-size: 2.5em;
      color: var(--page-bigbunny-ph-2-secondary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-bigbunny-ph-2__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-bigbunny-ph-2-primary-color);
      border-radius: 2px;
    }

    .page-bigbunny-ph-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-bigbunny-ph-2__image-wrapper {
      text-align: center;
      margin: 40px 0;
    }

    .page-bigbunny-ph-2__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bigbunny-ph-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-bigbunny-ph-2__grid-item {
      background-color: var(--page-bigbunny-ph-2-background-dark);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-bigbunny-ph-2-border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-bigbunny-ph-2__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-bigbunny-ph-2__grid-item-icon {
      max-width: 100px;
      height: auto;
      margin-bottom: 15px;
    }

    .page-bigbunny-ph-2__grid-item-title {
      color: var(--page-bigbunny-ph-2-primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-bigbunny-ph-2__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-bigbunny-ph-2__list-item {
      background-color: var(--page-bigbunny-ph-2-background-dark);
      padding: 12px 20px;
      border-radius: 25px;
      border: 1px solid var(--page-bigbunny-ph-2-primary-color);
      color: var(--page-bigbunny-ph-2-text-color);
      font-weight: bold;
      white-space: nowrap; /* Prevent breaking on smaller screens */
      box-sizing: border-box;
    }

    .page-bigbunny-ph-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-bigbunny-ph-2__floating-button {
      padding: 12px 25px;
      font-size: 1.1em;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-bigbunny-ph-2__floating-button--register {
      background-color: var(--page-bigbunny-ph-2-primary-color);
      color: #fff;
    }

    .page-bigbunny-ph-2__floating-button--login {
      background-color: var(--page-bigbunny-ph-2-secondary-color);
      color: var(--page-bigbunny-ph-2-background-dark);
    }

    .page-bigbunny-ph-2__faq-section {
      background-color: var(--page-bigbunny-ph-2-background-light);
      border-radius: 10px;
      padding: 40px 20px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-bigbunny-ph-2__faq-item {
      background-color: var(--page-bigbunny-ph-2-background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-bigbunny-ph-2-border-color);
    }

    .page-bigbunny-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--page-bigbunny-ph-2-secondary-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-ph-2__faq-question:hover {
      background-color: #444;
    }

    .page-bigbunny-ph-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-bigbunny-ph-2-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-bigbunny-ph-2__faq-item.active .page-bigbunny-ph-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-bigbunny-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-bigbunny-ph-2-text-color);
      background-color: var(--page-bigbunny-ph-2-background-dark);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bigbunny-ph-2__hero-title {
        font-size: 2.5em;
      }

      .page-bigbunny-ph-2__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-bigbunny-ph-2__grid {
        grid-template-columns: 1fr;
      }

      .page-bigbunny-ph-2__list {
        flex-direction: column;
        align-items: center;
      }

      .page-bigbunny-ph-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-bigbunny-ph-2__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bigbunny-ph-2__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

      .page-bigbunny-ph-2__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-bigbunny-ph-2__floating-buttons {
        flex-direction: column;
        bottom: 15px;
        gap: 10px;
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
      }

      .page-bigbunny-ph-2__floating-button {
        width: 100%;
        text-align: center;
      }
    }
    
    @media (max-width: 480px) {
      .page-bigbunny-ph-2__hero-title {
        font-size: 2em;
      }
      .page-bigbunny-ph-2__hero-subtitle {
        font-size: 1em;
      }
      .page-bigbunny-ph-2__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-bigbunny-ph-2__heading {
        font-size: 1.8em;
      }
    }
  