
    :root {
      --page-banca07__primary-color: #e44d26; /* Màu cam đỏ */
      --page-banca07__secondary-color: #f7931e; /* Màu cam */
      --page-banca07__text-color: #333;
      --page-banca07__light-text-color: #fff;
      --page-banca07__background-color: #f4f4f4;
      --page-banca07__dark-background-color: #222;
      --page-banca07__border-radius: 8px;
      --page-banca07__padding-section: 40px 20px;
      --page-banca07__max-width: 1200px;
    }

    .page-banca07 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-banca07__text-color);
      background-color: var(--page-banca07__background-color);
    }

    .page-banca07__container {
      max-width: var(--page-banca07__max-width);
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-banca07__section {
      padding: var(--page-banca07__padding-section);
      text-align: center;
    }

    .page-banca07__section--dark {
      background-color: var(--page-banca07__dark-background-color);
      color: var(--page-banca07__light-text-color);
    }

    .page-banca07__h1,
    .page-banca07__h2,
    .page-banca07__h3 {
      color: var(--page-banca07__primary-color);
      margin-bottom: 20px;
    }

    .page-banca07__h1 {
      font-size: 2.5em;
      color: var(--page-banca07__light-text-color);
    }

    .page-banca07__h2 {
      font-size: 2em;
      color: var(--page-banca07__text-color);
    }

    .page-banca07__h2--light {
      color: var(--page-banca07__light-text-color);
    }

    .page-banca07__h3 {
      font-size: 1.5em;
      color: var(--page-banca07__text-color);
    }

    .page-banca07__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-banca07__button {
      display: inline-block;
      background-color: var(--page-banca07__primary-color);
      color: var(--page-banca07__light-text-color);
      padding: 12px 25px;
      border-radius: var(--page-banca07__border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-banca07__button:hover {
      background-color: var(--page-banca07__secondary-color);
    }

    /* Hero Section */
    .page-banca07__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--page-banca07__light-text-color);
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Adjusted for fixed header */
      box-sizing: border-box;
    }

    .page-banca07__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-banca07__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: var(--page-banca07__border-radius);
      max-width: 90%;
    }

    /* Floating Login Button */
    .page-banca07__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: center;
      pointer-events: none; /* Allow clicks to pass through if not on button */
    }

    .page-banca07__floating-button {
      pointer-events: auto; /* Re-enable clicks for the button */
      background-color: #4CAF50; /* Màu xanh lá cây */
      color: var(--page-banca07__light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: page-banca07__pulse 2s infinite;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 90%; /* Limit width for mobile */
      text-decoration: none; /* Ensure it looks like a button */
    }

    .page-banca07__floating-button:hover {
      background-color: #45a049;
      animation: none;
    }

    @keyframes page-banca07__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

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

    .page-banca07__game-card {
      background-color: var(--page-banca07__light-text-color);
      border-radius: var(--page-banca07__border-radius);
      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;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
    }

    .page-banca07__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-banca07__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-banca07__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-banca07__game-card:hover .page-banca07__game-card-image {
      transform: scale(1.05);
    }

    .page-banca07__game-card-title {
      font-size: 1.3em;
      color: var(--page-banca07__primary-color);
      margin: 15px 10px 10px;
    }

    .page-banca07__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    /* Features/Why Choose Section */
    .page-banca07__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-banca07__feature-item {
      background-color: var(--page-banca07__light-text-color);
      border-radius: var(--page-banca07__border-radius);
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      box-sizing: border-box;
    }

    .page-banca07__feature-title {
      font-size: 1.4em;
      color: var(--page-banca07__primary-color);
      margin-bottom: 15px;
    }

    .page-banca07__feature-text {
      color: #555;
      font-size: 1em;
    }

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

    .page-banca07__faq-item {
      background-color: var(--page-banca07__light-text-color);
      border-radius: var(--page-banca07__border-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-banca07__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-banca07__text-color);
      border-bottom: 1px solid #eee;
    }

    .page-banca07__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-banca07__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-banca07__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-banca07__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-banca07__primary-color);
    }

    .page-banca07__faq-item.active .page-banca07__faq-toggle {
      transform: rotate(45deg);
    }

    .page-banca07__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-banca07__h1 {
        font-size: 1.8em;
      }

      .page-banca07__h2 {
        font-size: 1.6em;
      }

      .page-banca07__h3 {
        font-size: 1.3em;
      }

      .page-banca07__paragraph {
        font-size: 1em;
      }

      .page-banca07__section {
        padding: 30px 15px;
      }

      .page-banca07__hero-section {
        min-height: 300px;
        padding-top: 10px !important; /* Ensure spacing for mobile fixed header */
      }

      .page-banca07__hero-content {
        max-width: 95%;
      }

      .page-banca07__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 90%;
      }

      .page-banca07__game-grid,
      .page-banca07__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .page-banca07__game-card,
      .page-banca07__feature-item,
      .page-banca07__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      .page-banca07__game-card-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-banca07__faq-question {
        padding: 15px 20px;
      }

      .page-banca07__faq-question h3 {
        font-size: 1.1em;
      }

      .page-banca07__faq-answer {
        padding: 15px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  