 .apesofai-demo-wrapper {
    width: 80%;
    margin: 0 auto;           /* Centers horizontally */
    max-width: 1200px;        /* Prevents it from getting too wide on 4K */
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .apesofai-demo-wrapper {
      width: 100%;
      margin: 0;
      padding: 0 12px;      /* Tiny side padding so it doesn't touch edges */
      box-sizing: border-box;
    }
    .apesofai-demo-wrapper iframe {
      height: 700px;        /* Shorter on mobile for better scrolling */
    }
  }