
    /* Base Styles */
    .page-banca30 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for fixed floating button */
    }

    .page-banca30__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-banca30__section-title {
      font-size: 2.5em;
      color: #0056b3; /* Dark blue for titles */
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-banca30__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffc107; /* Accent yellow */
      border-radius: 2px;
    }

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

    .page-banca30__text-left {
      text-align: left;
    }

    /* Hero Section */
    .page-banca30__hero-section {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height for visual appeal */
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      padding-top: 60px; /* Space for fixed header */
    }

    .page-banca30__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .page-banca30__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      text-align: center;
    }

    .page-banca30__hero-title {
      font-size: 3em;
      margin-bottom: 10px;
      color: #ffc107; /* Accent yellow */
    }

    .page-banca30__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 20px;
    }

    .page-banca30__hero-button {
      display: inline-block;
      background-color: #007bff; /* Primary blue */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-banca30__hero-button:hover {
      background-color: #0056b3;
    }

    /* Floating Login Button */
    .page-banca30__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #dc3545; /* Red for urgency */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-size: 1.2em;
      font-weight: bold;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap; /* Prevent text wrapping */
      max-width: 90%; /* Ensure it doesn't overflow on small screens */
    }

    .page-banca30__floating-button:hover {
      background-color: #c82333;
      transform: translateX(-50%) translateY(-5px);
    }

    /* Intro Section */
    .page-banca30__intro-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
      color: #555;
    }

    /* Game Categories */
    .page-banca30__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-banca30__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-banca30__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-banca30__game-card-title {
      font-size: 1.3em;
      color: #0056b3;
      padding: 15px 10px;
      margin: 0;
      flex-grow: 1; /* Ensure title takes available space */
    }

    /* Promotions Section */
    .page-banca30__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-banca30__promo-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: left;
      border-left: 5px solid #ffc107;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-banca30__promo-item h3 {
      color: #007bff;
      margin-top: 0;
      font-size: 1.4em;
    }

    .page-banca30__promo-item p {
      color: #666;
      font-size: 1em;
    }

    /* Why Choose Section (USP) */
    .page-banca30__usp-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-banca30__usp-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-banca30__usp-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      margin-right: 15px;
      border-radius: 50%;
      background-color: #ffc107;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      color: #0056b3;
      font-weight: bold;
    }

    .page-banca30__usp-content h3 {
      color: #007bff;
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-banca30__usp-content p {
      color: #666;
      font-size: 0.95em;
    }

    /* How To Section */
    .page-banca30__how-to-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-banca30__step-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-banca30__step-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #007bff;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-banca30__step-card h3 {
      color: #0056b3;
      margin-top: 0;
      font-size: 1.3em;
      text-align: center;
    }

    .page-banca30__step-card p {
      color: #666;
      font-size: 0.95em;
      text-align: center;
    }

    /* FAQ Section */
    .page-banca30__faq-section {
      background-color: #e9ecef;
    }

    .page-banca30__faq-list {
      max-width: 800px;
      margin: 30px auto 0 auto;
      text-align: left;
    }

    .page-banca30__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-banca30__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f8f9fa;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-banca30__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-banca30__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-banca30__faq-item.active .page-banca30__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

    .page-banca30__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      font-size: 0.95em;
      text-align: left;
    }

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

    /* Call to Action Section */
    .page-banca30__cta-section {
      background-color: #007bff;
      color: #fff;
      padding: 50px 0;
    }

    .page-banca30__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
    }

    .page-banca30__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-banca30__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #0056b3;
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-banca30__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-banca30__section-title {
        font-size: 2em;
      }

      .page-banca30__hero-section {
        height: 300px;
        padding-top: 60px; /* Adjust for mobile fixed header */
      }

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

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

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

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

      .page-banca30__intro-content {
        font-size: 1em;
      }

      .page-banca30__game-grid,
      .page-banca30__promo-grid,
      .page-banca30__usp-list,
      .page-banca30__how-to-steps {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      
      .page-banca30__game-card,
      .page-banca30__promo-item,
      .page-banca30__usp-item,
      .page-banca30__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-banca30__faq-list {
        padding: 0 10px;
      }

      .page-banca30__faq-question {
        padding: 12px 15px;
      }

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

      .page-banca30__faq-toggle {
        font-size: 1.3em;
      }

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

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

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

      .page-banca30__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  