
    /* CSS Styles for Banca love page */
    :root {
      --page-bancalove-primary-color: #e44d26; /* A vibrant, energetic color */
      --page-bancalove-secondary-color: #ff9800; /* Complementary accent */
      --page-bancalove-dark-bg: #2c3e50; /* Dark background for contrast */
      --page-bancalove-light-bg: #f5f5f5; /* Light background */
      --page-bancalove-text-color: #333;
      --page-bancalove-white: #ffffff;
      --page-bancalove-border-radius: 8px;
      --page-bancalove-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      --page-bancalove-transition: all 0.3s ease-in-out;
    }

    .page-bancalove {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-bancalove-text-color);
      background-color: var(--page-bancalove-light-bg);
      overflow-x: hidden; /* Prevent horizontal scroll from overflow content */
    }

    /* Fixed header padding */
    .page-bancalove__hero-section {
      padding-top: 80px; /* Adjust based on actual header height */
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .page-bancalove__hero-section {
        padding-top: 60px; /* Adjust for mobile header height */
      }
    }

    .page-bancalove__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .page-bancalove__section--dark {
      background-color: var(--page-bancalove-dark-bg);
      color: var(--page-bancalove-white);
    }

    .page-bancalove__section-title {
      font-size: 2.5em;
      color: var(--page-bancalove-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    .page-bancalove__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-bancalove-secondary-color);
      border-radius: 2px;
    }
    .page-bancalove__section--dark .page-bancalove__section-title {
      color: var(--page-bancalove-secondary-color);
    }
    .page-bancalove__section--dark .page-bancalove__section-title::after {
      background-color: var(--page-bancalove-primary-color);
    }

    .page-bancalove__text-center {
      text-align: center;
    }

    .page-bancalove__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-bancalove-primary-color);
      color: var(--page-bancalove-white);
      border: none;
      border-radius: var(--page-bancalove-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: var(--page-bancalove-transition);
      box-shadow: var(--page-bancalove-shadow);
    }
    .page-bancalove__button:hover {
      background-color: var(--page-bancalove-secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    /* Hero Section */
    .page-bancalove__hero-content {
      position: relative;
      background-size: cover;
      background-position: center center;
      color: var(--page-bancalove-white);
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }
    .page-bancalove__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: 1;
    }
    .page-bancalove__hero-text {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .page-bancalove__hero-text h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-bancalove-white);
    }
    .page-bancalove__hero-text p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-bancalove-white);
    }

    /* Floating Login Button */
    .page-bancalove__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      text-align: center;
    }
    .page-bancalove__floating-promo-button {
      background-color: #ff0000; /* Eye-catching red */
      animation: page-bancalove__pulse 2s infinite;
      box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-bancalove-white);
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: block; /* Ensure it takes full width of its container */
      width: auto; /* Allow button to size based on content */
    }
    .page-bancalove__floating-promo-button:hover {
      background-color: #cc0000;
      animation: none;
    }
    @keyframes page-bancalove__pulse {
      0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); }
      50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 0, 0, 0.8); }
      100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); }
    }
    /* Mobile adjustments for floating button */
    @media (max-width: 768px) {
      .page-bancalove__floating-promo {
        bottom: 15px;
        right: 15px;
      }
      .page-bancalove__floating-promo-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }


    /* Game Categories Section */
    .page-bancalove__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .page-bancalove__game-item {
      background-color: var(--page-bancalove-white);
      border-radius: var(--page-bancalove-border-radius);
      box-shadow: var(--page-bancalove-shadow);
      overflow: hidden;
      text-align: center;
      transition: var(--page-bancalove-transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }
    .page-bancalove__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .page-bancalove__game-item-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image container */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0; /* Placeholder background */
    }
    .page-bancalove__game-item-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures images cover the area without distortion */
      display: block;
      max-width: 100%; /* Ensure image is responsive */
    }
    .page-bancalove__game-item-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-bancalove__game-item h3 {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-bancalove-primary-color);
    }
    .page-bancalove__game-item p {
      font-size: 0.95em;
      color: var(--page-bancalove-text-color);
      margin-bottom: 15px;
    }
    .page-bancalove__game-item .page-bancalove__button {
      margin-top: auto; /* Push button to the bottom */
      width: calc(100% - 40px); /* Adjust width to account for padding */
      align-self: center;
      padding: 10px 20px;
      font-size: 0.95em;
    }

    /* Why Choose Us Section */
    .page-bancalove__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .page-bancalove__feature-item {
      background-color: var(--page-bancalove-white);
      border-radius: var(--page-bancalove-border-radius);
      box-shadow: var(--page-bancalove-shadow);
      padding: 30px;
      text-align: center;
      transition: var(--page-bancalove-transition);
    }
    .page-bancalove__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .page-bancalove__feature-item-icon {
      width: 100px; /* Adjust size as needed */
      height: 100px;
      margin: 0 auto 20px;
      display: block;
      object-fit: contain;
      max-width: 100%;
    }
    .page-bancalove__feature-item h3 {
      font-size: 1.4em;
      color: var(--page-bancalove-primary-color);
      margin-bottom: 15px;
    }
    .page-bancalove__feature-item p {
      font-size: 1em;
      color: var(--page-bancalove-text-color);
    }

    /* Call to Action Section */
    .page-bancalove__cta-section {
      background-color: var(--page-bancalove-primary-color);
      color: var(--page-bancalove-white);
      text-align: center;
      padding: 60px 20px;
    }
    .page-bancalove__cta-section h2 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-bancalove-white);
    }
    .page-bancalove__cta-section p {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-bancalove__cta-button {
      background-color: var(--page-bancalove-secondary-color);
      color: var(--page-bancalove-dark-bg);
      padding: 18px 40px;
      font-size: 1.3em;
      font-weight: bold;
      border-radius: 50px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    .page-bancalove__cta-button:hover {
      background-color: var(--page-bancalove-white);
      color: var(--page-bancalove-primary-color);
    }

    /* FAQ Section */
    .page-bancalove__faq-section {
      background-color: var(--page-bancalove-light-bg);
      padding: 60px 20px;
    }
    .page-bancalove__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .page-bancalove__faq-item {
      background-color: var(--page-bancalove-white);
      border-radius: var(--page-bancalove-border-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }
    .page-bancalove__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-bancalove__faq-question:hover {
      background-color: #f0f0f0;
    }
    .page-bancalove__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-bancalove-text-color);
      pointer-events: none; /* Crucial for click event on parent */
      flex-grow: 1;
      text-align: left;
    }
    .page-bancalove__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-bancalove-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }
    .page-bancalove__faq-item.active .page-bancalove__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }
    .page-bancalove__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-bancalove-text-color);
      font-size: 0.95em;
      background-color: var(--page-bancalove-white);
    }
    .page-bancalove__faq-item.active .page-bancalove__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
      .page-bancalove__section {
        padding: 30px 15px;
      }
      .page-bancalove__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-bancalove__hero-text h1 {
        font-size: 2.5em;
      }
      .page-bancalove__hero-text p {
        font-size: 1.1em;
      }
      .page-bancalove__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-bancalove__game-grid,
      .page-bancalove__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-bancalove__game-item .page-bancalove__button {
          width: calc(100% - 40px);
      }
      .page-bancalove__cta-section h2 {
        font-size: 2em;
      }
      .page-bancalove__cta-section p {
        font-size: 1em;
      }
      .page-bancalove__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      .page-bancalove__faq-question {
        padding: 15px 20px;
      }
      .page-bancalove__faq-question h3 {
        font-size: 1.1em;
      }
      .page-bancalove__faq-toggle {
        font-size: 1.5em;
      }
      .page-bancalove__faq-answer {
        padding: 0 20px;
      }
      .page-bancalove__faq-item.active .page-bancalove__faq-answer {
        padding: 15px 20px !important;
      }

      /* List item specific mobile adjustments */
      .page-bancalove__game-grid .page-bancalove__game-item,
      .page-bancalove__features-grid .page-bancalove__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-bancalove__game-item p,
      .page-bancalove__feature-item p,
      .page-bancalove__faq-answer {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }

    /* Smallest mobile devices */
    @media (max-width: 375px) {
        .page-bancalove__hero-text h1 {
            font-size: 2em;
        }
        .page-bancalove__hero-text p {
            font-size: 1em;
        }
        .page-bancalove__floating-promo-button {
            padding: 8px 15px;
            font-size: 0.9em;
        }
        .page-bancalove__section-title {
            font-size: 1.8em;
        }
    }

  