
    :root {
      --page-12-game-b-i-primary-color: #FFD700; /* Gold */
      --page-12-game-b-i-secondary-color: #FFA500; /* Orange */
      --page-12-game-b-i-dark-bg: #1a1a1a;
      --page-12-game-b-i-medium-bg: #2a2a2a;
      --page-12-game-b-i-light-text: #f0f0f0;
      --page-12-game-b-i-border-color: #444;
      --page-12-game-b-i-padding-section: 40px 20px;
      --page-12-game-b-i-max-width: 1200px;
    }

    .page-12-game-b-i {
      font-family: 'Arial', sans-serif;
      color: var(--page-12-game-b-i-light-text);
      background-color: var(--page-12-game-b-i-dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-12-game-b-i__container {
      max-width: var(--page-12-game-b-i-max-width);
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-12-game-b-i__section {
      padding: var(--page-12-game-b-i-padding-section);
      text-align: center;
      border-bottom: 1px solid var(--page-12-game-b-i-border-color);
    }

    .page-12-game-b-i__section:last-of-type {
      border-bottom: none;
    }

    .page-12-game-b-i__heading-primary {
      font-size: 2.8em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-12-game-b-i__heading-secondary {
      font-size: 2.2em;
      color: var(--page-12-game-b-i-light-text);
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-12-game-b-i__heading-secondary::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 3px;
      background-color: var(--page-12-game-b-i-primary-color);
    }

    .page-12-game-b-i__heading-tertiary {
      font-size: 1.8em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 15px;
    }

    .page-12-game-b-i__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-12-game-b-i-light-text);
    }

    .page-12-game-b-i__button {
      display: inline-block;
      background-color: var(--page-12-game-b-i-primary-color);
      color: var(--page-12-game-b-i-dark-bg);
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-12-game-b-i__button:hover {
      background-color: var(--page-12-game-b-i-secondary-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-12-game-b-i__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:game_bai,casino,cards]') no-repeat center center/cover;
      padding: 80px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
    }

    .page-12-game-b-i__hero-content {
      max-width: 800px;
    }

    /* Features Grid */
    .page-12-game-b-i__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-12-game-b-i__feature-item {
      background-color: var(--page-12-game-b-i-medium-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .page-12-game-b-i__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-12-game-b-i__feature-icon {
      width: 150px; /* Min size 200x200, but content images are larger */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-12-game-b-i__feature-title {
      font-size: 1.4em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 10px;
    }

    .page-12-game-b-i__feature-description {
      font-size: 1em;
      color: var(--page-12-game-b-i-light-text);
    }

    /* Game List */
    .page-12-game-b-i__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-12-game-b-i__game-card {
      background-color: var(--page-12-game-b-i-medium-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-12-game-b-i__game-card:hover {
      transform: translateY(-5px);
    }

    .page-12-game-b-i__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-12-game-b-i__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-12-game-b-i__game-info {
      padding: 20px;
    }

    .page-12-game-b-i__game-title {
      font-size: 1.3em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 10px;
    }

    .page-12-game-b-i__game-description {
      font-size: 0.95em;
      color: var(--page-12-game-b-i-light-text);
    }

    /* Steps List */
    .page-12-game-b-i__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .page-12-game-b-i__step-item {
      background-color: var(--page-12-game-b-i-medium-bg);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box;
    }

    .page-12-game-b-i__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-12-game-b-i-primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--page-12-game-b-i-primary-color);
      border-radius: 50%;
    }

    .page-12-game-b-i__step-content {
      flex-grow: 1;
    }

    .page-12-game-b-i__step-title {
      font-size: 1.3em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 8px;
    }

    .page-12-game-b-i__step-description {
      font-size: 1em;
      color: var(--page-12-game-b-i-light-text);
    }

    /* FAQ Section */
    .page-12-game-b-i__faq-section {
      background-color: var(--page-12-game-b-i-dark-bg);
    }

    .page-12-game-b-i__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-12-game-b-i__faq-item {
      background-color: var(--page-12-game-b-i-medium-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--page-12-game-b-i-border-color);
    }

    .page-12-game-b-i__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      transition: background-color 0.3s ease;
    }

    .page-12-game-b-i__faq-question:hover {
      background-color: #444;
    }

    .page-12-game-b-i__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-12-game-b-i-light-text);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-12-game-b-i__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-12-game-b-i-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-12-game-b-i__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.3s ease;
      color: var(--page-12-game-b-i-light-text);
    }

    .page-12-game-b-i__faq-item.active .page-12-game-b-i__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-12-game-b-i__faq-item.active .page-12-game-b-i__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    /* Call to Action Section */
    .page-12-game-b-i__cta-section {
      background-color: var(--page-12-game-b-i-medium-bg);
      padding: 60px 20px;
      border-top: 1px solid var(--page-12-game-b-i-border-color);
    }

    .page-12-game-b-i__cta-heading {
      font-size: 2.5em;
      color: var(--page-12-game-b-i-primary-color);
      margin-bottom: 20px;
    }

    .page-12-game-b-i__cta-paragraph {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-12-game-b-i__heading-primary {
        font-size: 2em;
      }

      .page-12-game-b-i__heading-secondary {
        font-size: 1.8em;
      }

      .page-12-game-b-i__heading-tertiary {
        font-size: 1.5em;
      }

      .page-12-game-b-i__paragraph {
        font-size: 1em;
      }

      .page-12-game-b-i__button {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-12-game-b-i__hero-section {
        min-height: 400px;
        padding: 60px 15px;
      }

      .page-12-game-b-i__section {
        padding: 30px 15px;
      }

      .page-12-game-b-i__features-grid,
      .page-12-game-b-i__game-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-12-game-b-i__feature-item,
      .page-12-game-b-i__game-card,
      .page-12-game-b-i__step-item,
      .page-12-game-b-i__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-12-game-b-i__faq-answer {
        padding: 0 20px;
      }

      .page-12-game-b-i__faq-item.active .page-12-game-b-i__faq-answer {
        padding: 15px 20px !important;
      }

      .page-12-game-b-i__faq-question {
        padding: 15px 20px;
      }
      
      .page-12-game-b-i__game-image,
      .page-12-game-b-i__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-12-game-b-i__cta-heading {
        font-size: 2em;
      }

      .page-12-game-b-i__cta-paragraph {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-12-game-b-i__heading-primary {
        font-size: 1.8em;
      }

      .page-12-game-b-i__heading-secondary {
        font-size: 1.6em;
      }

      .page-12-game-b-i__cta-heading {
        font-size: 1.8em;
      }
    }
  