
    :root {
      --primary-color: #007bff; /* Blue */
      --secondary-color: #6c757d; /* Grey */
      --accent-color: #ffc107; /* Yellow */
      --background-dark: #1a1a2e; /* Dark Blue */
      --background-light: #f8f9fa; /* Light Grey */
      --text-light: #ffffff; /* White */
      --text-dark: #343a40; /* Dark Grey */
      --border-color: #44445c; /* Darker Blue Grey */
      --button-bg-register: #28a745; /* Green */
      --button-bg-login: #007bff; /* Blue */
    }

    /* Base styles for the page container */
    .page-b-n-c-h5 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body handles --header-offset */
    }

    /* Sections */
    .page-b-n-c-h5__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-b-n-c-h5__section--light {
      background-color: var(--background-dark);
      color: var(--text-light);
    }

    .page-b-n-c-h5__section--dark {
      background-color: #10101e;
      color: var(--text-light);
    }

    /* Headings */
    .page-b-n-c-h5__h1,
    .page-b-n-c-h5__h2,
    .page-b-n-c-h5__h3 {
      color: var(--accent-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-b-n-c-h5__h1 {
      font-size: 2.5em;
      text-transform: uppercase;
    }

    .page-b-n-c-h5__h2 {
      font-size: 2em;
      color: var(--primary-color);
    }

    .page-b-n-c-h5__h3 {
      font-size: 1.5em;
      color: var(--text-light);
    }

    /* Paragraphs */
    .page-b-n-c-h5__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #ccc;
    }

    /* Buttons */
    .page-b-n-c-h5__button {
      display: inline-block;
      padding: 12px 25px;
      margin: 10px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-b-n-c-h5__button--primary {
      background-color: var(--primary-color);
      color: var(--text-light);
    }

    .page-b-n-c-h5__button--primary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-b-n-c-h5__button--accent {
      background-color: var(--accent-color);
      color: var(--text-dark);
    }

    .page-b-n-c-h5__button--accent:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-b-n-c-h5__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:bancah5,gaming,mobile]') no-repeat center center/cover;
      padding: 100px 20px;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .page-b-n-c-h5__hero-title {
      font-size: 3.5em;
      color: var(--accent-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-b-n-c-h5__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-light);
      max-width: 800px;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    /* Game Display Section */
    .page-b-n-c-h5__game-display {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-b-n-c-h5__game-card {
      background-color: #2a2a3e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 320px;
      text-align: left;
      border: 1px solid var(--border-color);
    }

    .page-b-n-c-h5__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    }

    .page-b-n-c-h5__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    .page-b-n-c-h5__game-card-content {
      padding: 20px;
    }

    .page-b-n-c-h5__game-card-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-b-n-c-h5__game-card-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-b-n-c-h5__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-b-n-c-h5__feature-item {
      background-color: #2a2a3e;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      text-align: center;
    }

    .page-b-n-c-h5__feature-icon {
      width: 200px; /* Minimum size for images */
      height: 200px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    .page-b-n-c-h5__feature-title {
      font-size: 1.4em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-b-n-c-h5__feature-description {
      color: #bbb;
    }

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

    .page-b-n-c-h5__promo-card {
      background-color: #2a2a3e;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      text-align: left;
    }

    .page-b-n-c-h5__promo-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-b-n-c-h5__promo-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
    }

    .page-b-n-c-h5__promo-button {
      background-color: var(--accent-color);
      color: var(--text-dark);
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-b-n-c-h5__promo-button:hover {
      background-color: #e0a800;
    }

    /* Payment & Providers Section */
    .page-b-n-c-h5__logos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-b-n-c-h5__logo-item {
      background-color: #2a2a3e;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px; /* Ensure logos have enough space */
      height: 80px;
    }

    .page-b-n-c-h5__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: none; /* Ensure no color filters */
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    /* Floating Buttons */
    .page-b-n-c-h5__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-b-n-c-h5__floating-button {
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-b-n-c-h5__floating-button--register {
      background-color: var(--button-bg-register);
      color: var(--text-light);
    }

    .page-b-n-c-h5__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-b-n-c-h5__floating-button--login {
      background-color: var(--button-bg-login);
      color: var(--text-light);
    }

    .page-b-n-c-h5__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-b-n-c-h5__faq-section {
      text-align: left;
    }

    .page-b-n-c-h5__faq-item {
      background-color: #2a2a3e;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .page-b-n-c-h5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #343a40;
      color: var(--text-light);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-b-n-c-h5__faq-question:hover {
      background-color: #495057;
    }

    .page-b-n-c-h5__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.1em; /* Adjust to match parent */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-b-n-c-h5__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-b-n-c-h5__faq-item.active .page-b-n-c-h5__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-b-n-c-h5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #bbb;
      font-size: 1em;
      text-align: justify;
    }

    .page-b-n-c-h5__faq-item.active .page-b-n-c-h5__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important; /* Padding for expanded state */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-b-n-c-h5__hero-title {
        font-size: 2.5em;
      }

      .page-b-n-c-h5__hero-subtitle {
        font-size: 1.2em;
      }

      .page-b-n-c-h5__h1 {
        font-size: 2em;
      }

      .page-b-n-c-h5__h2 {
        font-size: 1.7em;
      }

      .page-b-n-c-h5__h3 {
        font-size: 1.3em;
      }

      .page-b-n-c-h5__section {
        padding: 30px 15px;
      }

      .page-b-n-c-h5__game-card,
      .page-b-n-c-h5__feature-item,
      .page-b-n-c-h5__promo-card {
        max-width: 100%;
        width: 100% !important; /* Important for list items */
        box-sizing: border-box !important; /* Important for list items */
        margin-left: 0 !important; /* Important for list items */
        margin-right: 0 !important; /* Important for list items */
        word-wrap: break-word !important; /* Important for text wrapping */
        overflow-wrap: break-word !important; /* Important for text wrapping */
      }

      .page-b-n-c-h5__features-grid,
      .page-b-n-c-h5__promotions-grid,
      .page-b-n-c-h5__logos-grid {
        gap: 15px;
        width: 100% !important; /* Important for list containers */
        max-width: 100% !important; /* Important for list containers */
        padding: 0 !important; /* Important for list containers */
        margin-left: 0 !important; /* Important for list containers */
        margin-right: 0 !important; /* Important for list containers */
      }
      
      .page-b-n-c-h5__game-card-image,
      .page-b-n-c-h5__feature-icon,
      .page-b-n-c-h5__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-b-n-c-h5__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 8px;
      }

      .page-b-n-c-h5__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
      
      .page-b-n-c-h5__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }
      .page-b-n-c-h5__faq-item.active .page-b-n-c-h5__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
    }
  