
    :root {
      --page-ban-ca-29-primary-color: #ffd700; /* Gold */
      --page-ban-ca-29-secondary-color: #e74c3c; /* Red */
      --page-ban-ca-29-dark-bg: #0f0f1a; /* Dark blue-grey */
      --page-ban-ca-29-light-text: #ffffff;
      --page-ban-ca-29-medium-text: #cccccc;
      --page-ban-ca-29-border-color: #333;
    }

    .page-ban-ca-29 {
      font-family: 'Arial', sans-serif;
      color: var(--page-ban-ca-29-light-text);
      background-color: var(--page-ban-ca-29-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-ban-ca-29__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-ban-ca-29__hero-section {
      position: relative;
      text-align: center;
      padding: 60px 20px 40px;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:fishing,game,ocean,win29,ban_ca_29]') no-repeat center center/cover;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 10px; /* Small top padding, assuming body has offset */
    }

    .page-ban-ca-29__hero-title {
      font-size: 2.8em;
      color: var(--page-ban-ca-29-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ban-ca-29__hero-description {
      font-size: 1.2em;
      color: var(--page-ban-ca-29-light-text);
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-ban-ca-29__button {
      background-color: var(--page-ban-ca-29-secondary-color);
      color: var(--page-ban-ca-29-light-text);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-ban-ca-29__button:hover {
      background-color: #c0392b; /* Darker red */
    }

    .page-ban-ca-29__heading {
      text-align: center;
      font-size: 2.2em;
      color: var(--page-ban-ca-29-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ban-ca-29__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-ban-ca-29-primary-color);
    }

    .page-ban-ca-29__text-content {
      font-size: 1.1em;
      color: var(--page-ban-ca-29-medium-text);
      margin-bottom: 20px;
    }

    .page-ban-ca-29__image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ban-ca-29__image-wrapper {
      flex: 1 1 calc(33% - 20px);
      min-width: 280px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      overflow: hidden;
      background-color: #1e1e30;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-ban-ca-29__image-wrapper:hover {
      transform: translateY(-5px);
    }

    .page-ban-ca-29__image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-ban-ca-29__image-caption {
      padding: 15px;
      font-size: 1em;
      color: var(--page-ban-ca-29-primary-color);
    }

    .page-ban-ca-29__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-ban-ca-29__feature-item {
      background-color: #1e1e30;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box;
      transition: background-color 0.3s ease;
      border: 1px solid var(--page-ban-ca-29-border-color);
    }

    .page-ban-ca-29__feature-item:hover {
      background-color: #2a2a40;
    }

    .page-ban-ca-29__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-ban-ca-29__feature-title {
      font-size: 1.4em;
      color: var(--page-ban-ca-29-primary-color);
      margin-bottom: 10px;
    }

    .page-ban-ca-29__feature-description {
      color: var(--page-ban-ca-29-medium-text);
      font-size: 0.95em;
    }

    .page-ban-ca-29__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #1a1a2e;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-ban-ca-29__cta-title {
      font-size: 2em;
      color: var(--page-ban-ca-29-primary-color);
      margin-bottom: 20px;
    }

    .page-ban-ca-29__cta-text {
      font-size: 1.1em;
      color: var(--page-ban-ca-29-light-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ban-ca-29__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(15, 15, 26, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-ban-ca-29__floating-button {
      flex: 1;
      margin: 0 5px;
      background-color: var(--page-ban-ca-29-primary-color);
      color: var(--page-ban-ca-29-dark-bg);
      padding: 12px 10px;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 48%; /* Ensure two buttons fit well */
    }

    .page-ban-ca-29__floating-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-2px);
    }

    .page-ban-ca-29__faq-section {
      background-color: #1a1a2e;
      border-radius: 10px;
      margin-top: 40px;
      padding: 30px 20px;
    }

    .page-ban-ca-29__faq-item {
      border-bottom: 1px solid var(--page-ban-ca-29-border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-ban-ca-29__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-ban-ca-29__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      user-select: none;
      font-size: 1.1em;
      color: var(--page-ban-ca-29-light-text);
      transition: color 0.3s ease;
    }

    .page-ban-ca-29__faq-question:hover {
      color: var(--page-ban-ca-29-primary-color);
    }

    .page-ban-ca-29__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-ban-ca-29__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-ban-ca-29-primary-color);
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

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

    .page-ban-ca-29__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-ban-ca-29-medium-text);
      font-size: 0.95em;
    }

    .page-ban-ca-29__faq-item.active .page-ban-ca-29__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ban-ca-29__hero-title {
        font-size: 2.2em;
      }

      .page-ban-ca-29__hero-description {
        font-size: 1em;
      }

      .page-ban-ca-29__heading {
        font-size: 1.8em;
      }

      .page-ban-ca-29__section {
        padding: 30px 15px;
      }

      .page-ban-ca-29__image-gallery {
        flex-direction: column;
        align-items: center;
      }

      .page-ban-ca-29__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px;
        box-sizing: border-box !important;
      }

      .page-ban-ca-29__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-ban-ca-29__features-list {
        grid-template-columns: 1fr;
      }

      .page-ban-ca-29__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-ban-ca-29__features-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-ban-ca-29__floating-buttons {
        padding: 8px 0;
      }

      .page-ban-ca-29__floating-button {
        padding: 10px 8px;
        font-size: 0.9em;
      }

      .page-ban-ca-29__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }

      .page-ban-ca-29__faq-question h3 {
        font-size: 1em;
      }

      .page-ban-ca-29__faq-answer {
        padding: 15px 10px;
        font-size: 0.9em;
      }
      .page-ban-ca-29__faq-item.active .page-ban-ca-29__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-ban-ca-29__hero-title {
        font-size: 1.8em;
      }
      .page-ban-ca-29__hero-description {
        font-size: 0.9em;
      }
      .page-ban-ca-29__heading {
        font-size: 1.6em;
      }
      .page-ban-ca-29__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  