
    /* Base styles for the page-banca scope */
    .page-banca {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Ensure content is not hidden by fixed header */
    .page-banca__hero-section {
      padding-top: 120px; /* Desktop safety zone */
    }

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

    .page-banca__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-banca__section--dark {
      background-color: #1a1a1a;
    }

    .page-banca__section-title {
      color: #FFD700; /* Yellow accent */
      font-size: 2.5em;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-banca__section-subtitle {
      color: #FFFFFF;
      font-size: 1.2em;
      margin-bottom: 40px;
    }

    .page-banca__text--highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Hero Section */
    .page-banca__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Minimum height for hero */
      background-color: #000000; /* Ensure black background if image isn't full height */
    }

    .page-banca__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center the image if it's smaller than wrapper */
    }

    .page-banca__hero-image {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
      margin: 0 auto; /* Center image */
    }

    .page-banca__hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 20px;
      margin-top: -80px; /* Pull content up slightly over the image if needed, adjust as per image design */
    }

    .page-banca__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-banca__hero-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-banca__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Yellow */
      color: #000000; /* Black text for contrast */
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-banca__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-banca__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-banca__pulse 2s infinite;
    }

    .page-banca__floating-login-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
      animation: none;
    }

    @keyframes page-banca__pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    }

    /* Game Categories/Product Display */
    .page-banca__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-banca__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-banca__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-banca__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-banca__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-banca__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-banca__game-card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-banca__game-card-title a:hover {
      color: #FFFFFF;
    }

    .page-banca__game-card-description {
      color: #CCCCCC;
      font-size: 0.9em;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Game Providers */
    .page-banca__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-banca__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Fixed height for logos */
        background-color: #1a1a1a;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-banca__provider-logo-wrapper:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-banca__provider-logo {
      max-width: 80%;
      max-height: 70%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Us */
    .page-banca__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-banca__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-banca__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-banca__feature-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-banca__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: inline-block; /* To center */
    }

    .page-banca__feature-title {
      color: #FFD700;
      font-size: 1.3em;
      margin-bottom: 10px;
      text-align: center;
    }

    .page-banca__feature-description {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-banca__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-banca__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-banca__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2a2a2a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-banca__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-banca__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-banca__faq-toggle {
      font-size: 1.5em;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-banca__faq-item.active .page-banca__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-banca__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: #CCCCCC;
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-banca__faq-item.active .page-banca__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px !important; /* Ensure padding is applied when active */
      opacity: 1;
    }

    /* Call to Action Bottom */
    .page-banca__cta-bottom {
      background-color: #FFD700;
      color: #000000;
      padding: 50px 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 50px;
    }

    .page-banca__cta-bottom-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-banca__cta-bottom-text {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-banca__cta-bottom-button {
      background-color: #000000;
      color: #FFD700;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .page-banca__cta-bottom-button:hover {
      background-color: #333333;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-banca__hero-section {
        padding-top: 100px; /* Mobile safety zone */
        min-height: 400px;
      }

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

      .page-banca__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-banca__game-grid,
      .page-banca__providers-grid,
      .page-banca__features-grid {
        grid-template-columns: 1fr;
      }

      .page-banca__game-card-image {
        height: 180px;
      }

      .page-banca__floating-login-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      .page-banca__faq-question h3 {
        font-size: 1em;
      }

      .page-banca__faq-answer {
        padding: 0 15px;
      }

      .page-banca__faq-item.active .page-banca__faq-answer {
        padding: 15px !important;
      }

      /* Responsive image optimization for all images */
      .page-banca img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-banca__hero-image-wrapper,
      .page-banca__game-card-image-wrapper,
      .page-banca__provider-logo-wrapper,
      .page-banca__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-banca__hero-subtitle {
        font-size: 1em;
      }

      .page-banca__section-title {
        font-size: 1.8em;
      }

      .page-banca__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-banca__cta-bottom-title {
        font-size: 1.8em;
      }

      .page-banca__cta-bottom-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  