.elementor-2125 .elementor-element.elementor-element-f19d663{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2125 .elementor-element.elementor-element-7a95c81{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2e1bd6a */.prompt-generator-section {
    padding: 30px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  }
  
  .prompt-generator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e45e2 0%, #88d3ce 100%);
    border-radius: 12px 12px 0 0;
  }
  
  .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
  }
  
  .marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  
  .marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  }
  
  .marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    padding-right: 100%;
  }
  
  .marquee:hover {
    animation-play-state: paused;
  }
  
  .marquee-content {
    display: inline-block;
  }
  
  .marquee img {
    height: 200px;
    width: auto;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
  }
  
  .marquee img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @media (max-width: 768px) {
    .marquee img {
      height: 150px;
      margin: 0 10px;
    }
  }
  
  @media (max-width: 480px) {
    .marquee img {
      height: 120px;
    }
  }/* End custom CSS */