
    /* Page specific CSS styles */
    .page-bigbunny-casino-app-download-free {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
    }

    .page-bigbunny-casino-app-download-free__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bigbunny-casino-app-download-free__section--dark {
      background-color: #0f0f1d;
    }

    .page-bigbunny-casino-app-download-free__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: bold;
    }

    .page-bigbunny-casino-app-download-free__section-subtitle {
      font-size: 1.2em;
      color: #c0c0c0;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-bigbunny-casino-app-download-free__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 20px 80px; /* Adjusted padding-top as per fixed navbar rule */
      color: #ffffff;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    }

    .page-bigbunny-casino-app-download-free__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-bigbunny-casino-app-download-free__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-bigbunny-casino-app-download-free__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-bigbunny-casino-app-download-free__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-bigbunny-casino-app-download-free__cta-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-bigbunny-casino-app-download-free__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Features Section */
    .page-bigbunny-casino-app-download-free__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-bigbunny-casino-app-download-free__feature-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%; /* Ensure equal height */
      box-sizing: border-box;
    }

    .page-bigbunny-casino-app-download-free__feature-item:hover {
      transform: translateY(-10px);
      background-color: #3a3a5a;
    }

    .page-bigbunny-casino-app-download-free__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 10px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-bigbunny-casino-app-download-free__feature-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-bigbunny-casino-app-download-free__feature-description {
      color: #c0c0c0;
      font-size: 0.95em;
      flex-grow: 1; /* Allows description to take available space */
    }

    /* How to Download Section */
    .page-bigbunny-casino-app-download-free__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-bigbunny-casino-app-download-free__step-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-bigbunny-casino-app-download-free__step-number {
      background-color: #ffcc00;
      color: #1a1a2e;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.3em;
      flex-shrink: 0;
      margin-right: 20px;
    }

    .page-bigbunny-casino-app-download-free__step-content {
      flex-grow: 1;
    }

    .page-bigbunny-casino-app-download-free__step-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 5px;
    }

    .page-bigbunny-casino-app-download-free__step-description {
      color: #c0c0c0;
      font-size: 1em;
    }

    /* Game Providers / Payment Methods Section */
    .page-bigbunny-casino-app-download-free__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-bigbunny-casino-app-download-free__grid-item {
      background-color: #2a2a4a;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-bigbunny-casino-app-download-free__grid-image {
      width: 120px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-bigbunny-casino-app-download-free__grid-text {
      color: #ffcc00;
      font-weight: bold;
      font-size: 1em;
    }

    /* Testimonials/Why Choose Section */
    .page-bigbunny-casino-app-download-free__highlight-text {
      font-size: 1.1em;
      color: #e0e0e0;
      max-width: 800px;
      margin: 20px auto 40px;
    }

    /* FAQ Section */
    .page-bigbunny-casino-app-download-free__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-bigbunny-casino-app-download-free__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bigbunny-casino-app-download-free__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bigbunny-casino-app-download-free__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-bigbunny-casino-app-download-free__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: inherit; /* Ensure color is inherited from parent */
    }

    .page-bigbunny-casino-app-download-free__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-bigbunny-casino-app-download-free__faq-item.active .page-bigbunny-casino-app-download-free__faq-toggle {
      transform: rotate(45deg);
    }

    .page-bigbunny-casino-app-download-free__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will be overridden */
      color: #c0c0c0;
      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-casino-app-download-free__faq-item.active .page-bigbunny-casino-app-download-free__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bigbunny-casino-app-download-free__hero-title {
        font-size: 2.5em;
      }

      .page-bigbunny-casino-app-download-free__hero-description {
        font-size: 1.1em;
      }

      .page-bigbunny-casino-app-download-free__section-title {
        font-size: 2em;
      }

      .page-bigbunny-casino-app-download-free__features-grid {
        grid-template-columns: 1fr;
      }

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

      .page-bigbunny-casino-app-download-free__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-bigbunny-casino-app-download-free__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-bigbunny-casino-app-download-free__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-bigbunny-casino-app-download-free__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-bigbunny-casino-app-download-free__grid-item {
        padding: 15px;
      }

      .page-bigbunny-casino-app-download-free__grid-image {
        width: 100px;
        height: 70px;
      }

      .page-bigbunny-casino-app-download-free__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-bigbunny-casino-app-download-free__faq-answer {
        padding: 15px 20px !important; /* Adjust for mobile */
      }

      .page-bigbunny-casino-app-download-free__steps-list {
        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-casino-app-download-free__features-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-bigbunny-casino-app-download-free__hero-description {
        font-size: 1em;
      }

      .page-bigbunny-casino-app-download-free__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  