
    /* CSS Styles for banca30 page */
    .page-banca30 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* General containers */
    .page-banca30__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Section padding */
    .page-banca30__section {
      padding: 60px 0;
      text-align: center;
    }

    /* Headings */
    .page-banca30__heading {
      color: #FFD700;
      margin-bottom: 25px;
      font-size: 2.5em;
      text-transform: uppercase;
    }

    .page-banca30__sub-heading {
      color: #FFD700;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-banca30__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #FFFFFF;
    }

    /* Buttons */
    .page-banca30__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-banca30__button:hover {
      background-color: #FFFF00;
      color: #333333;
    }

    /* Hero Section */
    .page-banca30__hero-section {
      position: relative;
      text-align: center;
      padding-top: 120px; /* Desktop safe zone for fixed header */
      padding-bottom: 40px;
      background-color: #000000; /* Ensure background is black */
    }

    .page-banca30__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    
    .page-banca30__hero-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-banca30__hero-content {
      padding: 20px 0;
    }

    .page-banca30__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-top: 20px;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-banca30__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game Categories Section */
    .page-banca30__game-categories {
      background-color: #0a0a0a;
      padding: 60px 0;
    }

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

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

    .page-banca30__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    }

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

    .page-banca30__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #FFD700;
    }

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

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

    /* Game Providers Section */
    .page-banca30__providers-section {
      background-color: #000000;
      padding: 60px 0;
    }

    .page-banca30__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-banca30__provider-logo-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-banca30__provider-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 10px;
      background-color: #1a1a1a;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }

    .page-banca30__provider-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }

    /* Promotions Section */
    .page-banca30__promotions-section {
      background-color: #0a0a0a;
      padding: 60px 0;
    }

    .page-banca30__promo-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-banca30__promo-title {
      color: #FFD700;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-banca30__promo-description {
      color: #FFFFFF;
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    /* Payment Methods Section */
    .page-banca30__payment-section {
      background-color: #000000;
      padding: 60px 0;
    }

    .page-banca30__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-banca30__payment-logo-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        flex: 0 0 calc(33.333% - 20px); /* 3 items per row on desktop */
        max-width: 150px;
    }

    .page-banca30__payment-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      padding: 10px;
      background-color: #1a1a1a;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
      transition: transform 0.3s ease;
    }
    
    .page-banca30__payment-logo:hover {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .page-banca30__faq-section {
      background-color: #0a0a0a;
      padding: 60px 0;
    }

    .page-banca30__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-banca30__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-banca30__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-banca30__faq-question h3 {
        margin: 0;
        color: #FFD700;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-banca30__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-banca30__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #1a1a1a;
      color: #FFFFFF;
      font-size: 1.05em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

    /* Call to Action Section */
    .page-banca30__cta-section {
      background-color: #000000;
      padding: 60px 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-banca30__hero-section {
        padding-top: 100px; /* Mobile safe zone for fixed header */
      }

      .page-banca30__hero-title {
        font-size: 2.2em;
      }

      .page-banca30__hero-description {
        font-size: 1em;
      }

      .page-banca30__heading {
        font-size: 2em;
      }

      .page-banca30__sub-heading {
        font-size: 1.5em;
      }

      .page-banca30__game-grid {
        grid-template-columns: 1fr;
      }
      
      .page-banca30__game-card-image {
        height: 180px;
      }

      .page-banca30__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-banca30__payment-grid {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .page-banca30__payment-logo-container {
        flex: 0 0 calc(50% - 20px); /* 2 items per row on mobile */
        max-width: none; /* Allow full flex item width */
      }

      .page-banca30__faq-question,
      .page-banca30__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }

      /* Ensure all images are responsive on mobile */
      .page-banca30 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-banca30__hero-image-container,
      .page-banca30__game-card-image-container,
      .page-banca30__provider-logo-container,
      .page-banca30__payment-logo-container {
          width: 100%;
          max-width: 100%;
          overflow: hidden;
          box-sizing: border-box;
      }
    }
  